summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/formats.c
diff options
context:
space:
mode:
authorAnuj Phogat <[email protected]>2014-03-25 13:00:12 -0700
committerAnuj Phogat <[email protected]>2014-04-16 18:37:06 -0700
commit313566825405c33f26a0471a997ec4c79fae6b08 (patch)
tree3e8cf30d141051e7a949201510fce99ebc50e4c5 /src/mesa/main/formats.c
parentfdd8bebc22f167f19d9cafbe2e7c189cb3720bcb (diff)
mesa: Add helper function _mesa_is_format_integer()
This function will be used in the following patch. Cc: <[email protected]> Signed-off-by: Anuj Phogat <[email protected]> Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/formats.c')
-rw-r--r--src/mesa/main/formats.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c
index fb2501c69a2..5c670115ef7 100644
--- a/src/mesa/main/formats.c
+++ b/src/mesa/main/formats.c
@@ -2035,6 +2035,15 @@ _mesa_is_format_signed(mesa_format format)
}
}
+/**
+ * Is the given format an integer format?
+ */
+GLboolean
+_mesa_is_format_integer(mesa_format format)
+{
+ const struct gl_format_info *info = _mesa_get_format_info(format);
+ return (info->DataType == GL_INT || info->DataType == GL_UNSIGNED_INT);
+}
/**
* Return color encoding for given format.