Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-09 | st/mesa: fix clear/drawpixels/bitmap for new cso vertex elements interface | Roland Scheidegger | |
somehow those got lost... | |||
2010-03-09 | gallium: don't use flexible array members in drivers for vertex elements cso | Roland Scheidegger | |
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-09 | auxiliary: fix vertex elements cso | Roland Scheidegger | |
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-02 | r300g: Make velem CSO actually work. | Corbin Simpson | |
glxgears runs again. | |||
2010-03-01 | nv40: adapt to vertex element cso | Roland Scheidegger | |
2010-03-01 | nv30: adapt to vertex element cso | Roland Scheidegger | |
2010-03-01 | identity: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | failover: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | i965g: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | i915g: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | cell: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | r300g: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | llvmpipe: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | softpipe: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | svga: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | trace: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | vega: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | vega: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | xorg: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | gallium/docs: document new vertex element cso interface | Roland Scheidegger | |
2010-03-01 | vl: adapt to new vertex element cso interface | Roland Scheidegger | |
2010-03-01 | util: adapt blitter code to new vertex element cso | Roland Scheidegger | |
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-01 | st/mesa: fix mesa statetracker adaption to new vertex elements interface | Roland Scheidegger | |
2010-02-26 | nv50: adapt to vertex elements cso | Christoph Bumiller | |
2010-02-18 | gallium: use cso state handling for pipe_vertex_element state | Roland Scheidegger | |
2010-02-17 | gallium: remove redundant nr_components field from pipe_vertex_element | Roland Scheidegger | |
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-17 | util: new util_format_get_nr_components helper | Roland Scheidegger | |
2010-02-16 | glsl/pp: Do not try to enable extension `all'. | Michal Krol | |
2010-02-16 | nv50: use hw idx buffers where we can | Ben Skeggs | |
2010-02-16 | nouveau: fix for latest libdrm | Ben Skeggs | |
2010-02-15 | wgl: Be lenient when sharing contexts. | José Fonseca | |
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-15 | glsl/pp: Fix handling of if/elif/else cases. | Michal Krol | |
Once if/elif evalutes to true, all subsequent conditions are always false. | |||
2010-02-15 | vbo: fix broken glMultiDrawElements() | Brian Paul | |
Seems to be a regression from commit 60b08eb1fdf287d28ec66b9282513ab35a61aee0. (cherry picked from commit c5a4cfb03ff17955c049f16ac805f5837ea4b633) | |||
2010-02-15 | glu/sgi: Add assert to check for null pointer dereference. | Vinson Lee | |
2010-02-15 | mesa: Remove pointless comparison of unsigned integer with a negative constant. | Vinson Lee | |
2010-02-15 | glsl/pp: Add asserts to check for null pointer deferences. | Vinson Lee | |
2010-02-14 | draw: Add assert to check input of memcpy. | Vinson Lee | |
2010-02-14 | glu/sgi: Move initialization of members to top of Curve constructor. | Vinson Lee | |
This is a modification of commit 53d448657bd300ab68b2869b2fba76a627699baf. The members cpts and spts are possibly used as arguments later in the constructor. | |||
2010-02-14 | glu/sgi: Initialize members of class Curvelist. | Vinson Lee | |
2010-02-14 | glu/sgi: Initialize members of class Curve. | Vinson Lee | |
2010-02-14 | glu/sgi: Initialize member of class Pool. | Vinson Lee | |
2010-02-14 | glx: Silence uninitialized variable warning. | Vinson Lee | |
2010-02-14 | st/mesa: minor assorted clean-ups | Brian Paul | |
2010-02-14 | st/mesa: change some function return types | Brian Paul | |
2010-02-14 | st/mesa: move per-fragment shader fields to local vars | Brian Paul | |
2010-02-14 | st/mesa: use _mesa_clone_fragment_program() | Brian Paul | |
2010-02-14 | r600: use new program cloning functions | Brian Paul | |
2010-02-14 | r300: use new program cloning functions | Brian Paul | |
2010-02-14 | glsl: use new program cloning functions | Brian Paul | |
2010-02-14 | mesa: added _mesa_clone_vertex/fragment_program() | Brian Paul | |
To reduce casting elsewhere... |