diff options
author | Tapani Pälli <[email protected]> | 2015-08-21 09:40:11 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2015-08-27 10:53:15 +0300 |
commit | b9101b14439836c337abeffafc4b058a8d80d3ef (patch) | |
tree | 26668558d8281e8d74d2152211b74eb875948edb /src/mesa/main/extensions.c | |
parent | f4280b740d835d5c62b330e2fd563eeb119005b1 (diff) |
mesa: Add extension enable for OES_texture_storage_multisample_2d_array
v2: use ARB_texture_multisample bit to enable extension
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Marta Lofstedt <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 03303ac2650..a57d5baeafd 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -336,6 +336,7 @@ static const struct extension extension_table[] = { { "GL_OES_texture_half_float", o(OES_texture_half_float), ES2, 2005 }, { "GL_OES_texture_half_float_linear", o(OES_texture_half_float_linear), ES2, 2005 }, { "GL_OES_texture_mirrored_repeat", o(dummy_true), ES1, 2005 }, + { "GL_OES_texture_storage_multisample_2d_array",o(ARB_texture_multisample), ES31, 2014 }, { "GL_OES_texture_npot", o(ARB_texture_non_power_of_two), ES1 | ES2, 2005 }, { "GL_OES_vertex_array_object", o(dummy_true), ES1 | ES2, 2010 }, |