diff options
author | Stéphane Marchesin <[email protected]> | 2012-02-07 14:42:30 -0800 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2012-02-12 16:32:14 -0800 |
commit | 3cff45fdb182a1327f6b89fdc4e0ddc5d680372a (patch) | |
tree | 71eeea96956cefa51e69c50ee0d3c302c8276f70 /src/gallium/drivers/i915/i915_state.c | |
parent | 175adf0776d8df066a908b06055f243bd1325a34 (diff) |
i915g: Implement stipple with draw.
Diffstat (limited to 'src/gallium/drivers/i915/i915_state.c')
-rw-r--r-- | src/gallium/drivers/i915/i915_state.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_state.c b/src/gallium/drivers/i915/i915_state.c index d0063e3901a..764547e3e06 100644 --- a/src/gallium/drivers/i915/i915_state.c +++ b/src/gallium/drivers/i915/i915_state.c @@ -553,8 +553,11 @@ static void i915_set_scissor_state( struct pipe_context *pipe, static void i915_set_polygon_stipple( struct pipe_context *pipe, - const struct pipe_poly_stipple *stipple ) + const struct pipe_poly_stipple *stipple ) { + struct i915_context *i915 = i915_context(pipe); + + draw_flush(i915->draw); } |