diff options
author | Luc Verhaegen <libv@skynet.be> | 2010-03-13 04:39:20 +0100 |
---|---|---|
committer | Luc Verhaegen <libv@skynet.be> | 2010-03-13 04:39:20 +0100 |
commit | 79987d707852221863ca6218d59046c9ad3d9c3e (patch) | |
tree | 7418c049ae29397194a6263542242ad2aa1c0eb0 /mesa/drivers/dri/common/depthtmp.h | |
parent | 668c56722676bd9ec5e7592aa07f1b8026ef963c (diff) |
DRI SDK headers from mesa 7.1.0.
Diffstat (limited to 'mesa/drivers/dri/common/depthtmp.h')
-rw-r--r-- | mesa/drivers/dri/common/depthtmp.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mesa/drivers/dri/common/depthtmp.h b/mesa/drivers/dri/common/depthtmp.h index 55199ab..fd2dab3 100644 --- a/mesa/drivers/dri/common/depthtmp.h +++ b/mesa/drivers/dri/common/depthtmp.h @@ -29,7 +29,7 @@ static void TAG(WriteDepthSpan)( GLcontext *ctx, { HW_WRITE_LOCK() { - const GLuint *depth = (const GLuint *) values; + const VALUE_TYPE *depth = (const VALUE_TYPE *) values; GLint x1; GLint n1; LOCAL_DEPTH_VARS; @@ -134,7 +134,7 @@ static void TAG(WriteDepthPixels)( GLcontext *ctx, { HW_WRITE_LOCK() { - const GLuint *depth = (const GLuint *) values; + const VALUE_TYPE *depth = (const VALUE_TYPE *) values; GLuint i; LOCAL_DEPTH_VARS; @@ -180,7 +180,7 @@ static void TAG(ReadDepthSpan)( GLcontext *ctx, { HW_READ_LOCK() { - GLuint *depth = (GLuint *) values; + VALUE_TYPE *depth = (VALUE_TYPE *) values; GLint x1, n1; LOCAL_DEPTH_VARS; @@ -215,7 +215,7 @@ static void TAG(ReadDepthPixels)( GLcontext *ctx, { HW_READ_LOCK() { - GLuint *depth = (GLuint *) values; + VALUE_TYPE *depth = (VALUE_TYPE *) values; GLuint i; LOCAL_DEPTH_VARS; @@ -267,3 +267,4 @@ static void TAG(InitDepthPointers)(struct gl_renderbuffer *rb) #undef READ_DEPTH #endif #undef TAG +#undef VALUE_TYPE |