projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f37e76
)
Fix: RADEON_DEBUG is a bitfield, so use & to check for flags, not ==
author
Nicolai Haehnle
<prefect_@gmx.net>
Fri, 18 Feb 2005 11:27:24 +0000
(11:27 +0000)
committer
Nicolai Haehnle
<prefect_@gmx.net>
Fri, 18 Feb 2005 11:27:24 +0000
(11:27 +0000)
src/mesa/drivers/dri/r300/r300_render.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/r300/r300_render.c
b/src/mesa/drivers/dri/r300/r300_render.c
index a02c4176c38be2de500ab068233b19ad91166b92..e184a16d56523b5662869fde08f0a666e98c342c 100644
(file)
--- a/
src/mesa/drivers/dri/r300/r300_render.c
+++ b/
src/mesa/drivers/dri/r300/r300_render.c
@@
-611,7
+611,7
@@
static GLboolean r300_run_vb_render(GLcontext *ctx,
int i, j;
LOCAL_VARS
- if (RADEON_DEBUG
==
DEBUG_PRIMS)
+ if (RADEON_DEBUG
&
DEBUG_PRIMS)
fprintf(stderr, "%s\n", __FUNCTION__);