summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-03-09st/mesa: fix clear/drawpixels/bitmap for new cso vertex elements interfacegallium-vertexelementcsoRoland Scheidegger5-0/+23
somehow those got lost...
2010-03-09gallium: don't use flexible array members in drivers for vertex elements csoRoland Scheidegger11-11/+11
While this c99 feature should work with most compilers, valgrind doesn't really like it, and this only really saves some memory, we don't do this in similar occasions (like the blend state) neither.
2010-03-09auxiliary: fix vertex elements csoRoland Scheidegger2-7/+19
potentially could have got a match even though the cso was different (in case of different count and first few elements the same).
2010-03-02r300g: Make velem CSO actually work.Corbin Simpson3-7/+12
glxgears runs again.
2010-03-01nv40: adapt to vertex element csoRoland Scheidegger4-13/+40
2010-03-01nv30: adapt to vertex element csoRoland Scheidegger3-12/+38
2010-03-01identity: adapt to new vertex element csoRoland Scheidegger1-15/+39
2010-03-01failover: adapt to new vertex element csoRoland Scheidegger3-26/+52
2010-03-01i965g: adapt to new vertex element csoRoland Scheidegger4-216/+251
2010-03-01i915g: adapt to new vertex element csoRoland Scheidegger2-8/+35
2010-03-01cell: adapt to new vertex element csoRoland Scheidegger2-12/+37
2010-03-01r300g: adapt to new vertex element csoRoland Scheidegger6-25/+50
2010-03-01llvmpipe: adapt to new vertex element csoRoland Scheidegger4-17/+42
2010-03-01softpipe: adapt to new vertex element csoRoland Scheidegger4-17/+44
2010-03-01svga: adapt to new vertex element csoRoland Scheidegger6-21/+45
2010-03-01trace: adapt to new vertex element csoRoland Scheidegger1-24/+67
2010-03-01vega: adapt to new vertex element csoRoland Scheidegger1-4/+4
2010-03-01vega: adapt to new vertex element csoRoland Scheidegger5-1/+18
2010-03-01xorg: adapt to new vertex element csoRoland Scheidegger2-0/+14
2010-03-01gallium/docs: document new vertex element cso interfaceRoland Scheidegger2-1/+25
2010-03-01vl: adapt to new vertex element cso interfaceRoland Scheidegger4-71/+82
2010-03-01util: adapt blitter code to new vertex element csoRoland Scheidegger5-11/+60
The interface of util_draw_vertex_buffer looks a bit odd (calling code has to set vertex elements but not vertex buffers) but due to the way cso state handling generally works (can't re-bind original vertex element state easily there) I guess that's ok for now.
2010-03-01st/mesa: fix mesa statetracker adaption to new vertex elements interfaceRoland Scheidegger1-1/+2
2010-02-26nv50: adapt to vertex elements csoChristoph Bumiller3-43/+85
2010-02-18gallium: use cso state handling for pipe_vertex_element stateRoland Scheidegger5-5/+117
2010-02-17gallium: remove redundant nr_components field from pipe_vertex_elementRoland Scheidegger13-35/+22
This is a property of the associated src_format pipe format. Hence use util_format_get_nr_components to query this when necessary instead.
2010-02-17util: new util_format_get_nr_components helperRoland Scheidegger1-0/+17
2010-02-16Revert "progs/redbook: Temporarily disable the demos that extensions not ↵José Fonseca1-10/+10
part of windows to fix build." This reverts commit 1587eff1b6d6ab74c302ca2ccb767d917ce3b1dd.
2010-02-16glsl/pp: Do not try to enable extension `all'.Michal Krol1-8/+20
2010-02-16nv50: use hw idx buffers where we canBen Skeggs2-8/+27
2010-02-15progs/redbook: use glewBrian Paul11-9/+36
2010-02-16nouveau: fix for latest libdrmBen Skeggs1-5/+1
2010-02-15wgl: Be lenient when sharing contexts.José Fonseca1-2/+1
My first reading of MS docs was wrong. It says: All rendering contexts of a shared display list must use an identical pixel format. Otherwise the results depend on the implementation of OpenGL used. That is, it is OK to share contexts with different pixel formats. Adobe Premiere Pro tries to do that: share lists between a rgbx8 and a rgba8 pixel format.
2010-02-15progs/redbook: Temporarily disable the demos that extensions not part of ↵José Fonseca1-10/+10
windows to fix build.
2010-02-15scons: A less magic way of not building progs by default.José Fonseca1-6/+7
The problem with the old way is that passing 'progs/subdir' as argument would fail.
2010-02-15glsl/pp: Fix handling of if/elif/else cases.Michal Krol2-11/+28
Once if/elif evalutes to true, all subsequent conditions are always false.
2010-02-15progs/redbook: test image for new redbook testsBrian Paul1-0/+0
2010-02-15progs/redbook: add additional tests for GL 1.4Brian Paul15-8/+2912
2010-02-15docs: document glMultiDrawElements() fixBrian Paul1-0/+1
(cherry picked from commit ab6bcef99a53217db752659ace105ddfd9b25ebb)
2010-02-15vbo: fix broken glMultiDrawElements()Brian Paul1-4/+5
Seems to be a regression from commit 60b08eb1fdf287d28ec66b9282513ab35a61aee0. (cherry picked from commit c5a4cfb03ff17955c049f16ac805f5837ea4b633)
2010-02-15glu/sgi: Add assert to check for null pointer dereference.Vinson Lee1-0/+1
2010-02-15mesa: Remove pointless comparison of unsigned integer with a negative constant.Vinson Lee1-9/+4
2010-02-15glsl/pp: Add asserts to check for null pointer deferences.Vinson Lee2-0/+5
2010-02-14draw: Add assert to check input of memcpy.Vinson Lee1-0/+1
2010-02-14glu/sgi: Move initialization of members to top of Curve constructor.Vinson Lee1-8/+6
This is a modification of commit 53d448657bd300ab68b2869b2fba76a627699baf. The members cpts and spts are possibly used as arguments later in the constructor.
2010-02-14glu/sgi: Initialize members of class Curvelist.Vinson Lee1-4/+5
2010-02-14glu/sgi: Initialize members of class Curve.Vinson Lee1-0/+8
2010-02-14glu/sgi: Initialize member of class Pool.Vinson Lee1-0/+3
2010-02-14glx: Silence uninitialized variable warning.Vinson Lee1-0/+1
2010-02-14st/mesa: minor assorted clean-upsBrian Paul1-8/+12