diff options
author | Antia Puentes <[email protected]> | 2015-11-15 18:01:56 +0100 |
---|---|---|
committer | Eduardo Lima Mitev <[email protected]> | 2016-03-03 15:14:07 +0100 |
commit | 876f7a7c081dd8261a3d969ec1d76ddac64afcbb (patch) | |
tree | ac23daf106d3bb33cc2138a2de608b0adb00c5d8 /src/mesa/main/shaderimage.c | |
parent | fae2b10ff9ec568df328785183e483d4fcbf0f83 (diff) |
mesa/shaderimage: Make is_image_format_supported public
It will be used by the ARB_internalformat_query2 implementation
to implement queries related to the ARB_shader_image_load_store
extension.
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/main/shaderimage.c')
-rw-r--r-- | src/mesa/main/shaderimage.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/mesa/main/shaderimage.c b/src/mesa/main/shaderimage.c index 040e9fd6e3c..a71686d0ec4 100644 --- a/src/mesa/main/shaderimage.c +++ b/src/mesa/main/shaderimage.c @@ -331,12 +331,9 @@ get_image_format_class(mesa_format format) } } -/** - * Return whether an image format should be supported based on the current API - * version of the context. - */ -static bool -is_image_format_supported(const struct gl_context *ctx, GLenum format) +bool +_mesa_is_shader_image_format_supported(const struct gl_context *ctx, + GLenum format) { switch (format) { /* Formats supported on both desktop and ES GL, c.f. table 8.27 of the @@ -503,7 +500,7 @@ validate_bind_image_texture(struct gl_context *ctx, GLuint unit, return GL_FALSE; } - if (!is_image_format_supported(ctx, format)) { + if (!_mesa_is_shader_image_format_supported(ctx, format)) { _mesa_error(ctx, GL_INVALID_VALUE, "glBindImageTexture(format)"); return GL_FALSE; } @@ -668,7 +665,7 @@ _mesa_BindImageTextures(GLuint first, GLsizei count, const GLuint *textures) tex_format = image->InternalFormat; } - if (!is_image_format_supported(ctx, tex_format)) { + if (!_mesa_is_shader_image_format_supported(ctx, tex_format)) { /* The ARB_multi_bind spec says: * * "An INVALID_OPERATION error is generated if the internal |