diff options
author | Eric Anholt <[email protected]> | 2013-06-05 14:27:34 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-06-07 12:55:06 -0700 |
commit | 11ace8a8272983a2d0bccae0d17537bc82763f54 (patch) | |
tree | 858f912e32fb172a9782da5e2c20747b306730a6 /src/mesa/main/get.c | |
parent | fa8cefa892bd12ae9719927ee159cf48776f68d8 (diff) |
mesa: Expose texel offset limits in GLES3.
Part of fixing piglit OpenGL ES 3.0/minmax.
v2: s/_gles3/_es3/ in extra name, for consistency (review by Matt).
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]> (v1)
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r-- | src/mesa/main/get.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 593c75be2d2..223d885e222 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -295,8 +295,9 @@ static const int extra_EXT_texture_integer_and_new_buffers[] = { EXTRA_END }; -static const int extra_GLSL_130[] = { +static const int extra_GLSL_130_es3[] = { EXTRA_GLSL_130, + EXTRA_API_ES3, EXTRA_END }; |