Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-17 | Merge remote branch 'origin/master' into lp-setup-llvm | Keith Whitwell | |
Conflicts: src/gallium/drivers/llvmpipe/lp_setup_coef.c src/gallium/drivers/llvmpipe/lp_setup_coef.h src/gallium/drivers/llvmpipe/lp_setup_coef_intrin.c src/gallium/drivers/llvmpipe/lp_setup_point.c src/gallium/drivers/llvmpipe/lp_setup_tri.c src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_fs.h | |||
2010-10-06 | retrace: Handle clear_render_target and clear_depth_stencil. | José Fonseca | |
2010-09-29 | python/retrace: Handle set_index_buffer and draw_vbo. | José Fonseca | |
2010-09-22 | util: Flush stdout on util_format. | José Fonseca | |
2010-09-20 | python/tests: Fixed tri.py for API and TGSI syntax changes. | Tilman Sauerbeck | |
Signed-off-by: Tilman Sauerbeck <tilman@code-monkey.de> | |||
2010-09-18 | graw: add frag-face shader | Keith Whitwell | |
2010-09-11 | Add a test for the KIL opcode | Alex Corscadden | |
This is a simple test for the KIL opcode. It should render a 6 sided figure with a colored interior. | |||
2010-09-09 | graw: added test for finding shader mem leaks | Brian Paul | |
2010-09-09 | graw: emit warnings when context/surface creation failes | Brian Paul | |
2010-09-09 | graw: fix array size, indentation, | Brian Paul | |
2010-09-05 | util: Helper function to determined whether two formats can be memcpy'ed. | José Fonseca | |
These are the non-trivial conversions that this function recognizes, which was produced by u_format_compatible_test.c: b8g8r8a8_unorm -> b8g8r8x8_unorm a8r8g8b8_unorm -> x8r8g8b8_unorm b5g5r5a1_unorm -> b5g5r5x1_unorm b4g4r4a4_unorm -> b4g4r4x4_unorm l8_unorm -> r8_unorm i8_unorm -> l8_unorm i8_unorm -> a8_unorm i8_unorm -> r8_unorm l16_unorm -> r16_unorm z24_unorm_s8_uscaled -> z24x8_unorm s8_uscaled_z24_unorm -> x8z24_unorm r8g8b8a8_unorm -> r8g8b8x8_unorm a8b8g8r8_srgb -> x8b8g8r8_srgb b8g8r8a8_srgb -> b8g8r8x8_srgb a8r8g8b8_srgb -> x8r8g8b8_srgb a8b8g8r8_unorm -> x8b8g8r8_unorm r10g10b10a2_uscaled -> r10g10b10x2_uscaled r10sg10sb10sa2u_norm -> r10g10b10x2_snorm State trackers and pipe drivers should be updated to take advantage of this knowledge, e.g., in surface_copy. | |||
2010-08-26 | graw: Undo late loading of graw drivers. | José Fonseca | |
Keith prefers a clean separation between graw applications and implementations, where apps do not link libgallium.a but instead get all functionality they need via graw interface. Although this is not incompatible with late loading of graw drivers, it it would make it very hard to maintain, as wrappers for every utility symbol exposed in graw would have to be written or generated somehow. | |||
2010-08-26 | graw: Dynamically load graw libraries. | José Fonseca | |
This allows to build multiple graws libs simultaneously and avoid unnecessary rebuilds of the tests. Also remove graw_util.c from inside the graw implementation -- it was only being provided by one implementation, and graw tests were linking against gallium anyway. | |||
2010-08-20 | gallium: make all checks for PIPE_TEXTURE_2D check for PIPE_TEXTURE_RECT too | Luca Barbieri | |
Searched for them with: git grep -E '[!=]=.*PIPE_TEXTURE_2D|PIPE_TEXTURE_2D.*[!=]=|case.*PIPE_TEXTURE_2D' Behavior hasn't been changed. | |||
2010-08-12 | translate_test: Fix compilation with MSVC. | Vinson Lee | |
2010-08-12 | translate_test: fix compilation on non-POSIX platforms | Luca Barbieri | |
Use a kludgy function based on rand() instead of drand48() | |||
2010-08-12 | translate_test: improve | Luca Barbieri | |
1. Generate random data specifically for float and doubles, so that they end up in [0, 1] range 2. Don't test useless conversions like SCALED <-> NORM 3. Poison the buffers before testing | |||
2010-08-11 | scons: Fix freebsd8 build. | Vinson Lee | |
2010-08-11 | translate_test: fix segfault on x86-64 | Luca Barbieri | |
2010-08-11 | translate_test: fix, reindent, and improve | Luca Barbieri | |
1. Fix the segfault due to the reverted commit using the new interface 2. Reindent to Mesa 3 spaces style 3. Improve output and return success/failure with error code 4. Add much better support for testing translate_sse | |||
2010-08-11 | translate: Add translate_test.c to SCons. | Vinson Lee | |
This is a follow-up to commit 945e38c73b46afc12b0655f9fc8200f216a8f8c1, which added translate_test.c to make. | |||
2010-08-11 | translate: add testsuite | Luca Barbieri | |
Currently only checks all possible format conversions, and doesn't attempt to test whether multiple buffers/elements or indices work. | |||
2010-07-29 | graw/tests: Use pipe_context::draw_vbo. | Chia-I Wu | |
The other drawing variants such as draw_arrays or draw_elements_instanced were removed. This fixes fdo bug #29287. | |||
2010-07-27 | scons: Fix sunos5 build. | Vinson Lee | |
2010-07-20 | graw/tests: pass -e option to test draw_elements_instanced() | Brian Paul | |
2010-07-15 | graw: new tri-instanced.c program to test instanced drawing | Brian Paul | |
2010-07-04 | gallium: Make trivial examples use target helpers | Jakob Bornecrantz | |
2010-07-04 | gallium: Fix compilation of trivial quad-tex | Jakob Bornecrantz | |
2010-06-18 | graw: add two examples using new register files | Zack Rusin | |
2010-06-16 | graw: remove wrong test | Zack Rusin | |
2010-06-16 | graw: add a gs test for non-sequential inputs | Zack Rusin | |
2010-06-15 | graw: test multiple cb's in geometry shaders | Zack Rusin | |
2010-06-15 | graw: fix setup for multiple constant buffers | Zack Rusin | |
2010-06-14 | graw: small fixups for the gs examples | Zack Rusin | |
2010-06-10 | gs: give our test an option of rendering a strip | Zack Rusin | |
2010-06-09 | graw: add a multiple primitive geometry shader test | Zack Rusin | |
2010-06-09 | geometry shaders: make gs work with changable primitives and variable number ↵ | Zack Rusin | |
of vertices lots and lots of fixes for geometry shaders. in particular now we work when the gs emits a different primitive than the one the pipeline was started with and also we work when gs emits more vertices than would fit in the original buffer. | |||
2010-06-07 | graw: Fix file handle leaks. | Vinson Lee | |
2010-06-07 | graw: Remove unnecessary headers. | Vinson Lee | |
2010-06-07 | graw: Add gallium library to SCons build. | Vinson Lee | |
Fixes MSVC SCons build. | |||
2010-06-07 | graw: add gs-test.c and some simple geometry shader examples | Keith Whitwell | |
2010-06-07 | graw: trivial geometry shader test | Keith Whitwell | |
2010-06-07 | graw: add symlinks to shader test directories | Keith Whitwell | |
2010-06-07 | graw: remove references to unistd.h | Keith Whitwell | |
2010-06-07 | tests/graw: missing file tri.c | Keith Whitwell | |
2010-06-07 | regress: remove interpolation and semantic info from vs inputs | Keith Whitwell | |
2010-06-07 | test/graw: add vp-test | Keith Whitwell | |
2010-06-07 | tests/graw: add fp-test | Keith Whitwell | |
2010-05-30 | python/retrace: Interpret resource_copy_region. | José Fonseca | |
2010-05-21 | Merge branch 'gallium-msaa' | Roland Scheidegger | |
Conflicts: src/mesa/state_tracker/st_gen_mipmap.c src/mesa/state_tracker/st_texture.c |