mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
mesa: Update for UTIL_FORMAT_LAYOUT_xxx changes.
This commit is contained in:
parent
83686b3f92
commit
85434f9e3c
1 changed files with 7 additions and 3 deletions
|
|
@ -82,8 +82,7 @@ st_get_format_info(enum pipe_format format, struct pipe_format_info *pinfo)
|
|||
desc = util_format_description(format);
|
||||
assert(desc);
|
||||
|
||||
if (desc->layout == UTIL_FORMAT_LAYOUT_ARITH ||
|
||||
desc->layout == UTIL_FORMAT_LAYOUT_ARRAY) {
|
||||
if (desc->layout == UTIL_FORMAT_LAYOUT_PLAIN) {
|
||||
#if 0
|
||||
printf("%s\n", util_format_name( format ) );
|
||||
#endif
|
||||
|
|
@ -147,11 +146,16 @@ st_get_format_info(enum pipe_format format, struct pipe_format_info *pinfo)
|
|||
|
||||
pinfo->mesa_format = st_pipe_format_to_mesa_format(format);
|
||||
}
|
||||
else if (desc->layout == UTIL_FORMAT_LAYOUT_YUV) {
|
||||
else if (format == PIPE_FORMAT_YCBCR) {
|
||||
pinfo->mesa_format = MESA_FORMAT_YCBCR;
|
||||
pinfo->datatype = GL_UNSIGNED_SHORT;
|
||||
pinfo->size = 2; /* two bytes per "texel" */
|
||||
}
|
||||
else if (format == PIPE_FORMAT_YCBCR_REV) {
|
||||
pinfo->mesa_format = MESA_FORMAT_YCBCR_REV;
|
||||
pinfo->datatype = GL_UNSIGNED_SHORT;
|
||||
pinfo->size = 2; /* two bytes per "texel" */
|
||||
}
|
||||
else {
|
||||
/* compressed format? */
|
||||
assert(0);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue