diff options
author | Eric Anholt <[email protected]> | 2004-10-08 22:21:09 +0000 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2004-10-08 22:21:09 +0000 |
commit | b4d269f35f0f0e0c87793a319a77f571a54a5a47 (patch) | |
tree | d081cf10171bd6e90cc2c37fb9dbea995557a7e8 /src/mesa/drivers | |
parent | f6cdaa9c81611f03f6e1eb2e4a5920b858f1673f (diff) |
Don't compile WriteMonoDepthSpan if HAVE_HW_DEPTH_SPANS is defined -- it won't
be used in that case, and it wanting WRITE_DEPTH was making r128 die on
the undefined symbol.
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/common/depthtmp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/common/depthtmp.h b/src/mesa/drivers/dri/common/depthtmp.h index cb3f66fde44..d8b8775ae99 100644 --- a/src/mesa/drivers/dri/common/depthtmp.h +++ b/src/mesa/drivers/dri/common/depthtmp.h @@ -64,6 +64,7 @@ static void TAG(WriteDepthSpan)( GLcontext *ctx, HW_WRITE_UNLOCK(); } +#if !HAVE_HW_DEPTH_SPANS static void TAG(WriteMonoDepthSpan)( GLcontext *ctx, GLuint n, GLint x, GLint y, const GLdepth depth, @@ -99,6 +100,7 @@ static void TAG(WriteMonoDepthSpan)( GLcontext *ctx, } HW_WRITE_UNLOCK(); } +#endif static void TAG(WriteDepthPixels)( GLcontext *ctx, GLuint n, |