summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-03-14s/WIN32/_WIN32/José Fonseca2-2/+2
The proper macro for Windows operating systems is _WIN32 and not WIN32. Thanks to Vinson Lee to remind me of that.
2011-03-13Portability build fixes for MinGW.José Fonseca2-0/+8
2011-02-26piglit: Add correct location of Mac OS X OpenGL header files.Vinson Lee1-3/+9
The OpenGL header files on Mac OS X are in the OpenGL framework.
2011-02-26cmake: Do not add target glut_egl if OPENGL_egl_LIBRARY is not foundChad Versace1-1/+3
Signed-off-by: Chad Versace <chad.versace@intel.com>
2011-02-25glut_egl: Impose uniformity on include guardsChad Versace2-8/+2
Inconsistent spelling, and a typo too, existed among include guards. Just clobber them all and replace '#pragma once'. Signed-off-by: Chad Versace <chad.versace@intel.com>
2011-02-25glut_egl: Replace relative #includes with absolute #includesChad Versace4-7/+7
For example, replace #include "glut_egl.h" with #include <glut_egl/glut_egl.h> Signed-off-by: Chad Versace <chad.versace@intel.com>
2011-02-25glut_egl: Impose uniform naming scheme on functionsChad Versace4-141/+141
Some functions used the prefix 'glut', other 'glut_egl'. This changes all functions to use prefix 'glut'. Signed-off-by: Chad Versace <chad.versace@intel.com>
2011-02-25glut_egl: Build library glut_eglChad Versace3-16/+10
2011-02-25glut_egl: Move from tests/util/glut_egl to src/glut_eglChad Versace5-0/+879
The util directory is getting crowded, and glut_egl is not dependent on Piglit in any way. It should belong in its own directory. Signed-off-by: Chad Versace <chad.versace@intel.com>
2011-02-25piglit: Add header <piglit/glut_wrap.h>Chad Versace1-0/+58
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>
2011-02-25piglit: Add header <piglit/gl_wrap.h>Chad Versace1-0/+56
A convenience header that includes the actual OpenGL headers, which are chosen according to the macro definitions USE_OPENGL and USE_OPENGL_ES2. Note: This belongs to a series that adds GLES2 support to Piglit. Signed-off-by: Chad Versace <chad.versace@intel.com>