mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 15:30:14 +01:00
i965: Enable ARB_stencil_texturing for Haswell
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
751682434e
commit
f20f616324
1 changed files with 4 additions and 1 deletions
|
|
@ -373,6 +373,10 @@ intelInitExtensions(struct gl_context *ctx)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (brw->gen >= 8 || brw->is_haswell) {
|
||||||
|
ctx->Extensions.ARB_stencil_texturing = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (brw->gen >= 8 || brw->is_haswell || brw->is_baytrail) {
|
if (brw->gen >= 8 || brw->is_haswell || brw->is_baytrail) {
|
||||||
ctx->Extensions.ARB_robust_buffer_access_behavior = true;
|
ctx->Extensions.ARB_robust_buffer_access_behavior = true;
|
||||||
}
|
}
|
||||||
|
|
@ -391,7 +395,6 @@ intelInitExtensions(struct gl_context *ctx)
|
||||||
|
|
||||||
if (brw->gen >= 8) {
|
if (brw->gen >= 8) {
|
||||||
ctx->Extensions.ARB_shader_precision = true;
|
ctx->Extensions.ARB_shader_precision = true;
|
||||||
ctx->Extensions.ARB_stencil_texturing = true;
|
|
||||||
ctx->Extensions.ARB_texture_stencil8 = true;
|
ctx->Extensions.ARB_texture_stencil8 = true;
|
||||||
ctx->Extensions.ARB_gpu_shader_fp64 = true;
|
ctx->Extensions.ARB_gpu_shader_fp64 = true;
|
||||||
ctx->Extensions.ARB_vertex_attrib_64bit = true;
|
ctx->Extensions.ARB_vertex_attrib_64bit = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue