glsl: add ARB_bindless_texture enable
This also adds the extension to the standalone GLSL compiler. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com> Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
@@ -607,6 +607,7 @@ static const _mesa_glsl_extension _mesa_glsl_supported_extensions[] = {
|
|||||||
EXT(ARB_ES3_1_compatibility),
|
EXT(ARB_ES3_1_compatibility),
|
||||||
EXT(ARB_ES3_2_compatibility),
|
EXT(ARB_ES3_2_compatibility),
|
||||||
EXT(ARB_arrays_of_arrays),
|
EXT(ARB_arrays_of_arrays),
|
||||||
|
EXT(ARB_bindless_texture),
|
||||||
EXT(ARB_compute_shader),
|
EXT(ARB_compute_shader),
|
||||||
EXT(ARB_compute_variable_group_size),
|
EXT(ARB_compute_variable_group_size),
|
||||||
EXT(ARB_conservative_depth),
|
EXT(ARB_conservative_depth),
|
||||||
|
@@ -334,6 +334,11 @@ struct _mesa_glsl_parse_state {
|
|||||||
return ARB_shader_image_load_store_enable || is_version(420, 310);
|
return ARB_shader_image_load_store_enable || is_version(420, 310);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool has_bindless() const
|
||||||
|
{
|
||||||
|
return ARB_bindless_texture_enable;
|
||||||
|
}
|
||||||
|
|
||||||
void process_version_directive(YYLTYPE *locp, int version,
|
void process_version_directive(YYLTYPE *locp, int version,
|
||||||
const char *ident);
|
const char *ident);
|
||||||
|
|
||||||
@@ -592,6 +597,8 @@ struct _mesa_glsl_parse_state {
|
|||||||
bool ARB_ES3_2_compatibility_warn;
|
bool ARB_ES3_2_compatibility_warn;
|
||||||
bool ARB_arrays_of_arrays_enable;
|
bool ARB_arrays_of_arrays_enable;
|
||||||
bool ARB_arrays_of_arrays_warn;
|
bool ARB_arrays_of_arrays_warn;
|
||||||
|
bool ARB_bindless_texture_enable;
|
||||||
|
bool ARB_bindless_texture_warn;
|
||||||
bool ARB_compute_shader_enable;
|
bool ARB_compute_shader_enable;
|
||||||
bool ARB_compute_shader_warn;
|
bool ARB_compute_shader_warn;
|
||||||
bool ARB_compute_variable_group_size_enable;
|
bool ARB_compute_variable_group_size_enable;
|
||||||
|
@@ -196,6 +196,7 @@ void initialize_context_to_defaults(struct gl_context *ctx, gl_api api)
|
|||||||
ctx->Extensions.ARB_uniform_buffer_object = true;
|
ctx->Extensions.ARB_uniform_buffer_object = true;
|
||||||
ctx->Extensions.ARB_viewport_array = true;
|
ctx->Extensions.ARB_viewport_array = true;
|
||||||
ctx->Extensions.ARB_cull_distance = true;
|
ctx->Extensions.ARB_cull_distance = true;
|
||||||
|
ctx->Extensions.ARB_bindless_texture = true;
|
||||||
|
|
||||||
ctx->Extensions.OES_EGL_image_external = true;
|
ctx->Extensions.OES_EGL_image_external = true;
|
||||||
ctx->Extensions.OES_standard_derivatives = true;
|
ctx->Extensions.OES_standard_derivatives = true;
|
||||||
|
Reference in New Issue
Block a user