summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChad Versace <chad.versace@intel.com>2011-02-23 20:35:10 -0800
committerChad Versace <chad.versace@intel.com>2011-02-25 20:42:14 -0800
commit79af207599f6dba87dc3b3e8b4daeb3cc53c5f37 (patch)
treef6dfaa22cf7fef5851c97bb06d8043e572cb39ee /src
parent5a78cfbda788c13e1885240ddf9ac1fd968707dd (diff)
piglit: Add header <piglit/glut_wrap.h>
A convenience header that includes the actual GLUT headers, which are chosen according to the macro definitions USE_GLUT and USE_EGLUT. Note: This belongs to a series that adds GLES2 support to Piglit. Signed-off-by: Chad Versace <chad.versace@intel.com>
Diffstat (limited to 'src')
-rw-r--r--src/piglit/glut_wrap.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/piglit/glut_wrap.h b/src/piglit/glut_wrap.h
new file mode 100644
index 000000000..475e927e1
--- /dev/null
+++ b/src/piglit/glut_wrap.h
@@ -0,0 +1,58 @@
+/*
+ * Copyright (c) 2010 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ * Authors:
+ * Chad Versace <chad.versace@intel.com>
+ */
+
+/**
+ * \file glut_wrap.h
+ * \brief Convenience header that includes the actual GLUT headers.
+ *
+ * The actual GLUT headers are chosen according to the macro definitions
+ * USE_GLUT and USE_EGLUT.
+ */
+
+#pragma once
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#ifdef USE_GLUT
+# ifdef __APPLE__
+# include <GLUT/glut.h>
+# else
+# include <GL/glut.h>
+# ifdef FREEGLUT
+# include <GL/freeglut_ext.h>
+# endif
+# endif
+#endif
+
+#ifdef USE_EGLUT
+# include "glut_egl/glut_egl.h"
+#endif
+
+#ifdef __cplusplus
+} /* end extern "C" */
+#endif