diff options
author | Jakob Bornecrantz <jakob@tungstengraphics.com> | 2008-05-22 15:02:54 +0200 |
---|---|---|
committer | Jakob Bornecrantz <jakob@tungstengraphics.com> | 2008-05-23 16:26:20 +0200 |
commit | 845db16dbe66c0f741063333a70af79bca5b6544 (patch) | |
tree | a9487d41cec325ac4c4bfcc0fd9493984aafc4c2 | |
parent | a3dbd412df99c7d19b1f81b3b9ec7d5c8a09d069 (diff) |
i915: Fix for edgeflags
-rw-r--r-- | src/gallium/drivers/i915simple/i915_state.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915simple/i915_state.c b/src/gallium/drivers/i915simple/i915_state.c index 4adeb37e86..964bd7c871 100644 --- a/src/gallium/drivers/i915simple/i915_state.c +++ b/src/gallium/drivers/i915simple/i915_state.c @@ -717,10 +717,16 @@ static void i915_set_vertex_elements(struct pipe_context *pipe, } +static void i915_set_edgeflags(struct pipe_context *pipe, + const unsigned *bitfield) +{ + /* TODO do something here */ +} void i915_init_state_functions( struct i915_context *i915 ) { + i915->pipe.set_edgeflags = i915_set_edgeflags; i915->pipe.create_blend_state = i915_create_blend_state; i915->pipe.bind_blend_state = i915_bind_blend_state; i915->pipe.delete_blend_state = i915_delete_blend_state; |