mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-28 10:00:46 +00:00
i965/hsw: Enable ARB_ES3_1_compatibility extension
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Acked-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
This commit is contained in:
parent
b1b7e921f8
commit
5e76baa2ad
@ -208,7 +208,7 @@ GL 4.4, GLSL 4.40 -- all DONE: i965/gen8+
|
||||
|
||||
GL 4.5, GLSL 4.50:
|
||||
|
||||
GL_ARB_ES3_1_compatibility DONE (i965/gen8+, nvc0, radeonsi)
|
||||
GL_ARB_ES3_1_compatibility DONE (i965/hsw+, nvc0, radeonsi)
|
||||
GL_ARB_clip_control DONE (i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, swr)
|
||||
GL_ARB_conditional_render_inverted DONE (i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, swr)
|
||||
GL_ARB_cull_distance DONE (i965, nv50, nvc0, llvmpipe, softpipe, swr)
|
||||
|
@ -365,7 +365,8 @@ intelInitExtensions(struct gl_context *ctx)
|
||||
if ((brw->gen >= 8 || brw->intelScreen->cmd_parser_version >= 5) &&
|
||||
ctx->Const.MaxComputeWorkGroupSize[0] >= 1024) {
|
||||
ctx->Extensions.ARB_compute_shader = true;
|
||||
ctx->Extensions.ARB_ES3_1_compatibility = brw->gen >= 8;
|
||||
ctx->Extensions.ARB_ES3_1_compatibility =
|
||||
brw->gen >= 8 || brw->is_haswell;
|
||||
}
|
||||
|
||||
if (brw->intelScreen->cmd_parser_version >= 2)
|
||||
|
Loading…
Reference in New Issue
Block a user