projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36a484b
)
mesa: add a few comments for the z unpacking functions
author
Brian Paul
<brianp@vmware.com>
Fri, 16 Dec 2011 15:44:42 +0000
(08:44 -0700)
committer
Brian Paul
<brianp@vmware.com>
Fri, 16 Dec 2011 15:44:42 +0000
(08:44 -0700)
src/mesa/main/format_unpack.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/format_unpack.c
b/src/mesa/main/format_unpack.c
index 4f23f3dec3dea94414055a326da8672651962d91..32d198ce84b9c242c4eaa9dbd0c4da461388ef1d 100644
(file)
--- a/
src/mesa/main/format_unpack.c
+++ b/
src/mesa/main/format_unpack.c
@@
-1822,6
+1822,10
@@
unpack_float_z_Z32X24S8(GLuint n, const void *src, GLfloat *dst)
+/**
+ * Unpack Z values.
+ * The returned values will always be in the range [0.0, 1.0].
+ */
void
_mesa_unpack_float_z_row(gl_format format, GLuint n,
const void *src, GLfloat *dst)
@@
-1901,6
+1905,10
@@
unpack_uint_z_Z32(const void *src, GLuint *dst, GLuint n)
}
+/**
+ * Unpack Z values.
+ * The returned values will always be in the range [0, 0xffffffff].
+ */
void
_mesa_unpack_uint_z_row(gl_format format, GLuint n,
const void *src, GLuint *dst)