diff options
author | Nanley Chery <[email protected]> | 2015-07-31 09:25:56 -0700 |
---|---|---|
committer | Nanley Chery <[email protected]> | 2015-08-24 11:27:46 -0700 |
commit | 9f00af672b59766008994a190730d48ae03773dd (patch) | |
tree | 7df97076730755923ab358c7f5cae243bfc8e733 /src/mesa/main/formats.h | |
parent | 000e225360c020e8b3de142c4c898baad321d242 (diff) |
mesa/formats: only do type and component lookup for uncompressed formats
Only uncompressed formats have a non-void type and actual
components per pixel. Rename _mesa_format_to_type_and_comps
to _mesa_uncompressed_format_to_type_and_comps and require
callers to check if the format is not compressed.
v2. include compressed format cases to avoid gcc warnings (Chad).
Reviewed-by: Chad Versace <[email protected]>
Signed-off-by: Nanley Chery <[email protected]>
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index d267d3b8a1f..48b3fbd2cde 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -665,7 +665,7 @@ extern GLint _mesa_format_row_stride(mesa_format format, GLsizei width); extern void -_mesa_format_to_type_and_comps(mesa_format format, +_mesa_uncompressed_format_to_type_and_comps(mesa_format format, GLenum *datatype, GLuint *comps); extern void |