Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-12 | mesa: use _mesa_reference_buffer_object() in a few places | Brian Paul | |
2009-06-12 | Merge branch 'mesa_7_5_branch' | Jakob Bornecrantz | |
2009-06-12 | mesa: Enable uploads of only depth to z24s8 textures | Jakob Bornecrantz | |
2009-06-11 | mesa: add default function for ctx->Driver.CheckQuery() hook | Brian Paul | |
2009-06-11 | Merge branch 'mesa_7_5_branch' | José Fonseca | |
Conflicts: src/mesa/state_tracker/st_cb_fbo.c src/mesa/state_tracker/st_framebuffer.c | |||
2009-06-10 | mesa: Fix typo in bitmask. | José Fonseca | |
2009-06-10 | mesa: disable texture unit error check in _mesa_MatrixMode() | Brian Paul | |
See comments for details. | |||
2009-06-09 | Merge branch 'mesa_7_5_branch' | Jakob Bornecrantz | |
Conflicts: Makefile src/mesa/main/version.h src/mesa/shader/slang/slang_preprocess.c src/mesa/state_tracker/st_cb_bufferobjects.c | |||
2009-06-09 | mesa: added a simple bounds checker to glMap/UnmapBuffer() (disabled) | Brian Paul | |
2009-06-09 | mesa: reorder fields, update comments for gl_buffer_object | Brian Paul | |
2009-06-08 | mesa: implement GL_ARB_map_buffer_range | Brian 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-08 | mesa: regenerated files for GL_ARB_map_buffer_range | Brian Paul | |
2009-06-08 | mesa: reorder fields, update comments for gl_buffer_object | Brian Paul | |
2009-06-08 | mesa: new MESA_EXTENSION_OVERRIDE env var | Brian Paul | |
Can be used to enable/disable extensions as reported by glGetString(GL_EXTENSIONS). If a name is preceeded by '-' it's disabled. Otherwise, the named extension is enabled. Intended for debug/test purposes. | |||
2009-06-08 | mesa: Use matching signedness for the counter as upper bound. | José Fonseca | |
2009-06-08 | mesa: bump MAX_PROGRAM_ENV_PARAMS from 128 to 256 | Brian Paul | |
Also, MAX_NV_VERTEX_PROGRAM_PARAMS should be 96, not 128 (or 256). | |||
2009-06-08 | mesa: EXT_vertex_array_bgra fixes | Brian Paul | |
1) Pass the correct format when calling update_array in _mesa_VertexAttribPointerARB. 2) glVertexAttribPointerNV accepts GL_BGRA format too. 3) raise INVALID_VALUE error when format is BGRA and normalized is false in glVertexAttribPointerARB (cherry picked from commit 4adb190a162c5ed0684a8616331344caadba4010) | |||
2009-06-08 | mesa: EXT_vertex_array_bgra fixes | Maciej Cencora | |
1) Pass the correct format when calling update_array in _mesa_VertexAttribPointerARB. 2) glVertexAttribPointerNV accepts GL_BGRA format too. 3) raise INVALID_VALUE error when format is BGRA and normalized is false in glVertexAttribPointerARB | |||
2009-06-05 | mesa: bump version to 7.5-rc3 | Brian Paul | |
2009-06-04 | mesa: call _mesa_ funcs, not gl funcs for debugging | Brian Paul | |
2009-06-04 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
Conflicts: src/mesa/main/context.c | |||
2009-06-03 | mesa: added buffer object debug code (disabled) | Brian Paul | |
2009-06-03 | Fast path when rebinding the same texture in single context environment | Ian Romanick | |
If there is no shared context, there is no purpose in rebinding the same texture. In some artificial tests this improves performance 10% - 30%. | |||
2009-06-02 | mesa: fix error test mistake in _mesa_CopyBufferSubData() | Brian Paul | |
2009-06-02 | mesa: enable GL_ARB_copy_buffer for software drivers | Brian Paul | |
2009-06-02 | mesa: plug in new _mesa_CopyBufferSubData() functions | Brian Paul | |
2009-06-02 | mesa: _mesa_CopyBufferSubData() function, and driver fall-back | Brian Paul | |
2009-06-02 | mesa: new state for GL_ARB_copy_buffer | Brian Paul | |
2009-06-02 | mesa: new CopyBufferSubData() driver hook | Brian Paul | |
2009-06-02 | glapi: regenerated files for GL_ARB_copy_buffer | Brian Paul | |
2009-06-02 | mesa: release VBO and PBO references upon context destruction | Brian Paul | |
2009-06-02 | mesa: add #define FEATURE_ARB_pixel_buffer_object | Brian Paul | |
2009-06-01 | mesa: enable GL_EXT_provoking_vertex for sw drivers | Brian Paul | |
2009-06-01 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
2009-05-30 | mesa: Output warnings to debugger on Windows. | José Fonseca | |
Stderr of Windows applications without console is not usually visible. | |||
2009-05-30 | mesa: Add success/failures return value to _mesa_make_current. | José Fonseca | |
2009-05-28 | mesa: glGet queries for GL_EXT_provoking_vertex | Brian Paul | |
2009-05-28 | mesa: exec/dlist functions for glProvokingVertexEXT() | Brian Paul | |
2009-05-28 | mesa: data structure updates for GL_EXT_provoking_vertex | Brian Paul | |
2009-05-28 | mesa: regenerated enums for GL_EXT_provoking_vertex | Brian Paul | |
2009-05-22 | mesa: add missing update_min() call in update_arrays() | Brian Paul | |
2009-05-22 | mesa: reduce gl_array_object::VertexAttrib[] array from 32 to 16 elements | Brian Paul | |
This array was mistakenly dimensioned with VERT_ATTRIB_MAX (32) but it should really be MAX_VERTEX_GENERIC_ATTRIBS (16). The generic vertex attributes are in addition to the conventional arrays (except in NV vertex program mode- they alias/overlay in that case) so the total of all conventional attributes plus generic attributes should total 32 (not 48). | |||
2009-05-22 | mesa: use Elements() for loop limit | Brian Paul | |
2009-05-22 | mesa: use Elements() for loop limit | Brian Paul | |
2009-05-22 | mesa: use Elements() for loop limit | Brian Paul | |
2009-05-22 | mesa: simplify adjust_buffer_object_ref_counts() | Brian Paul | |
2009-05-22 | mesa: minor code clean-up | Brian Paul | |
2009-05-22 | mesa: use Elements() for loop limit | Brian Paul | |
2009-05-22 | mesa: use Elements() for loop bound | Brian Paul | |
2009-05-22 | mesa: minor code simplification | Brian Paul | |