]> Dogcows Code - chaz/yoink/blobdiff - src/moof/opengl.hh
remove some unused stlplus modules
[chaz/yoink] / src / moof / opengl.hh
index 3367bc8616ddcf569dfa78261bec5f90b9432462..6eeb5532f60427a07ada8bc167852c77c378be95 100644 (file)
@@ -1,24 +1,24 @@
 
-/*]  Copyright (c) 2009-2010, Charles McGarvey  [**************************
+/*]  Copyright (c) 2009-2011, Charles McGarvey  [*****************************
 **]  All rights reserved.
 *
-* vi:ts=4 sw=4 tw=75
-*
 * Distributable under the terms and conditions of the 2-clause BSD license;
 * see the file COPYING for a complete text of the license.
 *
-**************************************************************************/
+*****************************************************************************/
 
 #ifndef _MOOF_OPENGL_HH_
 #define _MOOF_OPENGL_HH_
 
 /**
  * \file opengl.hh
- * Defines macros for OpenGL functions that operate on scalars, vectors,
- * and matrices.
+ * Defines macros for OpenGL functions that operate on scalars, vectors, and
+ * matrices.
  */
 
+#if HAVE_CONFIG_H
 #include "config.h"
+#endif
 
 #include <vector>
 
 #define ARGS_V4                const moof::vector4& v
 #define PASS_V4                v[0], v[1], v[2], v[3]
 
-
 #if ENABLE_DOUBLE_PRECISION
 
-#define OPENGL_GENERIC_FUNC(R, N, L)                                                                   \
+#define OPENGL_GENERIC_FUNC(R, N, L)                                   \
        inline R gl##N(ARGS_##L) { gl##N##d(PASS_##L); }//
 
-#define OPENGL_ORDINAL_FUNC(R, N, K)                                                                   \
-       inline R gl##N(ARGS_##S##K) { gl##N##K##d(PASS_##S##K); }                       \
+#define OPENGL_ORDINAL_FUNC(R, N, K)                                   \
+       inline R gl##N(ARGS_##S##K) { gl##N##K##d(PASS_##S##K); }       \
        inline R gl##N(ARGS_##P##K) { gl##N##K##d##v(PASS_##P##K); }//
 
 #else
 
-#define OPENGL_GENERIC_FUNC(R, N, L)                                                                   \
+#define OPENGL_GENERIC_FUNC(R, N, L)                                   \
        inline R gl##N(ARGS_##L) { gl##N##f(PASS_##L); }//
 
-#define OPENGL_ORDINAL_FUNC(R, N, K)                                                                   \
-       inline R gl##N(ARGS_##S##K) { gl##N##K##f(PASS_##S##K); }                       \
+#define OPENGL_ORDINAL_FUNC(R, N, K)                                   \
+       inline R gl##N(ARGS_##S##K) { gl##N##K##f(PASS_##S##K); }       \
        inline R gl##N(ARGS_##P##K) { gl##N##K##f##v(PASS_##P##K); }//
 
 #endif
 
+OPENGL_GENERIC_FUNC(void, LoadMatrix, P);
+OPENGL_GENERIC_FUNC(void, LoadMatrix, M);
+OPENGL_GENERIC_FUNC(void, MultMatrix, P);
+OPENGL_GENERIC_FUNC(void, MultMatrix, M);
+OPENGL_GENERIC_FUNC(void, Scale,       S3);
+OPENGL_GENERIC_FUNC(void, Scale,       V3);
+OPENGL_GENERIC_FUNC(void, Rotate,      S4);
+OPENGL_GENERIC_FUNC(void, Rotate,      V4);
+OPENGL_GENERIC_FUNC(void, Translate,   S3);
+OPENGL_GENERIC_FUNC(void, Translate,   V3);
 
-OPENGL_GENERIC_FUNC(void,      LoadMatrix,     P);
-OPENGL_GENERIC_FUNC(void,      LoadMatrix,     M);
-OPENGL_GENERIC_FUNC(void,      MultMatrix, P);
-OPENGL_GENERIC_FUNC(void,      MultMatrix, M);
-
-OPENGL_GENERIC_FUNC(void,      Scale,          S3);
-OPENGL_GENERIC_FUNC(void,      Scale,          V3);
-OPENGL_GENERIC_FUNC(void,      Rotate,         S4);
-OPENGL_GENERIC_FUNC(void,      Rotate,         V4);
-OPENGL_GENERIC_FUNC(void,      Translate,      S3);
-OPENGL_GENERIC_FUNC(void,      Translate,      V3);
-
-OPENGL_ORDINAL_FUNC(void,      Color,          3);
-OPENGL_ORDINAL_FUNC(void,      Color,          4);
+OPENGL_ORDINAL_FUNC(void, Color, 3);
+OPENGL_ORDINAL_FUNC(void, Color, 4);
 
-OPENGL_ORDINAL_FUNC(void,      Vertex,         2);
-OPENGL_ORDINAL_FUNC(void,      Vertex,         3);
-OPENGL_ORDINAL_FUNC(void,      Vertex,         4);
+OPENGL_ORDINAL_FUNC(void, Vertex, 2);
+OPENGL_ORDINAL_FUNC(void, Vertex, 3);
+OPENGL_ORDINAL_FUNC(void, Vertex, 4);
 
-OPENGL_ORDINAL_FUNC(void,      TexCoord,       2);
-OPENGL_ORDINAL_FUNC(void,      TexCoord,       3);
-OPENGL_ORDINAL_FUNC(void,      TexCoord,       4);
-
-OPENGL_GENERIC_FUNC(void,      Rect,           S4);
-OPENGL_GENERIC_FUNC(void,      Rect,           V4);
+OPENGL_ORDINAL_FUNC(void, TexCoord, 2);
+OPENGL_ORDINAL_FUNC(void, TexCoord, 3);
+OPENGL_ORDINAL_FUNC(void, TexCoord, 4);
 
+OPENGL_GENERIC_FUNC(void, Rect, S4);
+OPENGL_GENERIC_FUNC(void, Rect, V4);
 
 inline void glMaterial(GLenum face, GLenum pname, moof::scalar s)
 {
@@ -136,12 +133,14 @@ inline void glDrawElements(GLenum type, const std::vector<GLuint>& v)
        glDrawElements(type, v.size(), GL_UNSIGNED_INT, &v[0]);
 }
 
-
+inline void glGetScalar(GLenum a, GLscalar* b)
+{
 #if ENABLE_DOUBLE_PRECISION
-inline void glGetScalar(GLenum a, GLscalar* b) { glGetDoublev(a, b); }
+       glGetDoublev(a, b);
 #else
-inline void glGetScalar(GLenum a, GLscalar* b) { glGetFloatv(a, b); }
+       glGetFloatv(a, b);
 #endif
+}
 
 
 #endif // _MOOF_OPENGL_HH_
This page took 0.020472 seconds and 4 git commands to generate.