diff options
author | Brian <[email protected]> | 2008-03-13 14:33:57 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-03-13 14:33:57 -0600 |
commit | 8b8c9acdb747499149e633179a8ad10b0e4206b1 (patch) | |
tree | c630f1b7035a62fef3fc8167baabc97917798105 /src/gallium/auxiliary/draw/draw_context.h | |
parent | b6ed165748c6585f1368be37c0d0289cead419c9 (diff) |
gallium: added draw_enable_line_stipple() function
Allows drivers that implement line stipple to turn off this drawing stage.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_context.h | 3 |
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 df63e91a22d..e8e2b56bae1 100644 --- a/src/gallium/auxiliary/draw/draw_context.h +++ b/src/gallium/auxiliary/draw/draw_context.h @@ -94,6 +94,9 @@ void draw_wide_point_threshold(struct draw_context *draw, float threshold); void draw_wide_line_threshold(struct draw_context *draw, float threshold); +void draw_enable_line_stipple(struct draw_context *draw, boolean enable); + + boolean draw_use_sse(struct draw_context *draw); void |