i965: expose AMD_vertex_shader_viewport_index on gen7+

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
This commit is contained in:
Ilia Mirkin 2014-07-02 15:49:39 -04:00
parent df61553070
commit 7666a9f4ae
2 changed files with 4 additions and 1 deletions

View File

@ -55,6 +55,7 @@ Note: some of the new features are only available with certain drivers.
<li>GL_ARB_viewport_array on nvc0</li>
<li>GL_ARB_seamless_cubemap_per_texture on i965, llvmpipe, nvc0, r600, radeonsi, softpipe</li>
<li>GL_ARB_fragment_layer_viewport on nv50, nvc0, llvmpipe, r600</li>
<li>GL_AMD_vertex_shader_viewport_index on i965/gen7+</li>
</ul>

View File

@ -297,8 +297,10 @@ intelInitExtensions(struct gl_context *ctx)
/* Only enable this in core profile because other parts of Mesa behave
* slightly differently when the extension is enabled.
*/
if (ctx->API == API_OPENGL_CORE)
if (ctx->API == API_OPENGL_CORE) {
ctx->Extensions.ARB_viewport_array = true;
ctx->Extensions.AMD_vertex_shader_viewport_index = true;
}
}
if (brw->gen >= 8) {