Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: remove unused header | Brian Paul | 2010-05-11 | 1 | -1/+0 |
| | |||||
* | mesa: more transform feedback infrastructure | Brian Paul | 2010-05-10 | 1 | -0/+1 |
| | | | | | Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects. | ||||
* | mesa: Compute extension string according to API | Kristian Høgsberg | 2010-04-22 | 1 | -15/+111 |
| | | | | We can now stop special casing glGetString() and drop specials_es*.c. | ||||
* | es2: Move over es2 code to compute extensions | Kristian Høgsberg | 2010-04-22 | 1 | -3/+106 |
| | |||||
* | mesa: Add OES_EGL_image to extension list. | Chia-I Wu | 2010-04-06 | 1 | -0/+3 |
| | |||||
* | mesa: don't turn on GL_EXT_transform_feedback yet | Brian Paul | 2010-04-04 | 1 | -1/+1 |
| | |||||
* | mesa: new extension flag for GL_EXT/ARB_draw_instanced | Brian Paul | 2010-04-04 | 1 | -0/+2 |
| | |||||
* | mesa: add EXT_transform_feedback to extension list | Brian Paul | 2010-03-30 | 1 | -0/+4 |
| | |||||
* | mesa: Add missing features. | Chia-I Wu | 2010-03-30 | 1 | -1/+1 |
| | | | | | | | Add features tested in the code but missing from mfeatures.h. This also fixes some tests of features. They should be tested with "#if", not "#ifdef". | ||||
* | APPLE_object_purgeable: core | Chris Wilson | 2010-03-05 | 1 | -0/+4 |
| | | | | Signed-off-by: Chris Wilson <[email protected]> | ||||
* | mesa: enable GL_EXT_texture_array for sw drivers | Brian Paul | 2010-02-25 | 1 | -0/+1 |
| | |||||
* | mesa: added new extension flag for GL_EXT_texture_array | Brian Paul | 2010-02-25 | 1 | -0/+1 |
| | |||||
* | Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions | Kristian Høgsberg | 2010-02-19 | 1 | -3/+3 |
| | |||||
* | Remove _mesa_memcpy in favor of plain memcpy. | Kenneth Graunke | 2010-02-19 | 1 | -3/+3 |
| | | | | This may break the SUNOS4 build, but it's no longer relevant. | ||||
* | Remove _mesa_strcmp in favor of plain strcmp. | Kenneth Graunke | 2010-02-19 | 1 | -2/+2 |
| | |||||
* | Remove _mesa_strlen in favor of plain strlen. | Kenneth Graunke | 2010-02-19 | 1 | -5/+5 |
| | |||||
* | mesa: enable GL_ARB_fragment_coord_conventions for sw drivers | Brian Paul | 2010-02-13 | 1 | -2/+2 |
| | | | | | This extension is now implemented in the GLSL compiler so it can be enabled by other drivers where applicable. | ||||
* | mesa: Export GL_EXT_texture_cube_map. | José Fonseca | 2010-02-13 | 1 | -0/+1 |
| | | | | Still used by some applications. | ||||
* | mesa: don't expose GL_ARB_fragment_coord_conventions until the GLSL part is done | Luca Barbieri | 2010-01-29 | 1 | -1/+2 |
| | | | | | | | | Exposing it was incorrect, as the GLSL part of the extension is missing. We still keep the ARB_fragment_coord_conventions field, so that the ARBfp parser can know whether to accept or reject the keywords. | ||||
* | mesa: add core support for ARB_half_float_vertex. | Dave Airlie | 2010-01-23 | 1 | -0/+2 |
| | | | | | | | | Adds the extension to the list + support to the APIs. also add t_draw.c support to convert for sw rast. Signed-off-by: Dave Airlie <[email protected]> | ||||
* | mesa: minor whitespace fix | Brian Paul | 2010-01-21 | 1 | -1/+1 |
| | |||||
* | mesa: support for GL_ARB_fragment_coord_conventions | Luca Barbieri | 2010-01-21 | 1 | -0/+1 |
| | | | | Signed-off-by: Brian Paul <[email protected]> | ||||
* | Merge branch 'master' into opengl-es-v2 | Chia-I Wu | 2010-01-12 | 1 | -10/+75 |
|\ | | | | | | | | | Conflicts: src/mesa/main/dd.h | ||||
| * | mesa: enable GL_EXT_draw_buffers2 for sw drivers | Brian Paul | 2009-12-31 | 1 | -0/+1 |
| | | |||||
| * | mesa: turn on NV_conditional_render for software drivers | Brian Paul | 2009-12-31 | 1 | -0/+1 |
| | | |||||
| * | mesa: add flag for GL_NV_conditional_render extension | Brian Paul | 2009-12-31 | 1 | -0/+1 |
| | | |||||
| * | mesa: _mesa_get_enabled_extension() function | Brian Paul | 2009-12-30 | 1 | -0/+20 |
| | | |||||
| * | mesa: implement GL3 GL_NUM_EXTENSIONS query | Brian Paul | 2009-12-30 | 1 | -0/+25 |
| | | |||||
| * | mesa: simplify some extension testing code | Brian Paul | 2009-12-30 | 1 | -9/+20 |
| | | |||||
| * | mesa: added infrastructure for GL_EXT_draw_buffers2 | Brian Paul | 2009-12-29 | 1 | -0/+1 |
| | | |||||
| * | ARB_fbo: Enable GL_EXT_framebuffer_multisample | Ian Romanick | 2009-11-17 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | All of this functionality is already included in ARB_fbo. This just enables the string. I was a bit lazy in using FEATURE_ARB_framebuffer_object for this feature as well. I don't think it makes much difference in the long run. | ||||
| * | EXT_pds: Alias GL_NV_packed_depth_stencil to GL_EXT_packed_depth_stencil | Ian Romanick | 2009-11-17 | 1 | -0/+1 |
| | | | | | | | | | | | | GL_EXT_packed_depth_stencil is a functional superset of GL_NV_packed_depth_stencil. If a driver enables EXT_pds, make NV_pds available as well. | ||||
* | | mesa/es: Add support for GL_OES_draw_texture. | Chia-I Wu | 2009-11-05 | 1 | -0/+3 |
|/ | | | | Signed-off-by: Chia-I Wu <[email protected]> | ||||
* | mesa/main: New feature FEATURE_queryobj. | Chia-I Wu | 2009-09-30 | 1 | -1/+1 |
| | | | | | It merges FEATURE_ARB_occlusion_query and FEATURE_EXT_timer_query, and follows the feature conventions. | ||||
* | Merge branch 'asm-shader-rework-2' | Ian Romanick | 2009-09-25 | 1 | -0/+4 |
|\ | | | | | | | | | Conflicts: src/mesa/shader/program_parse.tab.c | ||||
| * | Merge branch 'master' into asm-shader-rework-2 | Ian Romanick | 2009-09-10 | 1 | -0/+9 |
| |\ | | | | | | | | | | | | | | | | | | | Conflicts: src/mesa/shader/lex.yy.c src/mesa/shader/program_parse.tab.c src/mesa/shader/program_parse.tab.h | ||||
| * | | Enable GL_NV_fragment_program_option for software rendering | Ian Romanick | 2009-09-03 | 1 | -0/+3 |
| | | | | | | | | | | | | At this point the extension is not fully implemented. | ||||
| * | | NV fp: Add tracking for NV_fragment_program_option | Ian Romanick | 2009-08-31 | 1 | -0/+1 |
| | | | |||||
* | | | mesa: added GL_ARB_provoking_vertex (same as EXT version) | Brian Paul | 2009-09-15 | 1 | -0/+1 |
| |/ |/| | |||||
* | | mesa: Add support for ARB_draw_elements_base_vertex. | Eric Anholt | 2009-09-08 | 1 | -0/+2 |
| | | |||||
* | | mesa: Expose NV_depth_clamp if ARB_depth_clamp is supported. | Eric Anholt | 2009-09-08 | 1 | -0/+1 |
| | | | | | | | | | | | | The wording of these two is exactly the same, except for the issue "Can fragments with wc<=0 be generated when this extension is supported?", which idr thinks is a non-issue for us. | ||||
* | | mesa: Add support for ARB_depth_clamp. | Eric Anholt | 2009-09-08 | 1 | -0/+2 |
| | | | | | | | | | | This currently doesn't include fixing up the cliptests in the assembly paths to support ARB_depth_clamp, so enabling depth_clamp forces the C path. | ||||
* | | ARB sync: Add support for GL_ARB_sync to swrast | Ian Romanick | 2009-09-03 | 1 | -0/+4 |
|/ | | | | | This isn't quite right yet. The delete behavior and the context clean-up needs some work. | ||||
* | Infrastructure for GL_ARB_seamless_cube_map | Ian Romanick | 2009-08-14 | 1 | -0/+1 |
| | |||||
* | GL_ARB_vertex_array_bgra is (basically) a synonym for the EXT version | Ian Romanick | 2009-08-06 | 1 | -0/+1 |
| | |||||
* | Ensure GL_EXT_blend_equation_separate is enabled when 2.0 is enabled. | Alan Hourihane | 2009-08-06 | 1 | -0/+1 |
| | |||||
* | mesa: added extension flag for ARB_vertex_array_object | Brian Paul | 2009-06-22 | 1 | -0/+2 |
| | |||||
* | Merge branch 'ext-provoking-vertex' | Brian Paul | 2009-06-19 | 1 | -0/+2 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: docs/relnotes-7.6.html progs/tests/Makefile src/gallium/drivers/softpipe/sp_prim_vbuf.c src/glx/x11/indirect.c src/mesa/glapi/Makefile src/mesa/glapi/dispatch.h src/mesa/glapi/glapioffsets.h src/mesa/glapi/glapitable.h src/mesa/glapi/glapitemp.h src/mesa/glapi/glprocs.h src/mesa/main/dlist.c src/mesa/main/enums.c src/mesa/sparc/glapi_sparc.S src/mesa/x86-64/glapi_x86-64.S src/mesa/x86/glapi_x86.S | ||||
| * | mesa: enable GL_EXT_provoking_vertex for sw drivers | Brian Paul | 2009-06-01 | 1 | -0/+1 |
| | | |||||
| * | mesa: data structure updates for GL_EXT_provoking_vertex | Brian Paul | 2009-05-28 | 1 | -0/+1 |
| | |