projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c31aee9
)
i915: Use the current drawbuffer's depth for polygon offset scale.
43/7143/1
author
Eric Anholt
<eric@anholt.net>
Wed, 12 Jun 2013 03:24:41 +0000
(20:24 -0700)
committer
Eric Anholt
<eric@anholt.net>
Wed, 26 Jun 2013 08:07:11 +0000
(
01:07
-0700)
There's no reason to care about the window system visual's depth for
handling polygon offset in an FBO, and it could only lead to pain.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i915/intel_tris.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i915/intel_tris.c
b/src/mesa/drivers/dri/i915/intel_tris.c
index
7c60d84
..
126094b
100644
(file)
--- a/
src/mesa/drivers/dri/i915/intel_tris.c
+++ b/
src/mesa/drivers/dri/i915/intel_tris.c
@@
-640,7
+640,7
@@
do { \
} while (0)
-#define DEPTH_SCALE
intel->polygon_offset_scale
+#define DEPTH_SCALE
(ctx->DrawBuffer->Visual.depthBits == 16 ? 1.0 : 2.0)
#define UNFILLED_TRI unfilled_tri
#define UNFILLED_QUAD unfilled_quad
#define VERT_X(_v) _v->v.x