summaryrefslogtreecommitdiff
path: root/src/mesa/es/sources.mak
AgeCommit message (Collapse)Author
2010-05-12mesa/es: Remove sources.mak.Chia-I Wu
All ES overlay sources have been merged into core Mesa. Not much is left in sources.mak so merge it into Makefile.
2010-05-12mesa/es: Update sources.mak and fix the build.Chia-I Wu
Remove sources that are feature-aware from the omit list. x86 -O0 build is ~12KiB smaller afther making those sources feature-aware. Also, remove get.c from the omit list as get_es[12].c have been merged to it.
2010-05-07glapi: Move to src/mapi/.Chia-I Wu
Move glapi to src/mapi/{glapi,es1api,es2api}.
2010-04-28st/mesa: Move st_cb_drawtex.c to the mesa state trackerKristian Høgsberg
2010-04-28es: Drop es specific enums.cKristian Høgsberg
2010-04-28mesa: Move drawtex functionality to main/Kristian Høgsberg
2010-04-28mesa: Move glQueryMatrixxOES() implementation to core mesaKristian Høgsberg
2010-04-28mesa: Move GLES1 texgen functions to texgen.cKristian Høgsberg
2010-04-28mesa: Move support for paletted textures to main/teximage.cKristian Høgsberg
2010-04-28mesa: Handle GL_TEXTURE_GEN_STR_OES in _mesa_Enable()Kristian Høgsberg
2010-04-27mesa: Move get_es*.c to main/Kristian Høgsberg
2010-04-27mesa: Move GL_RGB565 workaround into fbobject.cKristian Høgsberg
2010-04-27mesa: Move GLES1/2 vbo entrypoints to vbo_exec_api.cKristian Høgsberg
This let's us drop stubs.c.
2010-04-27mesa: Move api_exec_es*.c into mesa/mainKristian Høgsberg
This requires renaming a few functions to have unique names so that they can all live within the same driver.
2010-04-22mesa: Compute extension string according to APIKristian Høgsberg
We can now stop special casing glGetString() and drop specials_es*.c.
2010-01-12mesa/es: Update sources.mk.Chia-I Wu
Add/remove files that are unused/used to the omit list. Finally, they should all be features that can be omitted. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-04mesa/es: Fix GL_OES_texture_cube_map support.Chia-I Wu
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 <olvaffe@gmail.com>
2009-11-06mesa/es: Fix symbol conflicts and warnings.Chia-I Wu
drawtex.c was listed in LOCAL_ES1_SOURCES twice. My mistake when merging the patches. Also, run gl_apitemp.py with -c to silence warnings and add target "install". Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-11-05mesa/es: Add support for GL_OES_draw_texture.Chia-I Wu
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-11-05mesa/es: Add OpenGL ES overlay.Chia-I Wu
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 <olvaffe@gmail.com>