summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
Commit message (Collapse)AuthorAgeFilesLines
* nvfx: fix sampler views supportLuca Barbieri2010-03-223-3/+2
| | | | The code was half converted, resulting in texturing being totally broken.
* Merge branch '7.8'Brian Paul2010-03-221-9/+12
|\ | | | | | | | | | | | | Conflicts: src/gallium/drivers/cell/ppu/cell_screen.c src/mesa/state_tracker/st_cb_drawpixels.c
| * r300g: remove hacks from translate_vertex_data_swizzleMarek Olšák2010-03-191-20/+4
| | | | | | | | Fixing RGBA 4ub vertex colors.
| * cell: return 1 for PIPE_CAP_BLEND_EQUATION_SEPARATEBrian Paul2010-03-171-0/+2
| | | | | | | | | | With this feature, we get OpenGL version 2.0 and the progs/glsl/ demos run as-is.
| * cell: be more conservative in cell_is_format_supported()Brian Paul2010-03-171-5/+9
| | | | | | | | | | This fixes a regression from commit a84575cdc0c8193b2c7858734e2ec6b1ec4511b2 which changed the depth/stencil format we were trying to use.
* | r300g: disable tiling for YUV formatsMarek Olšák2010-03-211-3/+15
| |
* | r300g: fix scons buildMarek Olšák2010-03-215-11/+6
| |
* | r300g: accelerate blitting for all 64-bit texture formatsMarek Olšák2010-03-211-0/+3
| |
* | r300g: add and enable square microtilingMarek Olšák2010-03-212-5/+7
| | | | | | | | | | | | It requires DRM 2.1.0 (e.g. kernel 2.6.34) and is disabled on older ones. Finally, the texture tiling implementation is now complete. Uff.
* | r300g: cleanup tiling flags propagationMarek Olšák2010-03-213-12/+12
| |
* | r300g: put common defines into one fileMarek Olšák2010-03-215-22/+52
| |
* | r300g: remove unused codeMarek Olšák2010-03-213-5/+1
| |
* | nv50: report driver as GLSL capableChristoph Bumiller2010-03-211-1/+1
| | | | | | | | | | | | There's still no hint of optimization in the shaders, but we support conditionals, loops and even integer opcodes so it isn't that big a lie.
* | nv50: don't validate arrays on clearChristoph Bumiller2010-03-211-0/+4
| | | | | | | | The vertex elements and buffers might not be valid anymore.
* | nv50: get rid of the static_init stateobjChristoph Bumiller2010-03-213-140/+142
| | | | | | | | | | | | | | | | | | Relocations of per-screen buffers are now emitted directly, and include the necessary method to get changes in constbuf addresses committed to the hw. It should also be a bit cheaper than the way stateobjs emit relocation markers, use a little less pushbuf space.
* | drm/sw: llvmpipe texture_from_handleGeorge Sapountzis2010-03-211-0/+1
| | | | | | | | Not sure, but judging by softpipe, this hook was forgotten.
* | r300g: fix occlusion query hangs.Dave Airlie2010-03-211-1/+1
| | | | | | | | | | | | | | | | | | | | Okay need to revist the whole OQ stuff anyways, glean test asserts which is never good. I'm liking the cached bufmgr restrictions less and less, I think I'll probably play with the fence and/or busy stuff ASAP and try and clean it up. Signed-off-by: Dave Airlie <[email protected]>
* | r300g: align misaligned ushort vertex indicesMarek Olšák2010-03-211-1/+29
| |
* | r300g: fix misaligned generated offset for ubyte vertex indicesMarek Olšák2010-03-211-1/+5
| |
* | r300g: split the vertex buffer alignment validationMarek Olšák2010-03-211-22/+29
| |
* | r300g: skip null vertex buffersMarek Olšák2010-03-211-1/+6
| |
* | r300g: Bump immediate limits.Corbin Simpson2010-03-201-3/+2
| | | | | | | | | | Seems like a decent idea, especially since the big barrier now is getting the VBOs back from the VRAM boundary.
* | r300g: Correctly hax max_index on pipe_vertex_buffers.Corbin Simpson2010-03-202-12/+28
| | | | | | | | Still not happy with this, but at least things seem to work.
* | r300g: add buffer/texture referenced checks.Dave Airlie2010-03-211-15/+9
| | | | | | | | | | | | | | I've no idea about the comments that were in there, just pass this down to the winsys. Signed-off-by: Dave Airlie <[email protected]>
* | r300g: lod min/max clamping should be relative to the base levelMarek Olšák2010-03-191-3/+3
| |
* | r300g: fix breakage after the gallium-sampler-view mergeMarek Olšák2010-03-193-9/+22
| |
* | r300g: add PIPE_FORMAT_B5G5R5X1_UNORM colorbuffer support, cleanupsMarek Olšák2010-03-191-6/+7
| |
* | r300g: mark SRGB colorbuffers as unsupportedMarek Olšák2010-03-191-20/+1
| | | | | | | | | | I can't find the register bits for SRGB-aware blending and it's not even exposed by fglrx so it's most probably not supported by hw.
* | r300g: add generating texture coordinates for point sprites (WIP)Marek Olšák2010-03-196-13/+61
| |
* | gallivm/llvmpipe: added lp_rast_shader_inputs::facing and pass throughBrian Paul2010-03-186-27/+42
| | | | | | | | | | | | | | | | | | | | The triangle rasterizer sets this field to indicate front/back-facing. It gets passed into the generated fragment code as another parameter. Used now for stencil front/back selection but will also be used for fragment shaders in general (see TGSI_SEMANTIC_FACE). With this commit two-sided stenciling mostly works but there's still a bug or two...
* | llvmpipe: defines for RAST_WHOLE, RAST_EDGE_TESTBrian Paul2010-03-183-20/+27
| |
* | gallivm/llvmpipe: simplify front/back stencil ref value handlingBrian Paul2010-03-184-14/+23
| | | | | | | | Instead of passing an array, just pass two scalar values.
* | llvmpipe: set opaque = FALSE if stencil enabledBrian Paul2010-03-181-0/+1
| | | | | | | | Fixes occasional bad tiles seen in some demos like progs/demos/reflect.c
* | llvmpipe: Fix crashes when there is no depth buffer bound.José Fonseca2010-03-181-0/+3
| |
* | gallivm/llvmpipe: basic stencil testing worksBrian Paul2010-03-171-1/+1
| | | | | | | | | | | | Most stencil demos look OK (modulo some unrelated rendering glitches). Only single-sided stencil test works at this point. There are probably some bugs to be found...
* | llvmpipe: remove incorrect depth test checkBrian Paul2010-03-171-4/+1
| |
* | llvmpipe: silence some pointer/casting warningsBrian Paul2010-03-171-3/+21
| |
* | gallivm/llvmpipe: more asst changes for stencil testingBrian Paul2010-03-171-27/+28
| |
* | gallivm/llmvpipe: pass stencil refs state into z/stencil build codeBrian Paul2010-03-173-7/+18
| |
* | llvmpipe: use new LP_JIT_CTX_ enums for jit context field positionsBrian Paul2010-03-173-32/+57
| | | | | | | | Use the new enum values rather than integers in a few places.
* | llvmpipe: added stencil ref values to jit context stateBrian Paul2010-03-175-19/+48
| |
* | llvmpipe: break linesBrian Paul2010-03-171-1/+2
| |
* | cell: add missing semicolonBrian Paul2010-03-161-1/+1
| |
* | nv50: support more formats in surface_copy,fillChristoph Bumiller2010-03-161-1/+30
| | | | | | | | | | | | | | | | Fixes corrupted fonts in bzFlag, where we've been silently failing to copy I8 mipmaps to a new miptree. Print an error message on unsupported format now, since we can't return failure.
* | Merge commit 'origin/master' into gallium-sampler-viewKeith Whitwell2010-03-1614-21/+133
|\ \ | | | | | | | | | | | | | | | | | | This branch already seems to have the nv50_tex.c fix. Conflicts: src/gallium/drivers/nv50/nv50_tex.c
| * | nv50: fix texturing from >=4GiB markBen Skeggs2010-03-161-1/+2
| | |
| * | llvmpipe: Fix rebase typoJakob Bornecrantz2010-03-161-4/+0
| | |
| * | winsys/sw: Add a software winsys layered on a pipeJakob Bornecrantz2010-03-166-8/+116
| | |
| * | i965g: Fix after context transfersJakob Bornecrantz2010-03-161-0/+1
| | |
| * | gallivm/llvmpipe: rename some constant building functionsBrian Paul2010-03-151-2/+2
| | |