diff options
author | Francisco Jerez <currojerez@riseup.net> | 2014-12-04 12:49:42 +0200 |
---|---|---|
committer | Francisco Jerez <currojerez@riseup.net> | 2015-01-31 18:28:49 +0200 |
commit | d7624501aeb715a7b0e876bc1550ce40746a72ef (patch) | |
tree | acd125219b36bc009111f847ecf76b3eeff7cf81 /tests/all.py | |
parent | ae9e89c75102beebb71180fd7cd4218a61b3a6e4 (diff) |
arb_shader_image_load_store: Import early_fragment_tests test.
The extension defines an input layout qualifier that allows the
application to force early fragment tests for a specified shader
program. This has several consequences that are verified by this
test, including that the fragment shader is guaranteed not to be
executed if the depth test fails, that the depth value computed by the
fragment shader is ignored, and that fragments discarded during or
after fragment shader execution are counted by occlusion queries.
Diffstat (limited to 'tests/all.py')
-rw-r--r-- | tests/all.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/all.py b/tests/all.py index a21ff5eb0..7444b1530 100644 --- a/tests/all.py +++ b/tests/all.py @@ -4430,6 +4430,7 @@ arb_shader_image_load_store['atomicity'] = PiglitGLTest(['arb_shader_image_load_ arb_shader_image_load_store['bitcast'] = PiglitGLTest(['arb_shader_image_load_store-bitcast'], run_concurrent=True) arb_shader_image_load_store['coherency'] = PiglitGLTest(['arb_shader_image_load_store-coherency'], run_concurrent=True) arb_shader_image_load_store['dead-fragments'] = PiglitGLTest(['arb_shader_image_load_store-dead-fragments'], run_concurrent=True) +arb_shader_image_load_store['early-z'] = PiglitGLTest(['arb_shader_image_load_store-early-z'], run_concurrent=True) profile.tests['hiz'] = hiz profile.tests['fast_color_clear'] = fast_color_clear |