summaryrefslogtreecommitdiffstats
path: root/src/mesa/es/main/specials_es1.c
Commit message (Collapse)AuthorAgeFilesLines
* mesa: Compute extension string according to APIKristian Høgsberg2010-04-221-168/+0
| | | | We can now stop special casing glGetString() and drop specials_es*.c.
* mesa: Compute GL version according to APIKristian Høgsberg2010-04-221-29/+0
|
* mesa: Move API specific context intialization into context.cKristian Høgsberg2010-04-221-21/+0
|
* mesa: Add OES_EGL_image to extension list.Chia-I Wu2010-04-061-0/+5
|
* Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg2010-02-191-1/+1
|
* mesa/es: Fix GL_OES_texture_cube_map support.Chia-I Wu2010-01-041-1/+15
| | | | | | | | Unlike in OpenGL, GL_OES_texture_cube_map says that all coordinates are changed the same time by the token GL_TEXTURE_GEN_STR_OES, and the initial mode is GL_REFLECTION_MAP_OES. Signed-off-by: Chia-I Wu <[email protected]>
* mesa/es: Clean up extension string.Chia-I Wu2010-01-041-0/+8
| | | | | | | Add some new extensions and remove those that do not belong to OpenGL ES 2.0. Signed-off-by: Chia-I Wu <[email protected]>
* mesa/es: Add support for GL_OES_draw_texture.Chia-I Wu2009-11-051-0/+5
| | | | Signed-off-by: Chia-I Wu <[email protected]>
* mesa/es: Add OpenGL ES overlay.Chia-I Wu2009-11-051-0/+186
This is primitive support for OpenGL ES. It uses a subset of mesa sources to build libesXgallium.a and libesXapi.a, where X is 1 for OpenGL ES 1.x, 2 for OpenGL ES 2.x. The static libraries serve the same purpose as libmesagallium.a and libglapi.a do for OpenGL. This is based on the work of opengl-es branch. Signed-off-by: Chia-I Wu <[email protected]>