mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-25 00:09:54 +00: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
@ -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) {
|
||||
ctx->Extensions.ARB_robust_buffer_access_behavior = true;
|
||||
}
|
||||
@ -391,7 +395,6 @@ intelInitExtensions(struct gl_context *ctx)
|
||||
|
||||
if (brw->gen >= 8) {
|
||||
ctx->Extensions.ARB_shader_precision = true;
|
||||
ctx->Extensions.ARB_stencil_texturing = true;
|
||||
ctx->Extensions.ARB_texture_stencil8 = true;
|
||||
ctx->Extensions.ARB_gpu_shader_fp64 = true;
|
||||
ctx->Extensions.ARB_vertex_attrib_64bit = true;
|
||||
|
Loading…
Reference in New Issue
Block a user