diff options
author | Anuj Phogat <[email protected]> | 2016-09-28 11:39:39 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2016-10-04 13:20:34 -0700 |
commit | 0a7691ee62b220a19f9665a18520e13a8e646717 (patch) | |
tree | c582e3c9c59cb9bd7ca1d5cb0dd896330e107e74 /src/mesa/main/get.c | |
parent | 2c7e1165faa30f0b859090900bcc422a33710f22 (diff) |
mesa: Enable enums for OES_viewport_array
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
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 e7ebc7f6193..64a4b0e6ccf 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -405,6 +405,12 @@ static const int extra_ARB_viewport_array_or_oes_geometry_shader[] = { EXTRA_END }; +static const int extra_ARB_viewport_array_or_oes_viewport_array[] = { + EXT(ARB_viewport_array), + EXT(OES_viewport_array), + EXTRA_END +}; + static const int extra_ARB_gpu_shader5_or_oes_geometry_shader[] = { EXT(ARB_gpu_shader5), EXTRA_EXT_ES_GS, |