diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2015-07-30 09:23:58 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2015-07-30 10:10:42 -0700 |
commit | d2e8b173c83ca87791199882265c85d8e0d60238 (patch) | |
tree | 3fc5ba2c8ea3648bc9da5b026e4f79fea61e0a7e | |
parent | 307456b61e15845958d1092a02d9b9fb23bb03a6 (diff) |
tests: add missing requirements to two arb_arrays_of_arrays tests
These two tests currently fail on i965 because they don't check for the
proper requirements. This patch adds them.
cc: Timothy Arceri <t_arceri@yahoo.com.au>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-const-index.shader_test b/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-const-index.shader_test index 0eeb7ee68..a87724830 100644 --- a/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-const-index.shader_test +++ b/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-const-index.shader_test @@ -4,12 +4,14 @@ [require] GLSL >= 1.50 GL_ARB_gpu_shader5 +GL_ARB_arrays_of_arrays [vertex shader passthrough] [fragment shader] #version 150 #extension GL_ARB_gpu_shader5: require +#extension GL_ARB_arrays_of_arrays: require struct S { sampler2D tex[2]; diff --git a/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-sampler-non-const-index.shader_test b/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-sampler-non-const-index.shader_test index d8edf656c..248b81283 100644 --- a/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-sampler-non-const-index.shader_test +++ b/tests/spec/arb_arrays_of_arrays/execution/sampler/fs-struct-non-const-index-sampler-non-const-index.shader_test @@ -4,12 +4,14 @@ [require] GLSL >= 1.50 GL_ARB_gpu_shader5 +GL_ARB_arrays_of_arrays [vertex shader passthrough] [fragment shader] #version 150 #extension GL_ARB_gpu_shader5: require +#extension GL_ARB_arrays_of_arrays: require struct S { sampler2D tex[2]; |