summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* glapi: mv table functions to glapi_getproc.c and add local headerGeorge Sapountzis2010-03-094-66/+98
|
* drop stray XFree86Server, XGLServerGeorge Sapountzis2010-03-092-9/+4
|
* svga: Don't do culling while the software pipeline is active.Keith Whitwell2010-03-091-2/+11
| | | | | It does it for us, and additionally introduces potentially back-facing triangles.
* mesa/st: initialize velements state properlyRoland Scheidegger2010-03-091-0/+1
| | | | | | one variable is a bitfield where the rest is never written to, which caused valgrind to complain. Might have caused cso to not recognize an already stored state. Reported by Christoph Bumiller.
* cso: don't forget to release vertex elements stateRoland Scheidegger2010-03-091-0/+1
|
* r300g: kill pf_component_countMarek Olšák2010-03-091-28/+1
|
* gallivm: checkpoint: nearest mipmap filteringBrian Paul2010-03-095-292/+601
| | | | | | | | | The LOD is computed from texcoord partial derivatives and used to select a mipmap level. Still some bugs in texel fetching. Lots of rough edges and unfinished parts but the basics are in place. Lots of changes to the lp_bld_arit.c code to support non-vector/scalar datatypes.
* util: simplify util_format_get_nr_components helperRoland Scheidegger2010-03-091-8/+1
| | | | | since the number of components is now stored in the pipe format description, we obviously no longer need to figure this out ourselves.
* util: Use bitshift arithmetic for pack too.José Fonseca2010-03-091-19/+58
|
* cso: Fix typo in assert.Corbin Simpson2010-03-091-1/+1
|
* r300g: Precalculate and CSO-bind PSC state.Corbin Simpson2010-03-094-205/+190
|
* r300g: Cleanup old PSC code a bit.Corbin Simpson2010-03-091-5/+1
|
* identity: fix copy & paste errorRoland Scheidegger2010-03-091-4/+4
|
* r300g: fix gallium-vertexlementcso merge damageRoland Scheidegger2010-03-093-28/+2
|
* Merge branch 'gallium-vertexelementcso'Roland Scheidegger2010-03-0979-569/+1254
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/cso_cache/cso_context.c src/gallium/auxiliary/util/u_blit.c src/gallium/auxiliary/util/u_gen_mipmap.c src/gallium/drivers/i915/i915_context.h src/gallium/drivers/i965/brw_draw_upload.c src/gallium/drivers/r300/r300_blit.c src/gallium/drivers/r300/r300_context.h src/gallium/drivers/r300/r300_render.c src/gallium/drivers/r300/r300_state_derived.c src/mesa/state_tracker/st_cb_bitmap.c src/mesa/state_tracker/st_cb_clear.c
| * st/mesa: fix clear/drawpixels/bitmap for new cso vertex elements interfaceRoland Scheidegger2010-03-095-0/+23
| | | | | | | | somehow those got lost...
| * gallium: don't use flexible array members in drivers for vertex elements csoRoland Scheidegger2010-03-0911-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.
| * auxiliary: fix vertex elements csoRoland Scheidegger2010-03-092-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).
| * r300g: Make velem CSO actually work.Corbin Simpson2010-03-023-7/+12
| | | | | | | | glxgears runs again.
| * nv40: adapt to vertex element csoRoland Scheidegger2010-03-014-13/+40
| |
| * nv30: adapt to vertex element csoRoland Scheidegger2010-03-013-12/+38
| |
| * identity: adapt to new vertex element csoRoland Scheidegger2010-03-011-15/+39
| |
| * failover: adapt to new vertex element csoRoland Scheidegger2010-03-013-26/+52
| |
| * i965g: adapt to new vertex element csoRoland Scheidegger2010-03-014-216/+251
| |
| * i915g: adapt to new vertex element csoRoland Scheidegger2010-03-012-8/+35
| |
| * cell: adapt to new vertex element csoRoland Scheidegger2010-03-012-12/+37
| |
| * r300g: adapt to new vertex element csoRoland Scheidegger2010-03-016-25/+50
| |
| * llvmpipe: adapt to new vertex element csoRoland Scheidegger2010-03-014-17/+42
| |
| * softpipe: adapt to new vertex element csoRoland Scheidegger2010-03-014-17/+44
| |
| * svga: adapt to new vertex element csoRoland Scheidegger2010-03-016-21/+45
| |
| * trace: adapt to new vertex element csoRoland Scheidegger2010-03-011-24/+67
| |
| * vega: adapt to new vertex element csoRoland Scheidegger2010-03-011-4/+4
| |
| * vega: adapt to new vertex element csoRoland Scheidegger2010-03-015-1/+18
| |
| * xorg: adapt to new vertex element csoRoland Scheidegger2010-03-012-0/+14
| |
| * gallium/docs: document new vertex element cso interfaceRoland Scheidegger2010-03-012-1/+25
| |
| * vl: adapt to new vertex element cso interfaceRoland Scheidegger2010-03-014-71/+82
| |
| * util: adapt blitter code to new vertex element csoRoland Scheidegger2010-03-015-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.
| * st/mesa: fix mesa statetracker adaption to new vertex elements interfaceRoland Scheidegger2010-03-011-1/+2
| |
| * nv50: adapt to vertex elements csoChristoph Bumiller2010-02-263-43/+85
| |
| * gallium: use cso state handling for pipe_vertex_element stateRoland Scheidegger2010-02-185-5/+117
| |
| * gallium: remove redundant nr_components field from pipe_vertex_elementRoland Scheidegger2010-02-1712-34/+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.
| * util: new util_format_get_nr_components helperRoland Scheidegger2010-02-171-0/+17
| |
* | nv30: fix typoDavid Heidelberger2010-03-091-1/+1
| | | | | | | | Signed-off-by: David Heidelberger <[email protected]>
* | Squashed commit of gallium-no-texture-blanketKeith Whitwell2010-03-0919-428/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit f90b3f01af82b9522067b1824e21709a6fb2d3af Author: Keith Whitwell <[email protected]> Date: Mon Mar 8 14:39:44 2010 +0000 gallium: remove p_screen::surface_buffer_create This isn't very useful without texture_blanket(), which has also been removed. Note that this function hasn't been removed from the old pipe_winsys (u_simple_screen) still used internally by some drivers (eg softpipe). commit 6c462de39a4b9980a5f034a95e580efdfcb8173b Author: Keith Whitwell <[email protected]> Date: Mon Mar 8 14:27:40 2010 +0000 egl/x11: disable texture_blanket usage commit b42da9160df9f47224e5b3291b972f41767aa6e5 Merge: 4be2436 3ca9336 Author: Keith Whitwell <[email protected]> Date: Mon Mar 8 14:27:24 2010 +0000 Merge commit 'origin/master' into gallium-no-texture-blanket Conflicts: src/gallium/drivers/svga/svga_screen_texture.c commit 4be2436316929e3dfc55bc34d810920c06556b66 Author: Keith Whitwell <[email protected]> Date: Thu Mar 4 14:59:26 2010 +0000 gallium: remove texture blanket call No longer needed, except for nouveau and egl/xll/native_ximage.c. Fix for nouveau is to keep the call, but move it to an internal function within nouveau. Fix for that egl/x11 relies on gallium-sw-api branch or its successor. commit 69b6764330367d63c237d0bde9fb96435d0e0257 Author: Keith Whitwell <[email protected]> Date: Thu Mar 4 13:35:16 2010 +0000 drm_api: wrap comment
* | r300g: remove hacks from translate_vertex_data_swizzleMarek Olšák2010-03-091-20/+4
| | | | | | | | The first part of the fix of BGRA vertex colors.
* | draw: quads never provoke the first vertexMarek Olšák2010-03-092-58/+20
| |
* | softpipe: quads never provoke the first vertexMarek Olšák2010-03-091-68/+12
| |
* | llvmpipe: quads never provoke the first vertexMarek Olšák2010-03-091-93/+36
| |
* | mesa/st: Gallium quads, by spec, never change provoking vertex.Corbin Simpson2010-03-091-0/+3
| | | | | | | | Fixes glean/clipFlat for r300g.
* | st/egl: Fix KMS build error after winsys handle change.Chia-I Wu2010-03-091-5/+9
| |