mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 04:00:12 +01:00
mesa: fix incorrect error message in format_unpack.c
This commit is contained in:
parent
8265bb7fb8
commit
ca4e664f21
1 changed files with 2 additions and 1 deletions
|
|
@ -1968,7 +1968,8 @@ _mesa_unpack_uint_24_8_depth_stencil_row(gl_format format, GLuint n,
|
|||
unpack_uint_24_8_depth_stencil_S8_Z24(src, dst, n);
|
||||
break;
|
||||
default:
|
||||
_mesa_problem(NULL, "bad format %s in _mesa_unpack_ubyte_s_row",
|
||||
_mesa_problem(NULL,
|
||||
"bad format %s in _mesa_unpack_uint_24_8_depth_stencil_row",
|
||||
_mesa_get_format_name(format));
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue