diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2016-05-09 11:11:24 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2016-05-10 14:29:18 -0700 |
commit | f8960041e1bee51934ea2152a84f40038cf4c808 (patch) | |
tree | 2d8e4bd8cf7d46555e1d2b8c1fa8dcaad586110f | |
parent | d9c282648afeb58553e548d2728a9cf82f2eacb2 (diff) |
tests: Silence unused variable warning
vs and fs are unused in this function.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
-rw-r--r-- | tests/spec/arb_gpu_shader_fp64/execution/gs-getuniformdv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/spec/arb_gpu_shader_fp64/execution/gs-getuniformdv.c b/tests/spec/arb_gpu_shader_fp64/execution/gs-getuniformdv.c index 8a4748808..9179c804e 100644 --- a/tests/spec/arb_gpu_shader_fp64/execution/gs-getuniformdv.c +++ b/tests/spec/arb_gpu_shader_fp64/execution/gs-getuniformdv.c @@ -214,7 +214,7 @@ void piglit_init(int argc, char **argv) { bool piglit_pass = true; - GLuint vs, fs, prog; + GLuint prog; GLint numUniforms, i; GLint loc; enum uniform_enum u; |