Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added few OpenGL ES 1.0 defines, which are not present in OpenGL ES 1…
Browse files Browse the repository at this point in the history
….1 and 2.0.
  • Loading branch information
llmike committed May 6, 2009
1 parent a853fbe commit 20f44fe
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions include/SDL_opengles.h
Expand Up @@ -344,6 +344,14 @@ extern "C"
#define GL_SAMPLE_COVERAGE_VALUE 0x80AA
#define GL_SAMPLE_COVERAGE_INVERT 0x80AB

/* OpenGL ES 1.0 defines, they gone in 1.1 and 2.0 */
#ifndef GL_MAX_ELEMENTS_VERTICES
#define GL_MAX_ELEMENTS_VERTICES 0x80E8
#endif /* GL_MAX_ELEMENTS_VERTICES */
#ifndef GL_MAX_ELEMENTS_INDICES
#define GL_MAX_ELEMENTS_INDICES 0x80E9
#endif /* GL_MAX_ELEMENTS_INDICES */

/* GetTextureParameter */
/* GL_TEXTURE_MAG_FILTER */
/* GL_TEXTURE_MIN_FILTER */
Expand Down

0 comments on commit 20f44fe

Please sign in to comment.