summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | gallium: update some comments, remove others which are superfluousBrian Paul2010-03-081-5/+5
| |
* | vega: remove redundant DEFINES from .c.o ruleBrian Paul2010-03-081-1/+1
| |
* | llvmpipe/gallivm: checkpoint: array of pointers to mipmap levelsBrian Paul2010-03-087-44/+81
| | | | | | | | | | | | | | Change the texture data_ptr from just a single image pointer to an array of image pointers, indexed by mipmap level. We'll use this for mipmap filtering. For now, the mipmap level is hard-coded to zero.
* | nv: define NV30/40/50_MAX_TEXTURE_LEVELSBrian Paul2010-03-083-3/+9
| |
* | r300g: define R300_MAX_TEXTURE_LEVELSBrian Paul2010-03-081-6/+8
| |
* | svga: s/PIPE_MAX_TEXTURE_LEVELS/SVGA_MAX_TEXTURE_LEVELS/Brian Paul2010-03-081-1/+1
| |
* | i915g: define I915_MAX_TEXTURE_2D/3D_LEVELSBrian Paul2010-03-083-7/+10
| |
* | i965g: define BRW_MAX_TEXTURE_2D/3D_LEVELSBrian Paul2010-03-082-6/+9
| |
* | softpipe: define SP_MAX_TEXTURE_2D/3D_LEVELSBrian Paul2010-03-082-5/+9
| |
* | llvmpipe: define max texture levelsBrian Paul2010-03-082-5/+9
| |
* | llvmpipe: rewrap for 80 columnsBrian Paul2010-03-081-9/+13
| |
* | i965: Fix up the handling of point sprite coordinate replacement.Eric Anholt2010-03-083-66/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | The code was walking over the regs of pairs of attributes and checking whether the attribute with a given reg index had point sprite enabled. So the point sprite setup code was rarely even getting executed. Instead, we need to determine which channels of a reg need point sprite coordinate replacement. In addition, it was multiplying the attribute by 1/w, when it's supposed to cover (0, 1) in each direction regardless of w, and it wasn't filling in the Z and W components of the texcoord as specified. Fixes piglit point-sprite and the spriteblast demo. Bug #24431, #22245.
* | gallivm: fix a crash by making sure we set the has_mask flag correctlyZack Rusin2010-03-081-2/+1
| |
* | Merge branch '7.8'Brian Paul2010-03-086-23/+94
|\ \