Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-07-21 | check for FEATURE_EXT_framebuffer_object to enable EXT_framebuffer_object | Brian Paul | |
2005-07-21 | remove ^M chars, disable shading language extensions | Brian Paul | |
2005-05-05 | Port Mesa to build on a P64 platform (e.g., Win64). P64 platforms | Karl Schultz | |
use 64-bit pointers and 32-bit longs. So, operations like casting pointers to unsigned long and back to pointer won't work. glheader.h now includes files to define uintptr_t, which should instead be used for this sort of operation. It is an integer type that is the same size as a pointer. | |||
2005-05-04 | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | |
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | |||
2005-04-14 | add GL_ARB_shading_language_100; | Michal Krol | |
reorder GL_ARB_shader_objects and GL_ARB_fragment/vertex_shader stuff | |||
2005-02-07 | additional work on GL_EXT_framebuffer_object | Brian Paul | |
2005-01-13 | enable ARB_fragment/vertex_shader | Michal Krol | |
2004-12-19 | Implement software ATI_fragment_shader | Dave Airlie | |
no error detection, slow, may not be 100% correct but a good start | |||
2004-12-18 | added GL_ARB_pixel_buffer_object extension string | Brian Paul | |
2004-10-31 | don't advertise GL_ARB_vertex/fragment_shader until they're done | Brian Paul | |
2004-10-27 | add entries for extensions ARB_shader_objects, ARB_fragment_shader and | Michal Krol | |
ARB_vertex_shader | |||
2004-10-16 | Add support for OES_read_format. As soon as glext.h is updated with the | Ian Romanick | |
enums for this extension, the changes to gl.h can be removed. | |||
2004-10-02 | added support for GL_ARB_draw_buffers | Brian Paul | |
2004-09-13 | remove ARB_texture_non_power_of_two from _mesa_enable_1_5_extensions() | Brian Paul | |
2004-08-20 | enabled GL_ARB_texture_rectangle | Brian Paul | |
2004-08-17 | don't enable the float texture and GLhalf pixel extensions yet | Brian Paul | |
2004-05-10 | Add EXT_vertex_cull support to mesa | Keith Whitwell | |
2004-05-01 | minor vertex/fragment program tweaks | Brian Paul | |
2004-04-22 | New glTexImage code. | Brian Paul | |
The gl_texture_format struct now has a StoreTexImageFunc that's called by glTex[Sub]Image[123]D to convert the user's texture data into the specific texture format layout. Now it's much easier to add new texture formats (like the 16/32-bit floating point formats). The texutil.[ch] and texutil_tmp.h files are obsolete. | |||
2004-03-13 | Implementation of GL_EXT_pixel_buffer_object extension. | Brian Paul | |
Note: extension may not be finalized yet - subject to change! Note: implementation not fully suitable for h/w implementation yet. | |||
2004-02-06 | Added flags for _all_ extensions to the gl_extensions struct so that drivers | Brian Paul | |
can disable any extension if necessary. | |||
2004-01-27 | Added support for EXT_blend_equation_separate / ATI_blend_equation_separate. | Ian Romanick | |
The internal driver interface was also changed to use BlendEquationSeparate instead of BlendEquation. | |||
2003-12-04 | Port over changes from XFree86/Mesa 5.0.2, mostly to silence compiler warnings. | Brian Paul | |
2003-11-21 | more texture compression | Daniel Borca | |
2003-11-19 | Initial checking of new ARB_frag/vertex program parser | Karl Rasche | |
2003-09-19 | Assorted casts to silence g++ warnings. | Brian Paul | |
2003-09-17 | set ARB_vertex_buffer_object in _mesa_enable_sw_extensions() | Brian Paul | |
2003-09-03 | ARB_point_sprite is not part of OpenGL 1.5 | Brian Paul | |
2003-09-02 | Added support for EXT_texture_mirror_clamp and the single wrap mode | Ian Romanick | |
that it addes to ATI_texture_mirror_once. This includes updating the texwrap test to exercise the new mode. | |||
2003-08-28 | Added OpenGL 1.4's per-texture LOD bias. | Brian Paul | |
2003-08-23 | Trivial changes to add support for GL_ARB_point_sprite, which is a | Ian Romanick | |
subset of GL_NV_point_sprite (which was already supported). | |||
2003-08-22 | Added support for GL_IBM_multimode_draw_arrays. | Ian Romanick | |
Added non-static entrypoints and the name string for GL_SUN_multi_draw_arrays (identical to GL_EXT_multi_draw_arrays). Made add_newer_entrypoints (in src/mesa/main/context.c) table driven. This reduced the size of context.o by about 3KB. | |||
2003-08-06 | prep for OpenGL 1.5 | Brian Paul | |
2003-07-21 | Initial implementation of GL_MESA_program_debug - a vertex/fragment program | Brian Paul | |
debugging extension. | |||
2003-07-18 | Fix up some loose ends from the last big check-in. | Brian Paul | |
2003-07-17 | Merge Jose's documentation and core Mesa changes from embedded branch | Keith Whitwell | |
2003-07-03 | Implemented GL_ARB_texture_non_power_of_two (except for auto mipmap generation). | Brian Paul | |
2003-07-03 | Simplify extension string handling. | Brian Paul | |
2003-06-13 | Implemented GL_ARB_occlusion_query (not 100% finalized). | Brian Paul | |
2003-06-04 | Added GL_EXT_texture_rectangle (identical to GL_NV_texture_rectangle) | Brian Paul | |
2003-06-02 | Removed fields from 'struct gl_extensions' for extensions that don't | Ian Romanick | |
need them. Added "always on" extensions for extensions that are part of core versions 1.1 and 1.2. | |||
2003-05-30 | Added support for NV_light_max_exponent. | Ian Romanick | |
2003-04-21 | Implemented GL_EXT_depth_bounds_test. | Brian Paul | |
2003-04-11 | Some groundwork for GL_ARB_vertex/fragment_program. | Brian Paul | |
2003-03-29 | Basic infrastructure for GL_ARB_vertex_buffer_object. | Brian Paul | |
2003-01-21 | GL_SGI_texture_color_table extension (Eric Plante) | Brian Paul | |
2003-01-21 | GL_ATI_texture_env_combine3 extension | Brian Paul | |
2003-01-14 | First batch of code for GL_NV_fragment_program. | Brian Paul | |
Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS. | |||
2002-10-25 | wrapped a few more C library functions | Brian Paul | |
2002-10-24 | Header file clean-up: | Brian Paul | |
1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc. |