summaryrefslogtreecommitdiff
path: root/src/mesa/es
AgeCommit message (Collapse)Author
2009-09-23Merge branch 'mesa-es' into androidChia-I Wu
2009-09-23es: Add support for GL_ARB_texture_non_power_of_two.Chia-I Wu
2009-09-18es: Turn of FEATURE_es2_glsl.Chia-I Wu
2009-09-15Update Android.mk for recent merge.Chia-I Wu
2009-09-15es: Pre-generate ES1 source files.Chia-I Wu
2009-09-14es: Add support for GL_OES_EGL_image.Chia-I Wu
2009-09-14es/glapi: Add support for GL_OES_EGL_image.Chia-I Wu
2009-09-14es: Check OES_draw_texture is enabled.Chia-I Wu
2009-09-14es: Build libesX.a.Chia-I Wu
2009-09-14es/main: Report GL_OES_draw_texture only when enabled.Chia-I Wu
2009-09-14es/st: Move state tracker code to mesa/st.Chia-I Wu
State tracker is one of the mesa drivers. It should not belong to the es overlay.
2009-09-14es: Proper support for FEATURE_OES_draw_texture.Chia-I Wu
Update default extensions and add DrawTex driver function.
2009-09-13es/main: Better glGetString support.Chia-I Wu
2009-09-13es/glapi: Remove unnecessary extensions from es_COMPAT.Chia-I Wu
After disabling FEATURE_beginend, many of the extensions defined for compatibility are not needed anymore.
2009-09-12mesa/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.
2009-09-12mesa/es: Add OpenGL ES XMLs.Chia-I Wu