blob: 8f68f12bed774f09e8d29d0fa1bf14bcad9b8072 [file] [log] [blame]
José Fonseca946f4322009-07-26 23:44:38 +01001/**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
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:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
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.
25 *
26 **************************************************************************/
27
28/* Authors: Keith Whitwell <keith@tungstengraphics.com>
29 */
30
José Fonsecac9a59302009-07-27 11:36:24 +010031#ifndef LP_STATE_H
32#define LP_STATE_H
José Fonseca946f4322009-07-26 23:44:38 +010033
José Fonseca2d6b39f2009-08-09 23:10:19 +010034#include <llvm-c/Core.h>
35
José Fonseca946f4322009-07-26 23:44:38 +010036#include "pipe/p_state.h"
37#include "tgsi/tgsi_scan.h"
José Fonseca08dd41f2009-08-23 05:52:20 +010038#include "lp_jit.h"
Zack Rusinc61bf362010-02-08 18:05:22 -050039#include "gallivm/lp_bld_sample.h" /* for struct lp_sampler_static_state */
José Fonseca946f4322009-07-26 23:44:38 +010040
41
José Fonsecac9a59302009-07-27 11:36:24 +010042#define LP_NEW_VIEWPORT 0x1
43#define LP_NEW_RASTERIZER 0x2
44#define LP_NEW_FS 0x4
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_TEXTURE 0x800
54#define LP_NEW_VERTEX 0x1000
55#define LP_NEW_VS 0x2000
56#define LP_NEW_QUERY 0x4000
José Fonsecad904ed82009-10-09 13:41:33 +010057#define LP_NEW_BLEND_COLOR 0x8000
José Fonseca946f4322009-07-26 23:44:38 +010058
59
José Fonseca946f4322009-07-26 23:44:38 +010060struct vertex_info;
José Fonsecae4c76c02009-09-07 14:52:39 +010061struct pipe_context;
62struct llvmpipe_context;
José Fonseca946f4322009-07-26 23:44:38 +010063
José Fonseca9ae47062009-08-19 20:42:50 +010064struct lp_fragment_shader;
65
66
José Fonsecae3b38e52009-08-21 07:48:04 +010067struct lp_fragment_shader_variant_key
68{
69 struct pipe_depth_state depth;
70 struct pipe_alpha_state alpha;
José Fonseca98971802009-08-22 12:39:44 +010071 struct pipe_blend_state blend;
Keith Whitwell86f45002010-01-11 12:06:51 +000072 enum pipe_format zsbuf_format;
73 unsigned nr_cbufs:8;
74 unsigned flatshade:1;
Brian Paul44614422010-01-14 19:15:00 -070075 unsigned scissor:1;
José Fonsecae4c76c02009-09-07 14:52:39 +010076
Keith Whitwellc1a04412010-01-10 17:22:09 +000077 struct {
78 ubyte colormask;
79 } cbuf_blend[PIPE_MAX_COLOR_BUFS];
80
José Fonsecae4c76c02009-09-07 14:52:39 +010081 struct lp_sampler_static_state sampler[PIPE_MAX_SAMPLERS];
José Fonsecae3b38e52009-08-21 07:48:04 +010082};
83
84
José Fonseca9ae47062009-08-19 20:42:50 +010085struct lp_fragment_shader_variant
86{
87 struct lp_fragment_shader *shader;
José Fonsecae3b38e52009-08-21 07:48:04 +010088
89 struct lp_fragment_shader_variant_key key;
José Fonseca9ae47062009-08-19 20:42:50 +010090
Brian Paul2797f2b2010-01-15 11:21:16 -070091 LLVMValueRef function[2];
José Fonseca9ae47062009-08-19 20:42:50 +010092
Brian Paul2797f2b2010-01-15 11:21:16 -070093 lp_jit_frag_func jit_function[2];
José Fonseca9ae47062009-08-19 20:42:50 +010094
95 struct lp_fragment_shader_variant *next;
96};
97
98
José Fonseca946f4322009-07-26 23:44:38 +010099/**
100 * Subclass of pipe_shader_state (though it doesn't really need to be).
101 *
102 * This is starting to look an awful lot like a quad pipeline stage...
103 */
José Fonseca73af91e2009-08-14 10:27:32 +0100104struct lp_fragment_shader
105{
106 struct pipe_shader_state base;
José Fonseca946f4322009-07-26 23:44:38 +0100107
108 struct tgsi_shader_info info;
109
José Fonseca9ae47062009-08-19 20:42:50 +0100110 struct lp_fragment_shader_variant *variants;
José Fonseca946f4322009-07-26 23:44:38 +0100111
José Fonseca9ae47062009-08-19 20:42:50 +0100112 struct lp_fragment_shader_variant *current;
José Fonseca946f4322009-07-26 23:44:38 +0100113};
114
115
116/** Subclass of pipe_shader_state */
117struct lp_vertex_shader {
118 struct pipe_shader_state shader;
119 struct draw_vertex_shader *draw_data;
120};
121
122
José Fonseca946f4322009-07-26 23:44:38 +0100123
124void *
125llvmpipe_create_blend_state(struct pipe_context *,
126 const struct pipe_blend_state *);
127void llvmpipe_bind_blend_state(struct pipe_context *,
128 void *);
129void llvmpipe_delete_blend_state(struct pipe_context *,
130 void *);
131
132void *
133llvmpipe_create_sampler_state(struct pipe_context *,
134 const struct pipe_sampler_state *);
135void llvmpipe_bind_sampler_states(struct pipe_context *, unsigned, void **);
José Fonsecac0a13bb2009-12-04 21:25:40 +0000136void
137llvmpipe_bind_vertex_sampler_states(struct pipe_context *,
138 unsigned num_samplers,
139 void **samplers);
José Fonseca946f4322009-07-26 23:44:38 +0100140void llvmpipe_delete_sampler_state(struct pipe_context *, void *);
141
142void *
143llvmpipe_create_depth_stencil_state(struct pipe_context *,
144 const struct pipe_depth_stencil_alpha_state *);
145void llvmpipe_bind_depth_stencil_state(struct pipe_context *, void *);
146void llvmpipe_delete_depth_stencil_state(struct pipe_context *, void *);
147
148void *
149llvmpipe_create_rasterizer_state(struct pipe_context *,
150 const struct pipe_rasterizer_state *);
151void llvmpipe_bind_rasterizer_state(struct pipe_context *, void *);
152void llvmpipe_delete_rasterizer_state(struct pipe_context *, void *);
153
154void llvmpipe_set_framebuffer_state( struct pipe_context *,
155 const struct pipe_framebuffer_state * );
156
157void llvmpipe_set_blend_color( struct pipe_context *pipe,
158 const struct pipe_blend_color *blend_color );
159
160void llvmpipe_set_clip_state( struct pipe_context *,
161 const struct pipe_clip_state * );
162
163void llvmpipe_set_constant_buffer(struct pipe_context *,
164 uint shader, uint index,
Roland Scheidegger70c8d2a2010-01-11 16:30:48 +0100165 struct pipe_buffer *buf);
José Fonseca946f4322009-07-26 23:44:38 +0100166
167void *llvmpipe_create_fs_state(struct pipe_context *,
168 const struct pipe_shader_state *);
169void llvmpipe_bind_fs_state(struct pipe_context *, void *);
170void llvmpipe_delete_fs_state(struct pipe_context *, void *);
171void *llvmpipe_create_vs_state(struct pipe_context *,
172 const struct pipe_shader_state *);
173void llvmpipe_bind_vs_state(struct pipe_context *, void *);
174void llvmpipe_delete_vs_state(struct pipe_context *, void *);
175
176void llvmpipe_set_polygon_stipple( struct pipe_context *,
177 const struct pipe_poly_stipple * );
178
179void llvmpipe_set_scissor_state( struct pipe_context *,
180 const struct pipe_scissor_state * );
181
182void llvmpipe_set_sampler_textures( struct pipe_context *,
183 unsigned num,
184 struct pipe_texture ** );
185
José Fonsecac0a13bb2009-12-04 21:25:40 +0000186void
187llvmpipe_set_vertex_sampler_textures(struct pipe_context *,
188 unsigned num_textures,
189 struct pipe_texture **);
190
José Fonseca946f4322009-07-26 23:44:38 +0100191void llvmpipe_set_viewport_state( struct pipe_context *,
192 const struct pipe_viewport_state * );
193
194void llvmpipe_set_vertex_elements(struct pipe_context *,
195 unsigned count,
196 const struct pipe_vertex_element *);
197
198void llvmpipe_set_vertex_buffers(struct pipe_context *,
199 unsigned count,
200 const struct pipe_vertex_buffer *);
201
José Fonseca9ae47062009-08-19 20:42:50 +0100202void llvmpipe_update_fs(struct llvmpipe_context *lp);
José Fonseca946f4322009-07-26 23:44:38 +0100203
204void llvmpipe_update_derived( struct llvmpipe_context *llvmpipe );
205
206
Keith Whitwell03f212b2009-12-21 22:47:21 +0000207void llvmpipe_draw_arrays(struct pipe_context *pipe, unsigned mode,
José Fonseca946f4322009-07-26 23:44:38 +0100208 unsigned start, unsigned count);
209
Keith Whitwell03f212b2009-12-21 22:47:21 +0000210void llvmpipe_draw_elements(struct pipe_context *pipe,
José Fonseca946f4322009-07-26 23:44:38 +0100211 struct pipe_buffer *indexBuffer,
212 unsigned indexSize,
213 unsigned mode, unsigned start, unsigned count);
Keith Whitwell03f212b2009-12-21 22:47:21 +0000214void
José Fonseca946f4322009-07-26 23:44:38 +0100215llvmpipe_draw_range_elements(struct pipe_context *pipe,
216 struct pipe_buffer *indexBuffer,
217 unsigned indexSize,
218 unsigned min_index,
219 unsigned max_index,
220 unsigned mode, unsigned start, unsigned count);
221
222void
José Fonseca946f4322009-07-26 23:44:38 +0100223llvmpipe_map_texture_surfaces(struct llvmpipe_context *lp);
224
225void
226llvmpipe_unmap_texture_surfaces(struct llvmpipe_context *lp);
227
228
José Fonseca946f4322009-07-26 23:44:38 +0100229#endif