summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_draw.c
diff options
context:
space:
mode:
authorZou Nan hai <nanhai.zou@intel.com>2008-03-18 10:27:20 +0800
committerZou Nan hai <nanhai.zou@intel.com>2008-03-18 10:27:20 +0800
commit5a0314b431ab147c6156c3011f4cb54161ba4b25 (patch)
tree29695d73ed921071e7b1738684cec877d29306c2 /src/mesa/drivers/dri/i965/brw_draw.c
parent48efb769e983bea6baf934eba8865ab3fa61a77a (diff)
[i965] make stipple pattern continue across GL_LINE_LOOP and GL_LINE_STRIP
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_draw.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_draw.c b/src/mesa/drivers/dri/i965/brw_draw.c
index 0990dcfac4..c323fbe792 100644
--- a/src/mesa/drivers/dri/i965/brw_draw.c
+++ b/src/mesa/drivers/dri/i965/brw_draw.c
@@ -54,7 +54,7 @@ static GLuint hw_prim[GL_POLYGON+1] = {
_3DPRIM_POINTLIST,
_3DPRIM_LINELIST,
_3DPRIM_LINELOOP,
- _3DPRIM_LINESTRIP,
+ _3DPRIM_LINESTRIP_CONT,
_3DPRIM_TRILIST,
_3DPRIM_TRISTRIP,
_3DPRIM_TRIFAN,