Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | d3d1x: don't crash on drivers not supporting vertex or geometry sampling | Luca Barbieri | 2010-09-24 | 3 | -2/+13 |
| | |||||
* | nvfx: add RGB framebuffer format support in addition to BGR | Luca Barbieri | 2010-09-24 | 2 | -0/+8 |
| | |||||
* | nvfx: allow setting NULL constant buffers | Luca Barbieri | 2010-09-24 | 1 | -1/+1 |
| | |||||
* | r600g: break alu clause earlier | Andre Maasikas | 2010-09-24 | 1 | -2/+3 |
| | | | | we still have constants to add and next int may need also 6 slots | ||||
* | d3d1x: fix linking of dxbc2tgsi | Luca Barbieri | 2010-09-24 | 1 | -1/+1 |
| | |||||
* | d3d1x: draw to the correct buffer | Luca Barbieri | 2010-09-24 | 1 | -1/+1 |
| | |||||
* | d3d1x: fix CheckMultisampleQualityLevels | Luca Barbieri | 2010-09-24 | 1 | -1/+4 |
| | |||||
* | d3d1x: don't assert on unsupported resource types | Luca Barbieri | 2010-09-24 | 1 | -3/+11 |
| | |||||
* | d3d1x: add untested support for geometry shader translation | Luca Barbieri | 2010-09-24 | 5 | -31/+75 |
| | |||||
* | d3d1x: add shader dumping | Luca Barbieri | 2010-09-24 | 2 | -0/+11 |
| | |||||
* | r600g: fix polygon mode | Dave Airlie | 2010-09-24 | 2 | -1/+20 |
| | | | | this fixes glean'pointSprite test. | ||||
* | r600g: fixup sprite coord enable. | Dave Airlie | 2010-09-24 | 1 | -1/+2 |
| | | | | this fixes piglit glsl-fs-pointcoord | ||||
* | r600g: fix typo in r700 alu emit | Dave Airlie | 2010-09-24 | 1 | -1/+1 |
| | |||||
* | r600g: fixup VP->FP output->input routing. | Dave Airlie | 2010-09-24 | 4 | -2/+19 |
| | | | | | | We need to map the TGSI semantics to each other using the hw semantic ids. this fixes glsl-kwin-blur and glsl-routing. | ||||
* | r600g: fixup tex wrapping. | Dave Airlie | 2010-09-24 | 2 | -8/+8 |
| | | | | the clamp edge/clamp cases were reversed. | ||||
* | r600g: drop index_offset parameter to index buffer translate. | Dave Airlie | 2010-09-24 | 1 | -17/+13 |
| | | | | r600 doesn't need this as we always have working index bias | ||||
* | r600g: fix draw-elements and draw-elements-base-vertex | Dave Airlie | 2010-09-24 | 3 | -6/+8 |
| | |||||
* | r600g: some more vertex formats | Dave Airlie | 2010-09-24 | 2 | -4/+11 |
| | |||||
* | r600g: add some more vertex format support. | Dave Airlie | 2010-09-24 | 7 | -11/+92 |
| | | | | adds the sscaled formats, this passes some more of the draw-vertices tests. | ||||
* | r600g: add vert support for 16/16 and 16/16/16 floats. | Dave Airlie | 2010-09-24 | 1 | -0/+3 |
| | | | | makes draw-vertices-half-float pass | ||||
* | Build r300g by default | Marek Olšák | 2010-09-24 | 1 | -4/+2 |
| | | | | NOTE: This will go to 7.9 as well. | ||||
* | r300g: fix the border color for every format other than PIPE_FORMAT_B8G8R8A8 | Marek Olšák | 2010-09-24 | 3 | -6/+84 |
| | | | | | | | TX_BORDER_COLOR should be formatted according to the texture format. Also the interaction with ARB_texture_swizzle should be fixed too. NOTE: This is a candidate for the 7.9 branch. | ||||
* | r300g: fix a copy-paste typo for logging | Marek Olšák | 2010-09-24 | 1 | -3/+3 |
| | |||||
* | r300g: make accessing map_list and buffer_handles thread-safe | Marek Olšák | 2010-09-24 | 1 | -6/+58 |
| | | | | NOTE: This is a candidate for the 7.9 branch. | ||||
* | r300g: fixup long-lived BO maps being incorrectly unmapped when flushing | Marek Olšák | 2010-09-24 | 1 | -4/+10 |
| | | | | | | Based on commit 3ddc714b20ac4e28b80c6f88d1993445fff2262c by Dave Airlie. NOTE: This is a candidate for the 7.9 branch. | ||||
* | util: make calling remove_from_list multiple times in a row safe | Marek Olšák | 2010-09-24 | 1 | -0/+2 |
| | | | | | | | | | This commit fixes an infinite loop in foreach_s if remove_from_list is used more than once on the same item with other list operations in between. NOTE: This is a candidate for the 7.9 branch because the commit "r300g: fixup long-lived BO maps being incorrectly unmapped when flushing" depends on it. | ||||
* | i915: Remove a dead if (0) block. | Eric Anholt | 2010-09-23 | 1 | -3/+0 |
| | |||||
* | intel: Remove dead intelIsTextureResident(). | Eric Anholt | 2010-09-23 | 1 | -18/+0 |
| | | | | | It always returned 1 (GL_TRUE), which is the same thing that happens when the driver hook isn't present. | ||||
* | unichrome: Mostly revert my convolution removal changes. | Eric Anholt | 2010-09-23 | 1 | -7/+9 |
| | | | | | | For this driver, the minimum pitch alignment stuff does appear to be necessary, so leave the separate munged width/height variable in place. | ||||
* | radeon: Remove copied minimum pitch alignment code. | Eric Anholt | 2010-09-23 | 1 | -12/+0 |
| | | | | | | This is already covered by radeon_mipmap_tree.c, and my convolution cleanups broke in the presence of this code. Thanks to Marek Olšák for tracking down the relevant miptree code for me. | ||||
* | intel: Replace my intel_texture_bitmap code with _mesa_meta_Bitmap. | Eric Anholt | 2010-09-23 | 1 | -180/+1 |
| | | | | | The meta code is more general than mine, and appears to pass the same sets of tests (piglit + some oglconform). | ||||
* | intel: Remove unnecessary minimum pitch alignment to 32 bytes. | Eric Anholt | 2010-09-23 | 1 | -6/+0 |
| | | | | | | This broke with the cleanup I did in convolution removal. It's unnecessary anyway since region_alloc_tiled adjusts pitches for us (64 byte alignment) | ||||
* | r300g: Always try to build libr300compiler.a | Tom Stellard | 2010-09-23 | 1 | -0/+1 |
| | | | | | | | | Make libr300compiler.a a PHONY target so that this library will always be built. This fixes the problem of libr300compiler.a not being updated when r300g is being built and r300c is not. This is a candidate for the Mesa 7.9 branch. | ||||
* | intel: Remove disabled stencil drawpixels acceleration. | Eric Anholt | 2010-09-23 | 1 | -210/+0 |
| | | | | | We still retain the fallback override for GL_STENCIL_INDEX, because the metaops version fails at oglconform. | ||||
* | r300g: fix point sprite coord. | Dave Airlie | 2010-09-24 | 1 | -3/+1 |
| | | | | | | handled elsewhere now. thanks to Droste on irc for pointing out the fix | ||||
* | r600g: initial evergreen support in new path | Jerome Glisse | 2010-09-23 | 9 | -126/+2806 |
| | | | | | | This doesn't work yet. Signed-off-by: Jerome Glisse <[email protected]> | ||||
* | r600g: Destroy the blitter. | Tilman Sauerbeck | 2010-09-23 | 1 | -0/+2 |
| | | | | Signed-off-by: Tilman Sauerbeck <[email protected]> | ||||
* | mesa: Remove EXT_convolution. | Eric Anholt | 2010-09-23 | 27 | -2210/+63 |
| | | | | More optional code. | ||||
* | mesa: Remove SGI_color_matrix. | Eric Anholt | 2010-09-23 | 16 | -334/+5 |
| | | | | Another optional ARB_imaging subset extension. | ||||
* | mesa: Remove SGI_color_table. | Eric Anholt | 2010-09-23 | 10 | -316/+4 |
| | | | | Another optional ARB_imaging subset extension. | ||||
* | mesa: Remove EXT_histogram. | Eric Anholt | 2010-09-23 | 13 | -1166/+43 |
| | | | | This has always been optional, and not useful. | ||||
* | mesa: Remove the non-required ARB_imaging extension. | Eric Anholt | 2010-09-23 | 6 | -22/+15 |
| | | | | | | | Many of the EXT_ extensions in the subset have significant code overhead with no users. It is not a required part of GL -- though text describing the extension is part of the core spec since 1.2, it is always conditional on the ARB_imaging extension. | ||||
* | d3d1x: obliterate IDL parameter names from d3d10.idl from Wine too | Luca Barbieri | 2010-09-23 | 1 | -291/+291 |
| | |||||
* | d3d1x: add autogenerated files as prerequisites, so make builds them | Luca Barbieri | 2010-09-23 | 1 | -1/+3 |
| | |||||
* | d3d1x: fix build without system EGL/egl.h | Luca Barbieri | 2010-09-23 | 1 | -1/+1 |
| | |||||
* | d3d1x: add missing guid.cpp | Luca Barbieri | 2010-09-23 | 1 | -0/+6 |
| | |||||
* | d3d1x: flush properly | Luca Barbieri | 2010-09-23 | 1 | -1/+1 |
| | |||||
* | d3d1x: remove another include specstrings.h | Luca Barbieri | 2010-09-23 | 1 | -1/+0 |
| | |||||
* | d3d1x: flush the pipe context when presenting | Luca Barbieri | 2010-09-23 | 1 | -0/+2 |
| | |||||
* | d3d1x: remove specstrings.h include | Luca Barbieri | 2010-09-23 | 1 | -3/+0 |
| |