summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2004-10-08 22:21:09 +0000
committerEric Anholt <anholt@FreeBSD.org>2004-10-08 22:21:09 +0000
commitb4d269f35f0f0e0c87793a319a77f571a54a5a47 (patch)
treed081cf10171bd6e90cc2c37fb9dbea995557a7e8 /src/mesa
parentf6cdaa9c81611f03f6e1eb2e4a5920b858f1673f (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')
-rw-r--r--src/mesa/drivers/dri/common/depthtmp.h2
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 cb3f66fde4..d8b8775ae9 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,