mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-07 03:40:27 +01:00
mesa: include bad type in error string of _mesa_pack_depth_span
Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
4e7fd66cf0
commit
aee28a0aa3
1 changed files with 2 additions and 1 deletions
|
|
@ -1123,7 +1123,8 @@ _mesa_pack_depth_span( struct gl_context *ctx, GLuint n, GLvoid *dest,
|
|||
}
|
||||
break;
|
||||
default:
|
||||
_mesa_problem(ctx, "bad type in _mesa_pack_depth_span");
|
||||
_mesa_problem(ctx, "bad type in _mesa_pack_depth_span (%s)",
|
||||
_mesa_enum_to_string(dstType));
|
||||
}
|
||||
|
||||
free(depthCopy);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue