summaryrefslogtreecommitdiff
path: root/src/mesa/main/mfeatures.h
AgeCommit message (Collapse)Author
2009-06-08mesa: implement GL_ARB_map_buffer_rangeBrian Paul
Only enabled for software drivers at this point. Note that the gl_buffer_object::Access enum field has been replaced by a gl_buffer_object::AccessFlags bitfield. The new field is a mask of the GL_MAP_x_BIT flags which is a superset of the old GL_READ_ONLY, GL_WRITE_ONLY and GL_READ_WRITE modes. When we query GL_BUFFER_ACCESS_ARB we translate the bitfield into the conventional enum values.
2009-06-02mesa: add #define FEATURE_ARB_pixel_buffer_objectBrian Paul
2009-03-07mesa: remove GL_MESA_program_debug extensionBrian Paul
This was never fully fleshed out and hasn't been used.
2009-01-22mesa: initial extension bits for GL_ARB_framebuffer_objectBrian Paul
2008-10-06mesa: fix convolve/convolution mix-upsBrian
2008-09-21mesa: point size arraysBrian Paul
2008-09-21mesa: GL_BYTE vertex/texcoord arraysBrian Paul
2008-09-21mesa: initial support for fixed-pt vertex arraysBrian Paul
2008-09-21mesa: FEATURE_dispatch to control dispatch table usageBrian Paul
2008-09-21mesa: fix typo: s/stacks/stack/Brian Paul
2008-09-21mesa: refactor: fix some FEATURE_ typos, mistakesBrian Paul
(cherry picked from commit e4cfe0854ad968193106048179b9b52ec1768f41)
2008-09-21mesa: refactor: move #define FEATURE flags into new mfeatures.h fileKeith Whitwell
Also, check the FEATURE flags in many places. (cherry picked from commit 40d1a40f294f1ed2dacfad6f5498322fc08cc2d1) Conflicts: src/mesa/main/config.h src/mesa/main/context.c src/mesa/main/texobj.c src/mesa/main/texstate.c src/mesa/main/texstore.c