diff options
author | Eric Anholt <[email protected]> | 2013-06-05 14:37:36 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-06-07 12:55:06 -0700 |
commit | 7500ad23ebd5b61fba01490ce561ba24ee4a6947 (patch) | |
tree | 516a68602d06dc04a67f57c83b6bf2e12419d82f /src/mesa/main/get.c | |
parent | fd27e82dedd879e9111de62e211101199c24d629 (diff) |
mesa: Expose texture array getters on 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 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 223d885e222..b7462e77f91 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -337,6 +337,12 @@ static const int extra_EXT_framebuffer_sRGB_and_new_buffers[] = { EXTRA_END }; +static const int extra_MESA_texture_array_es3[] = { + EXT(MESA_texture_array), + EXTRA_API_ES3, + EXTRA_END +}; + EXTRA_EXT(ARB_texture_cube_map); EXTRA_EXT(MESA_texture_array); EXTRA_EXT2(EXT_secondary_color, ARB_vertex_program); |