1 /**************************************************************************
3 * Copyright 2007-2008 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 **************************************************************************/
32 #include "pipe/p_context.h"
33 #include "pipe/p_state.h"
34 #include "pipe/p_defines.h"
43 struct cso_context
*cso_create_context( struct pipe_context
*pipe
);
45 void cso_release_all( struct cso_context
*ctx
);
47 void cso_destroy_context( struct cso_context
*cso
);
51 enum pipe_error
cso_set_blend( struct cso_context
*cso
,
52 const struct pipe_blend_state
*blend
);
53 void cso_save_blend(struct cso_context
*cso
);
54 void cso_restore_blend(struct cso_context
*cso
);
58 enum pipe_error
cso_set_depth_stencil_alpha( struct cso_context
*cso
,
59 const struct pipe_depth_stencil_alpha_state
*dsa
);
60 void cso_save_depth_stencil_alpha(struct cso_context
*cso
);
61 void cso_restore_depth_stencil_alpha(struct cso_context
*cso
);
65 enum pipe_error
cso_set_rasterizer( struct cso_context
*cso
,
66 const struct pipe_rasterizer_state
*rasterizer
);
67 void cso_save_rasterizer(struct cso_context
*cso
);
68 void cso_restore_rasterizer(struct cso_context
*cso
);
72 enum pipe_error
cso_set_samplers( struct cso_context
*cso
,
74 const struct pipe_sampler_state
**states
);
75 void cso_save_samplers(struct cso_context
*cso
);
76 void cso_restore_samplers(struct cso_context
*cso
);
78 /* Alternate interface to support state trackers that like to modify
79 * samplers one at a time:
81 enum pipe_error
cso_single_sampler( struct cso_context
*cso
,
83 const struct pipe_sampler_state
*states
);
85 void cso_single_sampler_done( struct cso_context
*cso
);
87 enum pipe_error
cso_set_vertex_samplers(struct cso_context
*cso
,
89 const struct pipe_sampler_state
**states
);
92 cso_save_vertex_samplers(struct cso_context
*cso
);
95 cso_restore_vertex_samplers(struct cso_context
*cso
);
98 cso_single_vertex_sampler(struct cso_context
*cso
,
100 const struct pipe_sampler_state
*states
);
103 cso_single_vertex_sampler_done(struct cso_context
*cso
);
106 enum pipe_error
cso_set_vertex_elements(struct cso_context
*ctx
,
108 const struct pipe_vertex_element
*states
);
109 void cso_save_vertex_elements(struct cso_context
*ctx
);
110 void cso_restore_vertex_elements(struct cso_context
*ctx
);
113 void cso_set_vertex_buffers(struct cso_context
*ctx
,
115 const struct pipe_vertex_buffer
*buffers
);
116 void cso_save_vertex_buffers(struct cso_context
*ctx
);
117 void cso_restore_vertex_buffers(struct cso_context
*ctx
);
120 /* These aren't really sensible -- most of the time the api provides
121 * object semantics for shaders anyway, and the cases where it doesn't
122 * (eg mesa's internall-generated texenv programs), it will be up to
123 * the state tracker to implement their own specialized caching.
125 enum pipe_error
cso_set_fragment_shader_handle(struct cso_context
*ctx
,
127 void cso_delete_fragment_shader(struct cso_context
*ctx
, void *handle
);
129 enum pipe_error cso_set_fragment_shader( struct cso_context *cso,
130 const struct pipe_shader_state *shader );
132 void cso_save_fragment_shader(struct cso_context
*cso
);
133 void cso_restore_fragment_shader(struct cso_context
*cso
);
136 enum pipe_error
cso_set_vertex_shader_handle(struct cso_context
*ctx
,
138 void cso_delete_vertex_shader(struct cso_context
*ctx
, void *handle
);
140 enum pipe_error cso_set_vertex_shader( struct cso_context *cso,
141 const struct pipe_shader_state *shader );
143 void cso_save_vertex_shader(struct cso_context
*cso
);
144 void cso_restore_vertex_shader(struct cso_context
*cso
);
147 enum pipe_error
cso_set_geometry_shader_handle(struct cso_context
*ctx
,
149 void cso_delete_geometry_shader(struct cso_context
*ctx
, void *handle
);
150 void cso_save_geometry_shader(struct cso_context
*cso
);
151 void cso_restore_geometry_shader(struct cso_context
*cso
);
154 enum pipe_error
cso_set_framebuffer(struct cso_context
*cso
,
155 const struct pipe_framebuffer_state
*fb
);
156 void cso_save_framebuffer(struct cso_context
*cso
);
157 void cso_restore_framebuffer(struct cso_context
*cso
);
160 enum pipe_error
cso_set_viewport(struct cso_context
*cso
,
161 const struct pipe_viewport_state
*vp
);
162 void cso_save_viewport(struct cso_context
*cso
);
163 void cso_restore_viewport(struct cso_context
*cso
);
166 enum pipe_error
cso_set_blend_color(struct cso_context
*cso
,
167 const struct pipe_blend_color
*bc
);
169 enum pipe_error
cso_set_sample_mask(struct cso_context
*cso
,
170 unsigned stencil_mask
);
172 enum pipe_error
cso_set_stencil_ref(struct cso_context
*cso
,
173 const struct pipe_stencil_ref
*sr
);
174 void cso_save_stencil_ref(struct cso_context
*cso
);
175 void cso_restore_stencil_ref(struct cso_context
*cso
);
181 cso_set_clip(struct cso_context
*cso
,
182 const struct pipe_clip_state
*clip
);
185 cso_save_clip(struct cso_context
*cso
);
188 cso_restore_clip(struct cso_context
*cso
);
191 /* fragment sampler view state */
194 cso_set_fragment_sampler_views(struct cso_context
*cso
,
196 struct pipe_sampler_view
**views
);
199 cso_save_fragment_sampler_views(struct cso_context
*cso
);
202 cso_restore_fragment_sampler_views(struct cso_context
*cso
);
205 /* vertex sampler view state */
208 cso_set_vertex_sampler_views(struct cso_context
*cso
,
210 struct pipe_sampler_view
**views
);
213 cso_save_vertex_sampler_views(struct cso_context
*cso
);
216 cso_restore_vertex_sampler_views(struct cso_context
*cso
);