util: add util_format_short_name

This commit is contained in:
Marek Olšák 2010-05-03 20:09:14 +02:00
parent bc3d9a8b18
commit 5a6b9f3855

View file

@ -338,6 +338,19 @@ util_format_name(enum pipe_format format)
return desc->name;
}
static INLINE const char *
util_format_short_name(enum pipe_format format)
{
const struct util_format_description *desc = util_format_description(format);
assert(desc);
if (!desc) {
return "???";
}
return desc->short_name;
}
/**
* Whether this format is plain, see UTIL_FORMAT_LAYOUT_PLAIN for more info.
*/