summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_context.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-02-21 16:56:32 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-02-21 16:56:32 -0700
commit446bfc32a83008e0865ec869bc80b920c907f10f (patch)
tree8d19dd335aa2bdbc5dcd51dd91d6f143bad8a662 /src/gallium/auxiliary/draw/draw_context.h
parenteb4dc2dd5ed62e6ccb55ccc2bc13f6a2f3fc1f76 (diff)
gallium: new draw stage for polygon stipple.
For hardware without native polygon stipple. Create a 32x32 alpha texture that encodes the stipple pattern. Modify the user's fragment program to sample the texture (with gl_FragCoord) and kill the fragment according to the texel value. Temporarily enabled in softpipe driver, replacing the sp_quad_stipple.c step.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.h')
-rw-r--r--src/gallium/auxiliary/draw/draw_context.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.h b/src/gallium/auxiliary/draw/draw_context.h
index 43b58bc056..c25301f71d 100644
--- a/src/gallium/auxiliary/draw/draw_context.h
+++ b/src/gallium/auxiliary/draw/draw_context.h
@@ -102,6 +102,9 @@ draw_install_aaline_stage(struct draw_context *draw, struct pipe_context *pipe);
void
draw_install_aapoint_stage(struct draw_context *draw, struct pipe_context *pipe);
+void
+draw_install_pstipple_stage(struct draw_context *draw, struct pipe_context *pipe);
+
int
draw_find_vs_output(struct draw_context *draw,