Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-12-18 | mesa/swrast/st: add ARB_occlusion_query2 support. | Dave Airlie | |
This gets my vote for most pointless extension of all time, I'm guessing some driver could possibly optimise for this instead of counting it might just get a true/false, but I'm not really sure. need this to eventually advertise 3.3 despite its total uselessness. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-12-16 | Remove OES_compressed_paletted_texture from the ES2 extension list. | Kenneth Graunke | |
We don't support it. | |||
2010-12-13 | mesa, st/mesa: disable GL_ARB_geometry_shader4 | Brian Paul | |
The new GLSL compiler doesn't support geom shaders yet so disable the GL_ARB_geometry_shader4 extension. Undo this when geom shaders work again. NOTE: This is a candidate for the 7.10 branch. | |||
2010-12-08 | mesa: Do not advertise GL_OES_texture_3D. | Chia-I Wu | |
GL_OES_texture_3D has a GLSL counterpart. Since it is not implemented, GL_OES_texture_3D should not be advertised. | |||
2010-10-28 | mesa: add extension table entry for GL_EXT_gpu_shader4 | Brian Paul | |
2010-10-27 | swrast: Enable GL_EXT_separate_shader_objects in software paths | Ian Romanick | |
2010-10-27 | mesa: Add infrastructure to track GL_EXT_separate_shader_objects | Ian Romanick | |
2010-10-13 | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | |
2010-10-13 | glsl: add support for shader stencil export | Dave Airlie | |
This adds proper support for the GL_ARB_shader_stencil_export extension to the GLSL compiler. Thanks to Ian for pointing out where I need to add things. | |||
2010-10-08 | main: Enable GL_ARB_explicit_attrib_location for swrast | Ian Romanick | |
2010-10-07 | gles2: Add GL_EXT_texture_format_BGRA8888 support | Kristian Høgsberg | |
2010-10-01 | mesa: Add ARB_texture_compression_rgtc as an alias for ↵ | Ian Romanick | |
EXT_texture_compression_rgtc Change the name in the extension tracking structure to ARB (from EXT). | |||
2010-10-01 | mesa: Enable GL_ARB_texture_rg in software paths | Ian Romanick | |
2010-09-27 | Remove GL_EXT_cull_vertex | Ian Romanick | |
This is only used in the i915 driver where it provides little benefit for very few applications that use it with fixed function TNL. | |||
2010-09-27 | Remove GL_MESA_packed_depth_stencil | Ian Romanick | |
This extension was never enabled in any driver. | |||
2010-09-27 | mesa: Force GL_SGIS_generate_mipmap to always be enabled | Ian Romanick | |
As per discussions at XDS. | |||
2010-09-27 | mesa: Force GL_ARB_copy_buffer to always be enabled | Ian Romanick | |
As per discussions at XDS. | |||
2010-09-23 | mesa: Remove EXT_convolution. | Eric Anholt | |
More optional code. | |||
2010-09-23 | mesa: Remove SGI_color_matrix. | Eric Anholt | |
Another optional ARB_imaging subset extension. | |||
2010-09-23 | mesa: Remove SGI_color_table. | Eric Anholt | |
Another optional ARB_imaging subset extension. | |||
2010-09-23 | mesa: Remove EXT_histogram. | Eric Anholt | |
This has always been optional, and not useful. | |||
2010-09-23 | mesa: Remove the non-required ARB_imaging extension. | Eric Anholt | |
Many of the EXT_ extensions in the subset have significant code overhead with no users. It is not a required part of GL -- though text describing the extension is part of the core spec since 1.2, it is always conditional on the ARB_imaging extension. | |||
2010-09-21 | mesa: don't advertise bogus GL_ARB_shading_language_120 extension | Brian Paul | |
Instead of using the invalid GL_ARB_shading_language_120 extension to determine the GLSL version, use a new ctx->Const.GLSLVersion field. Updated the intel and r600 drivers, but untested. See fd.o bug 29910 NOTE: This is a candidate for the 7.9 branch (but let's wait and see if there's any regressions). | |||
2010-09-05 | mesa: don't expose unsupported GL_ARB_geometry_shader4 for now | Luca Barbieri | |
The new GLSL compiler doesn't support it. Advertising it prevents Unigine Heaven from working, since it attempts to use it. | |||
2010-09-02 | mesa: fix some printf warnings with casts | Brian Paul | |
2010-07-07 | mesa: initial support for new GL 3.0 texture formats | Brian Paul | |
2010-07-01 | mesa: extension flags and version testing for GL 3.x features | Brian Paul | |
2010-06-28 | mesa: initial support for ARB_geometry_shader4 | Zack Rusin | |
laying down the foundation for everything and implementing most of the stuff. linking, gl_VerticesIn and multidimensional inputs are left. | |||
2010-06-05 | mesa: add ARB_texture_swizzle as alias of EXT_texture_swizzle, update relnotes | Marek Olšák | |
The specifications are identical. | |||
2010-05-11 | mesa: remove unused header | Brian Paul | |
2010-05-10 | mesa: more transform feedback infrastructure | Brian Paul | |
Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects. | |||
2010-04-22 | mesa: Compute extension string according to API | Kristian Høgsberg | |
We can now stop special casing glGetString() and drop specials_es*.c. | |||
2010-04-22 | es2: Move over es2 code to compute extensions | Kristian Høgsberg | |
2010-04-06 | mesa: Add OES_EGL_image to extension list. | Chia-I Wu | |
2010-04-04 | mesa: don't turn on GL_EXT_transform_feedback yet | Brian Paul | |
2010-04-04 | mesa: new extension flag for GL_EXT/ARB_draw_instanced | Brian Paul | |
2010-03-30 | mesa: add EXT_transform_feedback to extension list | Brian Paul | |
2010-03-30 | mesa: Add missing features. | Chia-I Wu | |
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". | |||
2010-03-05 | APPLE_object_purgeable: core | Chris Wilson | |
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2010-02-25 | mesa: enable GL_EXT_texture_array for sw drivers | Brian Paul | |
2010-02-25 | mesa: added new extension flag for GL_EXT_texture_array | Brian Paul | |
2010-02-19 | Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions | Kristian Høgsberg | |
2010-02-19 | Remove _mesa_memcpy in favor of plain memcpy. | Kenneth Graunke | |
This may break the SUNOS4 build, but it's no longer relevant. | |||
2010-02-19 | Remove _mesa_strcmp in favor of plain strcmp. | Kenneth Graunke | |
2010-02-19 | Remove _mesa_strlen in favor of plain strlen. | Kenneth Graunke | |
2010-02-13 | mesa: enable GL_ARB_fragment_coord_conventions for sw drivers | Brian Paul | |
This extension is now implemented in the GLSL compiler so it can be enabled by other drivers where applicable. | |||
2010-02-13 | mesa: Export GL_EXT_texture_cube_map. | José Fonseca | |
Still used by some applications. | |||
2010-01-29 | mesa: don't expose GL_ARB_fragment_coord_conventions until the GLSL part is done | Luca Barbieri | |
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. | |||
2010-01-23 | mesa: add core support for ARB_half_float_vertex. | Dave Airlie | |
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 <airlied@redhat.com> | |||
2010-01-21 | mesa: minor whitespace fix | Brian Paul | |