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>
34 #include "gallivm/lp_bld.h"
36 #include "pipe/p_state.h"
37 #include "tgsi/tgsi_scan.h"
39 #include "gallivm/lp_bld_sample.h" /* for struct lp_sampler_static_state */
42 #define LP_NEW_VIEWPORT 0x1
43 #define LP_NEW_RASTERIZER 0x2
45 #define LP_NEW_BLEND 0x8
46 #define LP_NEW_CLIP 0x10
47 #define LP_NEW_SCISSOR 0x20
48 #define LP_NEW_STIPPLE 0x40
49 #define LP_NEW_FRAMEBUFFER 0x80
50 #define LP_NEW_DEPTH_STENCIL_ALPHA 0x100
51 #define LP_NEW_CONSTANTS 0x200
52 #define LP_NEW_SAMPLER 0x400
53 #define LP_NEW_SAMPLER_VIEW 0x800
54 #define LP_NEW_VERTEX 0x1000
55 #define LP_NEW_VS 0x2000
56 #define LP_NEW_QUERY 0x4000
57 #define LP_NEW_BLEND_COLOR 0x8000
62 struct llvmpipe_context
;
64 struct lp_fragment_shader
;
67 struct lp_fragment_shader_variant_key
69 struct pipe_depth_state depth
;
70 struct pipe_alpha_state alpha
;
71 struct pipe_blend_state blend
;
72 enum pipe_format zsbuf_format
;
79 } cbuf_blend
[PIPE_MAX_COLOR_BUFS
];
81 struct lp_sampler_static_state sampler
[PIPE_MAX_SAMPLERS
];
85 struct lp_fragment_shader_variant
87 struct lp_fragment_shader
*shader
;
89 struct lp_fragment_shader_variant_key key
;
91 LLVMValueRef function
[2];
93 lp_jit_frag_func jit_function
[2];
95 struct lp_fragment_shader_variant
*next
;
100 * Subclass of pipe_shader_state (though it doesn't really need to be).
102 * This is starting to look an awful lot like a quad pipeline stage...
104 struct lp_fragment_shader
106 struct pipe_shader_state base
;
108 struct tgsi_shader_info info
;
110 struct lp_fragment_shader_variant
*variants
;
112 struct lp_fragment_shader_variant
*current
;
116 /** Subclass of pipe_shader_state */
117 struct lp_vertex_shader
{
118 struct pipe_shader_state shader
;
119 struct draw_vertex_shader
*draw_data
;
122 struct lp_velems_state
{
124 struct pipe_vertex_element velem
[PIPE_MAX_ATTRIBS
];
129 llvmpipe_create_blend_state(struct pipe_context
*,
130 const struct pipe_blend_state
*);
131 void llvmpipe_bind_blend_state(struct pipe_context
*,
133 void llvmpipe_delete_blend_state(struct pipe_context
*,
137 llvmpipe_create_sampler_state(struct pipe_context
*,
138 const struct pipe_sampler_state
*);
139 void llvmpipe_bind_sampler_states(struct pipe_context
*, unsigned, void **);
141 llvmpipe_bind_vertex_sampler_states(struct pipe_context
*,
142 unsigned num_samplers
,
144 void llvmpipe_delete_sampler_state(struct pipe_context
*, void *);
147 llvmpipe_create_depth_stencil_state(struct pipe_context
*,
148 const struct pipe_depth_stencil_alpha_state
*);
149 void llvmpipe_bind_depth_stencil_state(struct pipe_context
*, void *);
150 void llvmpipe_delete_depth_stencil_state(struct pipe_context
*, void *);
153 llvmpipe_create_rasterizer_state(struct pipe_context
*,
154 const struct pipe_rasterizer_state
*);
155 void llvmpipe_bind_rasterizer_state(struct pipe_context
*, void *);
156 void llvmpipe_delete_rasterizer_state(struct pipe_context
*, void *);
158 void llvmpipe_set_framebuffer_state( struct pipe_context
*,
159 const struct pipe_framebuffer_state
* );
161 void llvmpipe_set_blend_color( struct pipe_context
*pipe
,
162 const struct pipe_blend_color
*blend_color
);
164 void llvmpipe_set_stencil_ref( struct pipe_context
*pipe
,
165 const struct pipe_stencil_ref
*stencil_ref
);
167 void llvmpipe_set_clip_state( struct pipe_context
*,
168 const struct pipe_clip_state
* );
170 void llvmpipe_set_constant_buffer(struct pipe_context
*,
171 uint shader
, uint index
,
172 struct pipe_buffer
*buf
);
174 void *llvmpipe_create_fs_state(struct pipe_context
*,
175 const struct pipe_shader_state
*);
176 void llvmpipe_bind_fs_state(struct pipe_context
*, void *);
177 void llvmpipe_delete_fs_state(struct pipe_context
*, void *);
178 void *llvmpipe_create_vs_state(struct pipe_context
*,
179 const struct pipe_shader_state
*);
180 void llvmpipe_bind_vs_state(struct pipe_context
*, void *);
181 void llvmpipe_delete_vs_state(struct pipe_context
*, void *);
183 void *llvmpipe_create_vertex_elements_state(struct pipe_context
*,
185 const struct pipe_vertex_element
*);
186 void llvmpipe_bind_vertex_elements_state(struct pipe_context
*, void *);
187 void llvmpipe_delete_vertex_elements_state(struct pipe_context
*, void *);
189 void llvmpipe_set_polygon_stipple( struct pipe_context
*,
190 const struct pipe_poly_stipple
* );
192 void llvmpipe_set_scissor_state( struct pipe_context
*,
193 const struct pipe_scissor_state
* );
195 void llvmpipe_set_fragment_sampler_views(struct pipe_context
*,
197 struct pipe_sampler_view
**);
200 llvmpipe_set_vertex_sampler_views(struct pipe_context
*,
202 struct pipe_sampler_view
**);
204 struct pipe_sampler_view
*
205 llvmpipe_create_sampler_view(struct pipe_context
*pipe
,
206 struct pipe_texture
*texture
,
207 const struct pipe_sampler_view
*templ
);
210 llvmpipe_sampler_view_destroy(struct pipe_context
*pipe
,
211 struct pipe_sampler_view
*view
);
213 void llvmpipe_set_viewport_state( struct pipe_context
*,
214 const struct pipe_viewport_state
* );
216 void llvmpipe_set_vertex_buffers(struct pipe_context
*,
218 const struct pipe_vertex_buffer
*);
220 void llvmpipe_update_fs(struct llvmpipe_context
*lp
);
222 void llvmpipe_update_derived( struct llvmpipe_context
*llvmpipe
);
225 void llvmpipe_draw_arrays(struct pipe_context
*pipe
, unsigned mode
,
226 unsigned start
, unsigned count
);
228 void llvmpipe_draw_elements(struct pipe_context
*pipe
,
229 struct pipe_buffer
*indexBuffer
,
231 unsigned mode
, unsigned start
, unsigned count
);
233 llvmpipe_draw_range_elements(struct pipe_context
*pipe
,
234 struct pipe_buffer
*indexBuffer
,
238 unsigned mode
, unsigned start
, unsigned count
);
241 llvmpipe_map_texture_surfaces(struct llvmpipe_context
*lp
);
244 llvmpipe_unmap_texture_surfaces(struct llvmpipe_context
*lp
);