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:
@@ -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_viewport_array on nvc0</li>
|
||||||
<li>GL_ARB_seamless_cubemap_per_texture on i965, llvmpipe, nvc0, r600, radeonsi, softpipe</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_ARB_fragment_layer_viewport on nv50, nvc0, llvmpipe, r600</li>
|
||||||
|
<li>GL_AMD_vertex_shader_viewport_index on i965/gen7+</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
@@ -297,8 +297,10 @@ intelInitExtensions(struct gl_context *ctx)
|
|||||||
/* Only enable this in core profile because other parts of Mesa behave
|
/* Only enable this in core profile because other parts of Mesa behave
|
||||||
* slightly differently when the extension is enabled.
|
* 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.ARB_viewport_array = true;
|
||||||
|
ctx->Extensions.AMD_vertex_shader_viewport_index = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (brw->gen >= 8) {
|
if (brw->gen >= 8) {
|
||||||
|
Reference in New Issue
Block a user