X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fglformats.h;h=763307f259316201c7b0a0ae1f585f27a492e447;hb=e70d0d22a2dccc1df2c88890a2964491cdafac94;hp=92f4bc6864ee5154bbee67374e5a9b1033bec037;hpb=c6bf1cd1467ea5d5370394ba99366dd8a59a385c;p=mesa.git diff --git a/src/mesa/main/glformats.h b/src/mesa/main/glformats.h index 92f4bc6864e..763307f2593 100644 --- a/src/mesa/main/glformats.h +++ b/src/mesa/main/glformats.h @@ -28,6 +28,7 @@ #define GLFORMATS_H +#include #include @@ -59,6 +60,9 @@ _mesa_bytes_per_vertex_attrib(GLint comps, GLenum type); extern GLboolean _mesa_is_astc_format(GLenum internalFormat); +extern GLboolean +_mesa_is_etc2_format(GLenum internalFormat); + extern GLboolean _mesa_is_type_unsigned(GLenum type); @@ -101,6 +105,9 @@ _mesa_is_depth_or_stencil_format(GLenum format); extern GLboolean _mesa_is_compressed_format(const struct gl_context *ctx, GLenum format); +extern GLboolean +_mesa_is_srgb_format(GLenum format); + extern GLenum _mesa_base_format_to_integer_format(GLenum format); @@ -127,7 +134,8 @@ _mesa_error_check_format_and_type(const struct gl_context *ctx, GLenum format, GLenum type); extern GLenum -_mesa_es_error_check_format_and_type(GLenum format, GLenum type, +_mesa_es_error_check_format_and_type(const struct gl_context *ctx, + GLenum format, GLenum type, unsigned dimensions); extern GLenum @@ -140,6 +148,13 @@ _mesa_base_tex_format(const struct gl_context *ctx, GLint internalFormat ); extern uint32_t _mesa_format_from_format_and_type(GLenum format, GLenum type); +extern bool +_mesa_is_es3_color_renderable(GLenum internal_format); + +extern bool +_mesa_is_es3_texture_filterable(const struct gl_context *ctx, + GLenum internal_format); + #ifdef __cplusplus } #endif