Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: improve array initialization code, and set the new array->Format field. | Brian Paul | 2009-01-23 | 1 | -75/+33 |
| | |||||
* | mesa: increase max texture image units and GLSL samplers to 16 | Brian Paul | 2008-12-31 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | The max texture coord units is still 8. All the fixed-function paths are still limited to 8 too. But GLSL shaders can use more samplers now. Note that some texcoord-related data structures are declared to be 16 elements in size rather than 8. This just simplifies the code in a few places; the extra elements aren't accessible to the user. These changes haven't been extensively tested yet, but sanity checking has been done. It should be possible to increase the max image units/samplers to 32 without doing anything special. Beyond that we'll need longer bitfields in a few places. | ||||
* | mesa: point size arrays | Brian Paul | 2008-09-21 | 1 | -0/+9 |
| | |||||
* | mesa: replace MALLOC w/ CALLOC to fix valgrind warning | Brian Paul | 2008-09-05 | 1 | -1/+1 |
| | |||||
* | mesa: improved gl_buffer_object reference counting | Brian Paul | 2008-09-04 | 1 | -11/+20 |
| | | | | | Use new _mesa_reference_buffer_object() function wherever possible. Fixes buffer object/display list crash reported in ParaView. | ||||
* | Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵ | Brian | 2007-07-04 | 1 | -1/+1 |
| | | | | of -I flags. | ||||
* | better handling of current attributes. Trivial dlist and varray tests work | Keith Whitwell | 2006-10-30 | 1 | -9/+0 |
| | |||||
* | minor clean-ups | Brian Paul | 2006-06-15 | 1 | -9/+4 |
| | |||||
* | s/buffer/arrays/ | Brian Paul | 2006-06-12 | 1 | -7/+5 |
| | |||||
* | Add support for GL_APPLE_vertex_array_object. Several test programs | Ian Romanick | 2006-06-12 | 1 | -0/+426 |
and demos are also added. Adding basic support to drivers should be as easy as just enabling the extension, though thorough test would also be required. |