diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-06-20 15:14:47 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-06-20 15:14:47 -0600 |
commit | 7658a0208aa31f1443be6eaa720a383b34e2bbb3 (patch) | |
tree | b0f7c914bb17a5aff40b5a195f10cec076db0337 /src/mesa/pipe/softpipe/sp_context.c | |
parent | fb5cdbd078d4d44fb43d417843debe41148f3714 (diff) |
quad blending works now, but many blend terms need to be added in blend_quad().
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_context.c')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/pipe/softpipe/sp_context.c b/src/mesa/pipe/softpipe/sp_context.c index d1023fb782..593be0e132 100644 --- a/src/mesa/pipe/softpipe/sp_context.c +++ b/src/mesa/pipe/softpipe/sp_context.c @@ -65,6 +65,7 @@ struct pipe_context *softpipe_create( void ) softpipe->pipe.destroy = softpipe_destroy; softpipe->pipe.set_framebuffer_state = softpipe_set_framebuffer_state; + softpipe->pipe.set_blend_state = softpipe_set_blend_state; softpipe->pipe.set_clip_state = softpipe_set_clip_state; softpipe->pipe.set_clear_color_state = softpipe_set_clear_color_state; softpipe->pipe.set_point_state = softpipe_set_point_state; |