summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/extensions.c
Commit message (Collapse)AuthorAgeFilesLines
* mesa: remove unused headerBrian Paul2010-05-111-1/+0
|
* mesa: more transform feedback infrastructureBrian Paul2010-05-101-0/+1
| | | | | Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects.
* mesa: Compute extension string according to APIKristian Høgsberg2010-04-221-15/+111
| | | | We can now stop special casing glGetString() and drop specials_es*.c.
* es2: Move over es2 code to compute extensionsKristian Høgsberg2010-04-221-3/+106
|
* mesa: Add OES_EGL_image to extension list.Chia-I Wu2010-04-061-0/+3
|
* mesa: don't turn on GL_EXT_transform_feedback yetBrian Paul2010-04-041-1/+1
|
* mesa: new extension flag for GL_EXT/ARB_draw_instancedBrian Paul2010-04-041-0/+2
|
* mesa: add EXT_transform_feedback to extension listBrian Paul2010-03-301-0/+4
|
* mesa: Add missing features.Chia-I Wu2010-03-301-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: coreChris Wilson2010-03-051-0/+4
| | | | Signed-off-by: Chris Wilson <[email protected]>
* mesa: enable GL_EXT_texture_array for sw driversBrian Paul2010-02-251-0/+1
|
* mesa: added new extension flag for GL_EXT_texture_arrayBrian Paul2010-02-251-0/+1
|
* Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg2010-02-191-3/+3
|
* Remove _mesa_memcpy in favor of plain memcpy.Kenneth Graunke2010-02-191-3/+3
| | | | This may break the SUNOS4 build, but it's no longer relevant.
* Remove _mesa_strcmp in favor of plain strcmp.Kenneth Graunke2010-02-191-2/+2
|
* Remove _mesa_strlen in favor of plain strlen.Kenneth Graunke2010-02-191-5/+5
|
* mesa: enable GL_ARB_fragment_coord_conventions for sw driversBrian Paul2010-02-131-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é Fonseca2010-02-131-0/+1
| | | | Still used by some applications.
* mesa: don't expose GL_ARB_fragment_coord_conventions until the GLSL part is doneLuca Barbieri2010-01-291-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 Airlie2010-01-231-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 fixBrian Paul2010-01-211-1/+1
|
* mesa: support for GL_ARB_fragment_coord_conventionsLuca Barbieri2010-01-211-0/+1
| | | | Signed-off-by: Brian Paul <[email protected]>
* Merge branch 'master' into opengl-es-v2Chia-I Wu2010-01-121-10/+75
|\ | | | | | | | | Conflicts: src/mesa/main/dd.h
| * mesa: enable GL_EXT_draw_buffers2 for sw driversBrian Paul2009-12-311-0/+1
| |
| * mesa: turn on NV_conditional_render for software driversBrian Paul2009-12-311-0/+1
| |
| * mesa: add flag for GL_NV_conditional_render extensionBrian Paul2009-12-311-0/+1
| |
| * mesa: _mesa_get_enabled_extension() functionBrian Paul2009-12-301-0/+20
| |
| * mesa: implement GL3 GL_NUM_EXTENSIONS queryBrian Paul2009-12-301-0/+25
| |
| * mesa: simplify some extension testing codeBrian Paul2009-12-301-9/+20
| |
| * mesa: added infrastructure for GL_EXT_draw_buffers2Brian Paul2009-12-291-0/+1
| |
| * ARB_fbo: Enable GL_EXT_framebuffer_multisampleIan Romanick2009-11-171-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_stencilIan Romanick2009-11-171-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 Wu2009-11-051-0/+3
|/ | | | Signed-off-by: Chia-I Wu <[email protected]>
* mesa/main: New feature FEATURE_queryobj.Chia-I Wu2009-09-301-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 Romanick2009-09-251-0/+4
|\ | | | | | | | | Conflicts: src/mesa/shader/program_parse.tab.c
| * Merge branch 'master' into asm-shader-rework-2Ian Romanick2009-09-101-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 renderingIan Romanick2009-09-031-0/+3
| | | | | | | | | | | | At this point the extension is not fully implemented.
| * | NV fp: Add tracking for NV_fragment_program_optionIan Romanick2009-08-311-0/+1
| | |
* | | mesa: added GL_ARB_provoking_vertex (same as EXT version)Brian Paul2009-09-151-0/+1
| |/ |/|
* | mesa: Add support for ARB_draw_elements_base_vertex.Eric Anholt2009-09-081-0/+2
| |
* | mesa: Expose NV_depth_clamp if ARB_depth_clamp is supported.Eric Anholt2009-09-081-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 Anholt2009-09-081-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 swrastIan Romanick2009-09-031-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_mapIan Romanick2009-08-141-0/+1
|
* GL_ARB_vertex_array_bgra is (basically) a synonym for the EXT versionIan Romanick2009-08-061-0/+1
|
* Ensure GL_EXT_blend_equation_separate is enabled when 2.0 is enabled.Alan Hourihane2009-08-061-0/+1
|
* mesa: added extension flag for ARB_vertex_array_objectBrian Paul2009-06-221-0/+2
|
* Merge branch 'ext-provoking-vertex'Brian Paul2009-06-191-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 driversBrian Paul2009-06-011-0/+1
| |
| * mesa: data structure updates for GL_EXT_provoking_vertexBrian Paul2009-05-281-0/+1
| |