diff options
author | Lionel Landwerlin <[email protected]> | 2016-12-08 12:11:43 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2016-12-13 16:27:59 +0000 |
commit | 60330d730bc82fb602fd27a189970c91a55f3920 (patch) | |
tree | e41347cf1c288daab8155048b5a3d9c7d2de7a4a /src/mesa/main/get.c | |
parent | d4b753a50bfb474b13cdfc12ab3faf9058eb27ee (diff) |
main: add INTEL_conservative_rasterization enum query support
v2: add extra parameter (Ilia)
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r-- | src/mesa/main/get.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 5f5e76a4c4e..ba02cb2837f 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -436,6 +436,11 @@ static const int extra_KHR_robustness_or_GL[] = { EXTRA_END }; +static const int extra_INTEL_conservative_rasterization[] = { + EXT(INTEL_conservative_rasterization), + EXTRA_END +}; + EXTRA_EXT(ARB_texture_cube_map); EXTRA_EXT(EXT_texture_array); EXTRA_EXT(NV_fog_distance); |