1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 /* Authors: Keith Whitwell <keith@tungstengraphics.com>
31 #include "util/u_memory.h"
32 #include "draw/draw_context.h"
33 #include "sp_context.h"
38 softpipe_create_blend_state(struct pipe_context
*pipe
,
39 const struct pipe_blend_state
*blend
)
41 return mem_dup(blend
, sizeof(*blend
));
46 softpipe_bind_blend_state(struct pipe_context
*pipe
,
49 struct softpipe_context
*softpipe
= softpipe_context(pipe
);
51 draw_flush(softpipe
->draw
);
53 softpipe
->blend
= (struct pipe_blend_state
*)blend
;
55 softpipe
->dirty
|= SP_NEW_BLEND
;
60 softpipe_delete_blend_state(struct pipe_context
*pipe
,
68 softpipe_set_blend_color(struct pipe_context
*pipe
,
69 const struct pipe_blend_color
*blend_color
)
71 struct softpipe_context
*softpipe
= softpipe_context(pipe
);
73 draw_flush(softpipe
->draw
);
75 softpipe
->blend_color
= *blend_color
;
77 softpipe
->dirty
|= SP_NEW_BLEND
;
82 softpipe_create_depth_stencil_state(struct pipe_context
*pipe
,
83 const struct pipe_depth_stencil_alpha_state
*depth_stencil
)
85 return mem_dup(depth_stencil
, sizeof(*depth_stencil
));
90 softpipe_bind_depth_stencil_state(struct pipe_context
*pipe
,
93 struct softpipe_context
*softpipe
= softpipe_context(pipe
);
95 softpipe
->depth_stencil
= (struct pipe_depth_stencil_alpha_state
*)depth_stencil
;
97 softpipe
->dirty
|= SP_NEW_DEPTH_STENCIL_ALPHA
;
102 softpipe_delete_depth_stencil_state(struct pipe_context
*pipe
, void *depth
)
109 softpipe_set_stencil_ref(struct pipe_context
*pipe
,
110 const struct pipe_stencil_ref
*stencil_ref
)
112 struct softpipe_context
*softpipe
= softpipe_context(pipe
);
114 softpipe
->stencil_ref
= *stencil_ref
;
116 softpipe
->dirty
|= SP_NEW_DEPTH_STENCIL_ALPHA
;
121 softpipe_set_sample_mask(struct pipe_context
*pipe
,
122 unsigned sample_mask
)
128 softpipe_init_blend_funcs(struct pipe_context
*pipe
)
130 pipe
->create_blend_state
= softpipe_create_blend_state
;
131 pipe
->bind_blend_state
= softpipe_bind_blend_state
;
132 pipe
->delete_blend_state
= softpipe_delete_blend_state
;
134 pipe
->set_blend_color
= softpipe_set_blend_color
;
136 pipe
->create_depth_stencil_alpha_state
= softpipe_create_depth_stencil_state
;
137 pipe
->bind_depth_stencil_alpha_state
= softpipe_bind_depth_stencil_state
;
138 pipe
->delete_depth_stencil_alpha_state
= softpipe_delete_depth_stencil_state
;
140 pipe
->set_stencil_ref
= softpipe_set_stencil_ref
;
142 pipe
->set_sample_mask
= softpipe_set_sample_mask
;