- 29 Jan, 2011 2 commits
-
-
Marek Olšák authored
-
Marek Olšák authored
-
- 28 Jan, 2011 3 commits
-
-
Vinson Lee authored
-
Chad Versace authored
Consequence of previous commit: Revert "glsl_parser_test: Add config opt 'override_extensions'"
-
Chad Versace authored
This reverts commit 3fd587bc. The email that precipitated the revert: On 01/27/2011 11:52 AM, Ian Romanick wrote: I don't understand why it is useful / necessary to have this in the test. If you're trying to test driver features while they're being implemented, you can / should do this by hand. If you're not trying to test driver features while they're being implemented, you don't any this to happen behind your back.
-
- 27 Jan, 2011 3 commits
-
-
Christoph Bumiller authored
This is likely related to Mesa bugzilla #33197 and piglit test glsl-vs-post-increment-01. Christoph's original test was a stand-alone executable, but it was converted to use shader_runner by Ian Romanick. Signed-off-by:
Ian Romanick <ian.d.romanick@intel.com>
-
Chad Versace authored
vs-redeclaration-01.frag -> vs-redeclaration-01.vert
-
Vinson Lee authored
Reproduces Mesa FDO bug #33565.
-
- 26 Jan, 2011 5 commits
-
-
Ian Romanick authored
It's just been one of those days...
-
Ian Romanick authored
Also add some quotations from the spec to justify the behavior tested.
-
Vinson Lee authored
Reproduces Mesa bug #33507.
-
Ian Romanick authored
These are related to Mesa bugzilla #33197.
-
Vinson Lee authored
This test triggers a crash in the AMD Catalyst 10.12 GLSL compiler.
-
- 25 Jan, 2011 8 commits
-
-
Marek Olšák authored
-
Chad Versace authored
-
Chad Versace authored
The option manually enables or disables extensions via the environment variable MESA_EXTENSION_OVERRIDE.
-
Chad Versace authored
... and update all test file using the option. The new name makes clear what the option does.
-
Chad Versace authored
Replace functional, stateless style with more traditional stateful style. This does not alter the public behavior of GLSLParserTest nor Piglit test results. Storytime: When I initially wrote GLSLParserTest, I attempted to use a functional style in which the class maintained a minimal amount of state. Now that I have a need to modify the class, I realize how unsuited the stateless style is to Python. I atone for my function sins :)
-
Ian Romanick authored
These reproduce several bugs related to Mesa bugzilla #33219.
-
Vinson Lee authored
Catalyst 10.12 crashes on 4-dimensional arrays.
-
Brian Paul authored
-
- 24 Jan, 2011 2 commits
-
-
Vinson Lee authored
Array sizes greater than 256 trigger an assertion in the Mesa 7.8 GLSL compiler.
-
Marek Olšák authored
-
- 23 Jan, 2011 1 commit
-
-
Tom Stellard authored
-
- 22 Jan, 2011 5 commits
-
-
Dave Airlie authored
-
Brian Paul authored
In case glx.h / glxext.h aren't new enough.
-
Ian Romanick authored
Interestingly, only invalid-logic-not-06.vert reproduces Mesa bug #33314.
-
Ian Romanick authored
This reproduces Mesa bug #33308. The crazy thing is that this is *NOT* illegal. The return type is void, and the return "value" has the type void. Madness.
-
Ian Romanick authored
invalid-equality-04.vert reproduces Mesa bugzilla #33303.
-
- 21 Jan, 2011 4 commits
-
-
Chad Versace authored
In GLSL 1.00, 1.10, and 1.20, check that vertex shader attributes and fragment shader varyings cannot be written to. In GLSL 1.30, check that global variables declared 'in' cannot be written to.
-
Dave Airlie authored
forgot to disable texture after drawing the FBO.
-
Jian Zhao authored
-
Brian Paul authored
-
- 20 Jan, 2011 5 commits
-
-
Ian Romanick authored
-
Ian Romanick authored
-
U. Artie Eoff authored
made TestResults::write() thread-safe by writing results in one chunk to the file so that when threaded tests are implemented there will be no interleaving. Signed-off-by:
Ian Romanick <ian.d.romanick@intel.com>
-
Ian Romanick authored
-
Ian Romanick authored
These tests originally wanted the FBO to be incomplete. However, this just verified incorrect behavior in another vendor's driver. The spec says that all of these cases should produce a complete FBO. The format of the texture was also change from RGB to RGBA. This should prevent FRAMEBUFFER_UNSUPPORTED on some drivers.
-
- 18 Jan, 2011 2 commits
-
-
Chad Versace authored
In test precision-global-01.frag, a global variable was declared with the 'in' qualifier, which caused the test to unintentionally fail. Fix the test by changing the qualifier to 'varying'.
-
Chad Versace authored
-