mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
i965: Always enable GL_ARB_shading_language_packing
With the existing lowering passes, the functions from this extension become a bunch of bit twiddling operations that have always been supported. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
4b2b6d4d4d
commit
26c7f04d4a
1 changed files with 1 additions and 1 deletions
|
|
@ -206,6 +206,7 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
ctx->Extensions.ARB_shader_bit_encoding = true;
|
||||
ctx->Extensions.ARB_shader_draw_parameters = true;
|
||||
ctx->Extensions.ARB_shader_texture_lod = true;
|
||||
ctx->Extensions.ARB_shading_language_packing = true;
|
||||
ctx->Extensions.ARB_shadow = true;
|
||||
ctx->Extensions.ARB_sync = true;
|
||||
ctx->Extensions.ARB_texture_border_clamp = true;
|
||||
|
|
@ -299,7 +300,6 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
ctx->Extensions.ARB_fragment_layer_viewport = true;
|
||||
ctx->Extensions.ARB_sample_shading = true;
|
||||
ctx->Extensions.ARB_shading_language_420pack = true;
|
||||
ctx->Extensions.ARB_shading_language_packing = true;
|
||||
ctx->Extensions.ARB_texture_buffer_object = true;
|
||||
ctx->Extensions.ARB_texture_buffer_object_rgb32 = true;
|
||||
ctx->Extensions.ARB_texture_buffer_range = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue