st/mesa: fix incorrect debug output

format and type are not GL enums here.
This commit is contained in:
Brian Paul
2011-09-13 09:30:31 -06:00
parent 0ebf83b731
commit b06613c6cc
+2 -3
View File
@@ -72,9 +72,8 @@ st_texture_create(struct st_context *st,
if (target == PIPE_TEXTURE_CUBE)
assert(layers == 6);
DBG("%s target %s format %s last_level %d\n", __FUNCTION__,
_mesa_lookup_enum_by_nr(target),
_mesa_lookup_enum_by_nr(format), last_level);
DBG("%s target %d format %s last_level %d\n", __FUNCTION__,
(int) target, util_format_name(format), last_level);
assert(format);
assert(screen->is_format_supported(screen, format, target, 0,