util: add util_format_short_name
authorMarek Olšák <maraeo@gmail.com>
Mon, 3 May 2010 18:09:14 +0000 (20:09 +0200)
committerMarek Olšák <maraeo@gmail.com>
Mon, 3 May 2010 18:39:43 +0000 (20:39 +0200)
src/gallium/auxiliary/util/u_format.h

index 6514315..8ba0769 100644 (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.
  */