diff options
author | Ilia Mirkin <[email protected]> | 2016-08-28 19:21:12 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-08-28 21:38:55 -0400 |
commit | 05b37e20dea5fc4d920bbf9c28bffc60c4731330 (patch) | |
tree | 1cacc3e1b196441e54e046e12466d0faaa86a7d0 | |
parent | 09dafb96301415df000e212925245f8014ec2d11 (diff) |
main: add missing EXTRA_END in OES_sample_variables get check
Fixes: 3002296cb68 (mesa: add GL_OES_shader_multisample_interpolation support)
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Cc: <[email protected]>
-rw-r--r-- | src/mesa/main/get.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 0aa9065764b..def2ca55986 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -411,6 +411,7 @@ static const int extra_ARB_gpu_shader5_or_oes_geometry_shader[] = { static const int extra_ARB_gpu_shader5_or_OES_sample_variables[] = { EXT(ARB_gpu_shader5), EXT(OES_sample_variables), + EXTRA_END }; EXTRA_EXT(ARB_texture_cube_map); |