Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-09-15 | Merge commit 'eee/mesa-es' into android | Chia-I Wu | |
2009-09-15 | egl_xdri: Check that FlushCurrentContext is available. | Chia-I Wu | |
2009-09-14 | intel: Add support for GL_OES_EGL_image. | Chia-I Wu | |
This is primitive and some pathes are not tested. | |||
2009-09-14 | es: Add support for GL_OES_EGL_image. | Chia-I Wu | |
2009-09-14 | es/glapi: Add support for GL_OES_EGL_image. | Chia-I Wu | |
2009-09-14 | glapi: Generate typedef for GLeglImageOES. | Chia-I Wu | |
2009-09-14 | es: Check OES_draw_texture is enabled. | Chia-I Wu | |
2009-09-14 | egl_xdri: Flush commands on context switch and buffer swap. | Chia-I Wu | |
The corresponding DRI functions does not flush for us. | |||
2009-09-14 | egl_xdri: Implement eglCreateImageKHR. | Chia-I Wu | |
2009-09-14 | egl: Add support for EGL_KHR_image_base. | Chia-I Wu | |
Individual drivers still need to implement the API hooks. | |||
2009-09-14 | i915: Build i915_dri with libes1.a. | Chia-I Wu | |
2009-09-14 | es: Build libesX.a. | Chia-I Wu | |
2009-09-14 | i915: Respect mfeatures.h. | Chia-I Wu | |
2009-09-14 | dri/common: Protect driDispatchRemapTable with IN_DRIVER_DRIVER. | Chia-I Wu | |
2009-09-14 | mesa/swrast: Define _swrast_UpdateTexturePalette to NULL. | Chia-I Wu | |
This allows swrast to be passed to _MESA_INIT_COLORTABLE_FUNCTIONS. | |||
2009-09-14 | glapi: Respect IN_DRI_DRIVER in extension_helper.h. | Chia-I Wu | |
This allows extension_helper.h to be used with IN_DRI_DRIVER undefined. In such case, generate macros for source level compatibility. | |||
2009-09-14 | es/main: Report GL_OES_draw_texture only when enabled. | Chia-I Wu | |
2009-09-14 | es/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-14 | es: Proper support for FEATURE_OES_draw_texture. | Chia-I Wu | |
Update default extensions and add DrawTex driver function. | |||
2009-09-13 | mesa/swrast: Respect mfeatures.h. | Chia-I Wu | |
FEATURE_accum, FEATURE_convolve, FEATURE_colortable, and FEATURE_drawpix cover part of the functionalities of swrast module. Disable them when the features are disabled. | |||
2009-09-13 | mesa/tnl: Respect mfeatures.h. | Chia-I Wu | |
_tnl_RasterPos should be disabled with FEATURE_rastpos. | |||
2009-09-13 | es/main: Better glGetString support. | Chia-I Wu | |
2009-09-13 | es/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-13 | mesa: New feature FEATURE_beginend. | Chia-I Wu | |
This feature corresponds to the Begin/End paradigm. Disabling this feature also eliminates the use of GLvertexformat completely. | |||
2009-09-12 | st/es: Add OpenGL ES state trackers. | Chia-I Wu | |
2009-09-12 | mesa/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-12 | mesa/es: Add OpenGL ES XMLs. | Chia-I Wu | |
2009-09-12 | glapi: Add OpenGL ES compatibility mode to scripts. | Chia-I Wu | |
When the mode is on, the scripts would generate headers that are suitable for OpenGL ES overlay, that will be later introduced. | |||
2009-09-12 | glapi: Prefix includes with glapi. | Chia-I Wu | |
This allows different sets of generated headers to be used. | |||
2009-09-12 | mesa/main: Add point size array. | Chia-I Wu | |
2009-09-12 | mesa: silence warning | Brian Paul | |
2009-09-12 | st: added preprocessor test for FEATURE_texture_s3tc | Brian Paul | |
2009-09-12 | mesa: fix set_tex_parameteri() call | Brian Paul | |
2009-09-12 | mesa/main: Provide dummy texformats when FEATURE_texture_s3tc is disabled. | Chia-I Wu | |
Instead of removing the related enums and texture formats, provide dummy ones when the feature is disabled. | |||
2009-09-12 | mesa/main: Provide dummy texformats when FEATURE_texture_fxt1 is disabled. | Chia-I Wu | |
Instead of removing the related enums and texture formats, provide dummy ones when the feature is disabled. | |||
2009-09-12 | mesa/main: Export null texformat operations. | Chia-I Wu | |
2009-09-12 | mesa/main: Make FEATURE_dlist follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of dlist.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_evaluators follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of eval.h to work without knowing if the feature is available. It is renamed to FEATURE_eval along the way. | |||
2009-09-12 | mesa/main: New feature FEATURE_queryobj. | Chia-I Wu | |
It merges FEATURE_ARB_occlusion_query and FEATURE_EXT_timer_query, and follows the feature conventions. | |||
2009-09-12 | mesa/main: New feature FEATURE_arrayelt. | Chia-I Wu | |
This allows the removal of AEcontext. | |||
2009-09-12 | mesa/main: Make FEATURE_texgen follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of texgen.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_feedback follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of feedback.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_drawpix follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of drawpix.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: New feature FEATURE_rastpos. | Chia-I Wu | |
It is separated from FEATURE_drawpix and made to follow the feature convensions. | |||
2009-09-12 | mesa/main: Make FEATURE_histogram follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of histogram.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_attrib_stack follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of attrib.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_accum follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of accum.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_convolve follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of convolve.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_colortable follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of colortab.h to work without knowing if the feature is available. | |||
2009-09-12 | mesa/main: Make FEATURE_pixel_transfer follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of pixel.h to work without knowing if the feature is available. |