summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cell: Use util_format_name().José Fonseca2010-02-141-2/+3
|
* llvmpipe: Use util_format_name().José Fonseca2010-02-141-2/+2
|
* nv: Use util_format_name().José Fonseca2010-02-146-10/+17
|
* r300g: Use util_format_name().José Fonseca2010-02-144-12/+13
|
* trace: Use util_format_name().José Fonseca2010-02-141-1/+2
|
* xorg: Use util_format_name().José Fonseca2010-02-141-6/+7
|
* mesa: Use util_format_name().José Fonseca2010-02-142-2/+2
|
* util: Add pf_name() replacement: util_format_name().José Fonseca2010-02-141-0/+13
|
* makefiles: Don't complaint about changing configs if the same one is reselected.José Fonseca2010-02-141-4/+7
| | | | | Otherwise it creates unnecessary pain when automating builds in a build server/farm.
* python/retrace: Interpret pipe_screen::context_create().José Fonseca2010-02-141-0/+4
|
* trace: Fix generated XML.José Fonseca2010-02-143-22/+9
|
* python: Tell swig how to index per-rendertarget blend state.José Fonseca2010-02-141-0/+14
|
* python: Pass p_format.h as-is to swig now that it has no inlines.José Fonseca2010-02-142-155/+1
|
* progs/gallium/python: New home for python statetracker scripts.José Fonseca2010-02-1479-2/+2
|
* glut: Silence uninitialized variable warning.Vinson Lee2010-02-141-0/+1
|
* r300: Silence uninitialized variable warning.Vinson Lee2010-02-141-1/+1
|
* r600: Silence uninitialized variable warning.Vinson Lee2010-02-141-1/+1
|
* glu/sgi: Initialize members of class Curvelist.Vinson Lee2010-02-131-0/+2
|
* llvmpipe: Silence uninitialized variable warning.Vinson Lee2010-02-131-0/+2
|
* softpipe: Silence uninitialized variable warnings.Vinson Lee2010-02-131-0/+3
|
* st/python: fix build error after gallium-screen-context mergeMarek Olšák2010-02-141-1/+1
|
* r300g: fix scons buildMarek Olšák2010-02-142-3/+3
|
* softpipe: fix broken cubemap / mipmap selection codeBrian Paul2010-02-131-28/+71
| | | | | | | | | | | | | | | | | | | This is a quick-fix for the time being... The per-face mipmap LOD computation was invalid at cube edges. In mip_filter_nearest/linear() we were trying to compute LOD using texcoords that were sometimes indexes into different cube faces. The subtraction used to compute the partial derivatives basically gave random values, so the LOD was unpredictable. This fix simply uses the same cube face for all four pixels in the quad. The per- face texcoords all reference the same cube face so the partial deriviates are computed properly. A more elaborate fix would involve computing the LOD at the same time as we choose the cube faces. But for now, this solution works well and allows the piglit/cubemap test to pass. (cherry picked from commit 1ff9cd5079b095d7050edb8dc6a7e5b8cad36e1e)
* mesa: Fix compiler warningsKarl Schultz2010-02-1316-43/+43
| | | | | Add explicit casts, fix constant types, fix variable types. Fixes about 340 warnings in MSFT Visual Studio.
* docs: document GL_ARB_fragment_coord_conventionsBrian Paul2010-02-131-0/+1
|
* mesa: enable GL_ARB_fragment_coord_conventions for sw driversBrian Paul2010-02-131-2/+2
| | | | | This extension is now implemented in the GLSL compiler so it can be enabled by other drivers where applicable.
* glsl: implement layout qualifiersBrian Paul2010-02-131-19/+110
| | | | | | | | | | | | | For GL_ARB_fragment_coord_conventions. This only applies to gl_FragCoord and controls pixel center origin and pixel center integer. For example: layout (origin_upper_left, pixel_center_integer) varying vec4 gl_FragCoord; This features introduces the idea of re-declaring variables with a changed type. This may also apply to arrays in some cases but that's not implemented at this time.
* glsl: added type layout field and new type compare funcBrian Paul2010-02-132-2/+45
| | | | | Note: because of a weird dependency checking bug, a 'make clean' may be needed before recompiling.
* mesa: copy frag coord layout fields tooBrian Paul2010-02-131-0/+2
|
* glsl/cl: implement parsing for layout qualifiersBrian Paul2010-02-131-4/+74
| | | | For GL_ARB_fragment_coord_conventions support.
* glsl/pp: fix incorrect extension enable flag for warn modeBrian Paul2010-02-131-1/+1
|
* mesa: Export GL_EXT_texture_cube_map.José Fonseca2010-02-131-0/+1
| | | | Still used by some applications.
* wgl: Implement wglSwapMultipleBuffers.José Fonseca2010-02-134-2/+31
|
* svga: Fix texture border color.José Fonseca2010-02-131-10/+6
| | | | Also opposite ordering.
* r300g: do not invalidate texture caches when only sampler state is changedMarek Olšák2010-02-131-2/+3
|
* r300g: cleanup the emission of RS block stateMarek Olšák2010-02-132-9/+13
| | | | Emit as few regs as possible.
* r300g: cleanup the emission of framebuffer stateMarek Olšák2010-02-132-11/+3
| | | | Some emits are not needed anymore.
* r300g: disable independent blend enablesMarek Olšák2010-02-132-7/+2
| | | | Not supported by r300.
* r300g: emit INDEPENDENT_COLORFORMAT_ENABLE only on r5xxMarek Olšák2010-02-131-2/+1
|
* mesa: s/abort/sys.exit/Vinson Lee2010-02-131-1/+2
| | | | Python does not have the function abort.
* mesa: Remove unnecessary header.Vinson Lee2010-02-122-2/+0
|
* i965: Remove unnecessary headers.Vinson Lee2010-02-121-8/+0
|
* st/xlib: Remove unnecessary header.Vinson Lee2010-02-121-1/+0
|
* dri: Remove unnecessary headers.Vinson Lee2010-02-123-16/+0
|
* mesa: Remove unnecessary headers.Vinson Lee2010-02-122-3/+0
|
* svga: Silence uninitialized variable warning.Vinson Lee2010-02-121-1/+1
|
* util: Properly init memory for blitter CSOs.Corbin Simpson2010-02-121-8/+5
| | | | Fixes misrender on r300g.
* st/mesa: restore draw rasterization stage after rasterposBrian Paul2010-02-121-0/+8
| | | | | | | This fixes invalid calls to rastpos_point/line/tri() that can occur when glRasterPos() is called while in feedback or selection mode. (cherry picked from commit b3c7dc6ff232eb4c5ff6b0ddcfa90bcb56f78df1)
* scons: Undo bad merge from cherry-pick.José Fonseca2010-02-121-2/+0
|
* svga: A few more tweaks to blend color state emission.José Fonseca2010-02-122-10/+8
|