summaryrefslogtreecommitdiff
path: root/src/gallium
AgeCommit message (Collapse)Author
2009-09-23Merge branch 'softpipe-opt'Keith Whitwell
Conflicts: progs/demos/cubemap.c src/gallium/drivers/softpipe/sp_tex_sample.c src/gallium/drivers/softpipe/sp_texture.c
2009-09-23gallium/include: update some commentsKeith Whitwell
2009-09-23st/xorg: fix a typoZack Rusin
it'd be too easy, eh
2009-09-23st/xorg: keep the user buffer contents aroundZack Rusin
Michel noticed that they were getting out of scope
2009-09-23wgl: Eliminate the shared layer; implement WGL API on top of the ICD callbacks.José Fonseca
While the WGL API has been stale for decades now, the ICD interface has been updated with new Windows versions, so it is much easier to define everything in terms of the ICD interfaces, which is pretty much what Microsoft's opengl32.dll does anyway.
2009-09-23gdi: Update for WGL statetracker source reorg.José Fonseca
2009-09-23wgl: Flatten the source tree.José Fonseca
It is easier to have the WGL API on top of the ICD callbacks as Microsoft's own implementation does, than to have a seperate shared entity. This source reorganization is in antecipation of that.
2009-09-23wgl: Fix debug_printf format specifiers.José Fonseca
2009-09-23gallium: Update vendor string.José Fonseca
2009-09-22softpipe: fix bugs in POT texture sampling when texture is not squareroot
Before, if level was greater than the logbase2(base size) we were doing a negative bit shift and winding up with garbage values.
2009-09-22softpipe: additional assertionsBrian Paul
2009-09-22softpipe: disable a _debug_printf()Brian Paul
2009-09-22softpipe: need to write depth/stencil values even when stencil failsKeith Whitwell
2009-09-22softpipe: set quad->facing valueKeith Whitwell
2009-09-22softpipe: fix polygon stippleKeith Whitwell
2009-09-22softpipe: fix occlusion countingKeith Whitwell
2009-09-22st/xorg: Fix two leeksJakob Bornecrantz
We where leaking both surfaces in the composit code and textures from pixmaps.
2009-09-22i915g: Activate traceJakob Bornecrantz
2009-09-22i915g: Do propper references of surfaces in contextJakob Bornecrantz
2009-09-21r300g: Fix bad formatting parameters in calls to debug_printfNicolai Hähnle
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-09-21gallium debug: Add gcc printf hint to debug_printfNicolai Hähnle
This causes gcc to issue warnings when format parameters do not match up with the format string in calls to debug_printf. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-09-21nouveau: allow building modesetting_drv.soBen Skeggs
2009-09-21nouveau: drm_api create_screen()'s 'arg' argument can be NULLBen Skeggs
2009-09-21xorg/st: fixup builds against later dpms headers.Dave Airlie
2009-09-20llvmpipe: Fix lp_get_cached_tile.José Fonseca
Align coordinates to tile boundaries.
2009-09-20llvmpipe: Update tile status on flush.José Fonseca
2009-09-19llvmpipe: Respect input interpolators for the shader.Michal Krol
Cherry-picked from fb2c7b6743ba6e89f24843890fb7fcd6a09c3dbb
2009-09-18softpipe: Fix cube face selection.Michal Krol
If arx and ary are equal, we still want to choose from one of them, and not arz.
2009-09-17softpipe: Respect input interpolators for the shader.Michal Krol
2009-09-17tgsi: Scan input interpolators, too.Michal Krol
2009-09-16llvmpipe: Don't assert due to unsupported texture wrap modes.José Fonseca
Issue a warning and fallback to clamping.
2009-09-16gallium: remove incorrect 'return' stmtBrian Paul
2009-09-16gallium: Deprecate PIPE_CAP_S3TC.José Fonseca
No longer used. S3TC support is queried via pipe_screen::is_format_supported.
2009-09-16softpipe: Do not advertise Z32_UNORM as a supported format.Michal Krol
2009-09-16gdi: Integrate with llvmpipe where available.José Fonseca
2009-09-16llvmpipe: Make the code portable for MinGW.José Fonseca
2009-09-15st/xorg: fixing copies and composite shadersZack Rusin
copies were busted when src == dst. also the composite shaders were incorrectly using the fragments instead of the texture coordinate.
2009-09-15st/xorg: lots of fixesZack Rusin
fixes blending binding and copy coordinates
2009-09-15st/xorg: Brian suggested that those could be mad'sZack Rusin
optimizes the common paths
2009-09-15nv50: avoid excessive FIRE_RINGMaarten Maathuis
- And reduce RING_SPACE to 2, instead of 3.
2009-09-15nv50: use flush_notify to reduce number of relocsMaarten Maathuis
2009-09-15st/xorg: Only unreference texture on pixmap destruction, don't destroy it.Michel Dänzer
Fixes memory corruption if e.g. the driver still has references to the texture.
2009-09-15st/xorg: Explicitly check whether the driver supports the pixmap formats.Michel Dänzer
Rather than arbitrarily checking for pixmap depth < 15.
2009-09-15st/xorg: Use A8 format for depth 8 pixmaps.Michel Dänzer
The inconsistent bpp caused issues with UploadTo/DownloadFromScreen.
2009-09-15Merge branch 'mesa_7_6_branch'Brian Paul
2009-09-15gallium: Use the enum for pipe_transfer::usage.José Fonseca
2009-09-15gallium: pipe_transfer_destroy helper inline.José Fonseca
2009-09-15nv50: fix stupid thinko in emit_setChristoph Bumiller
When swapping sources 0 and 1, EQ of course does *not* become NE, etc. Introduced in 2b963f5c723401aa2646bd48eefe065cd335e280.
2009-09-15gallium: Fix pointer type casts.Michal Krol
2009-09-15nv50: let programs use the whole param bufferChristoph Bumiller
Allocation is unnecessary since all uniforms are uploaded on every constant buffer change anyway.