diff options
author | Chris Forbes <[email protected]> | 2014-01-25 18:13:01 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2014-06-22 16:52:13 +1200 |
commit | 51c82bddefb5db15ef1a6c3fa5d7a12e3161100a (patch) | |
tree | b8ccc597011720486224bd780bffbfff15c96808 /src/mesa/main/extensions.c | |
parent | 22448c819de017b63a84ce26ef4cadf23293d0e1 (diff) |
mesa: Add extension plumbing for ARB_fragment_layer_viewport
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Ian Romanick <[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 976abe12d27..25e3dab4f2a 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -107,6 +107,7 @@ static const struct extension extension_table[] = { { "GL_ARB_explicit_attrib_location", o(ARB_explicit_attrib_location), GL, 2009 }, { "GL_ARB_explicit_uniform_location", o(ARB_explicit_uniform_location), GL, 2012 }, { "GL_ARB_fragment_coord_conventions", o(ARB_fragment_coord_conventions), GL, 2009 }, + { "GL_ARB_fragment_layer_viewport", o(ARB_fragment_layer_viewport), GLC, 2012 }, { "GL_ARB_fragment_program", o(ARB_fragment_program), GLL, 2002 }, { "GL_ARB_fragment_program_shadow", o(ARB_fragment_program_shadow), GLL, 2003 }, { "GL_ARB_fragment_shader", o(ARB_fragment_shader), GL, 2002 }, |