4f22539629db6a2262238a8d26bd3ac8c6e6f814
[mesa.git] / src / mesa / pipe / softpipe / sp_context.c
1 /**************************************************************************
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 /* Author:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 */
31
32 #include "pipe/draw/draw_context.h"
33 #include "pipe/p_defines.h"
34 #include "pipe/p_inlines.h"
35 #include "pipe/p_util.h"
36 #include "sp_clear.h"
37 #include "sp_context.h"
38 #include "sp_flush.h"
39 #include "sp_prim_setup.h"
40 #include "sp_state.h"
41 #include "sp_surface.h"
42 #include "sp_tile_cache.h"
43 #include "sp_texture.h"
44 #include "sp_winsys.h"
45 #include "sp_query.h"
46
47
48
49 /**
50 * Query format support for creating a texture, drawing surface, etc.
51 * \param format the format to test
52 * \param type one of PIPE_TEXTURE, PIPE_SURFACE
53 */
54 static boolean
55 softpipe_is_format_supported( struct pipe_context *pipe,
56 enum pipe_format format, uint type )
57 {
58 switch (type) {
59 case PIPE_TEXTURE:
60 /* softpipe supports all texture formats */
61 return TRUE;
62 case PIPE_SURFACE:
63 /* softpipe supports all (off-screen) surface formats */
64 return TRUE;
65 default:
66 assert(0);
67 return FALSE;
68 }
69 }
70
71
72 /**
73 * Map any drawing surfaces which aren't already mapped
74 */
75 void
76 softpipe_map_surfaces(struct softpipe_context *sp)
77 {
78 struct pipe_surface *ps;
79 unsigned i;
80
81 for (i = 0; i < sp->framebuffer.num_cbufs; i++) {
82 ps = sp->framebuffer.cbufs[i];
83 if (ps->buffer && !ps->map)
84 pipe_surface_map(ps);
85 }
86
87 ps = sp->framebuffer.zbuf;
88 if (ps && ps->buffer && !ps->map)
89 pipe_surface_map(ps);
90
91 ps = sp->framebuffer.sbuf;
92 if (ps && ps->buffer && !ps->map)
93 pipe_surface_map(ps);
94 }
95
96
97 /**
98 * Unmap any mapped drawing surfaces
99 */
100 void
101 softpipe_unmap_surfaces(struct softpipe_context *sp)
102 {
103 struct pipe_surface *ps;
104 uint i;
105
106 for (i = 0; i < sp->framebuffer.num_cbufs; i++)
107 sp_flush_tile_cache(sp, sp->cbuf_cache[i]);
108 sp_flush_tile_cache(sp, sp->zbuf_cache);
109 sp_flush_tile_cache(sp, sp->sbuf_cache);
110
111 for (i = 0; i < sp->framebuffer.num_cbufs; i++) {
112 ps = sp->framebuffer.cbufs[i];
113 if (ps->map)
114 pipe_surface_unmap(ps);
115 }
116
117 ps = sp->framebuffer.zbuf;
118 if (ps && ps->map)
119 pipe_surface_unmap(ps);
120
121 ps = sp->framebuffer.sbuf;
122 if (ps && ps->map)
123 pipe_surface_unmap(ps);
124 }
125
126
127 static void softpipe_destroy( struct pipe_context *pipe )
128 {
129 struct softpipe_context *softpipe = softpipe_context( pipe );
130 struct pipe_winsys *ws = pipe->winsys;
131 uint i;
132
133 draw_destroy( softpipe->draw );
134
135 softpipe->quad.polygon_stipple->destroy( softpipe->quad.polygon_stipple );
136 softpipe->quad.earlyz->destroy( softpipe->quad.earlyz );
137 softpipe->quad.shade->destroy( softpipe->quad.shade );
138 softpipe->quad.alpha_test->destroy( softpipe->quad.alpha_test );
139 softpipe->quad.depth_test->destroy( softpipe->quad.depth_test );
140 softpipe->quad.stencil_test->destroy( softpipe->quad.stencil_test );
141 softpipe->quad.occlusion->destroy( softpipe->quad.occlusion );
142 softpipe->quad.coverage->destroy( softpipe->quad.coverage );
143 softpipe->quad.bufloop->destroy( softpipe->quad.bufloop );
144 softpipe->quad.blend->destroy( softpipe->quad.blend );
145 softpipe->quad.colormask->destroy( softpipe->quad.colormask );
146 softpipe->quad.output->destroy( softpipe->quad.output );
147
148 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++)
149 sp_destroy_tile_cache(softpipe->cbuf_cache[i]);
150 sp_destroy_tile_cache(softpipe->zbuf_cache);
151 sp_destroy_tile_cache(softpipe->sbuf_cache_sep);
152
153 for (i = 0; i < PIPE_MAX_SAMPLERS; i++)
154 sp_destroy_tile_cache(softpipe->tex_cache[i]);
155
156 for (i = 0; i < Elements(softpipe->constants); i++) {
157 if (softpipe->constants[i].buffer) {
158 ws->buffer_reference(ws, &softpipe->constants[i].buffer, NULL);
159 }
160 }
161
162 FREE( softpipe );
163 }
164
165
166 static const char *softpipe_get_name( struct pipe_context *pipe )
167 {
168 return "softpipe";
169 }
170
171 static const char *softpipe_get_vendor( struct pipe_context *pipe )
172 {
173 return "Tungsten Graphics, Inc.";
174 }
175
176 static int softpipe_get_param(struct pipe_context *pipe, int param)
177 {
178 switch (param) {
179 case PIPE_CAP_MAX_TEXTURE_IMAGE_UNITS:
180 return 8;
181 case PIPE_CAP_NPOT_TEXTURES:
182 return 1;
183 case PIPE_CAP_TWO_SIDED_STENCIL:
184 return 1;
185 case PIPE_CAP_GLSL:
186 return 1;
187 case PIPE_CAP_S3TC:
188 return 0;
189 case PIPE_CAP_ANISOTROPIC_FILTER:
190 return 0;
191 case PIPE_CAP_POINT_SPRITE:
192 return 1;
193 case PIPE_CAP_MAX_RENDER_TARGETS:
194 return 1;
195 case PIPE_CAP_OCCLUSION_QUERY:
196 return 1;
197 case PIPE_CAP_TEXTURE_SHADOW_MAP:
198 return 1;
199 case PIPE_CAP_MAX_TEXTURE_2D_LEVELS:
200 return 12; /* max 2Kx2K */
201 case PIPE_CAP_MAX_TEXTURE_3D_LEVELS:
202 return 8; /* max 128x128x128 */
203 case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS:
204 return 12; /* max 2Kx2K */
205 default:
206 return 0;
207 }
208 }
209
210 static float softpipe_get_paramf(struct pipe_context *pipe, int param)
211 {
212 switch (param) {
213 case PIPE_CAP_MAX_LINE_WIDTH:
214 /* fall-through */
215 case PIPE_CAP_MAX_LINE_WIDTH_AA:
216 return 255.0; /* arbitrary */
217
218 case PIPE_CAP_MAX_POINT_WIDTH:
219 /* fall-through */
220 case PIPE_CAP_MAX_POINT_WIDTH_AA:
221 return 255.0; /* arbitrary */
222
223 case PIPE_CAP_MAX_TEXTURE_ANISOTROPY:
224 return 0.0;
225
226 case PIPE_CAP_MAX_TEXTURE_LOD_BIAS:
227 return 16.0; /* arbitrary */
228
229 default:
230 return 0;
231 }
232 }
233
234 struct pipe_context *softpipe_create( struct pipe_winsys *pipe_winsys,
235 struct softpipe_winsys *softpipe_winsys )
236 {
237 struct softpipe_context *softpipe = CALLOC_STRUCT(softpipe_context);
238 uint i;
239
240 #if defined(__i386__) || defined(__386__)
241 softpipe->use_sse = GETENV( "GALLIUM_NOSSE" ) == NULL;
242 #else
243 softpipe->use_sse = FALSE;
244 #endif
245
246 softpipe->dump_fs = GETENV( "GALLIUM_DUMP_FS" ) != NULL;
247
248 softpipe->pipe.winsys = pipe_winsys;
249 softpipe->pipe.destroy = softpipe_destroy;
250
251 /* queries */
252 softpipe->pipe.is_format_supported = softpipe_is_format_supported;
253 softpipe->pipe.get_name = softpipe_get_name;
254 softpipe->pipe.get_vendor = softpipe_get_vendor;
255 softpipe->pipe.get_param = softpipe_get_param;
256 softpipe->pipe.get_paramf = softpipe_get_paramf;
257
258 /* state setters */
259 softpipe->pipe.create_blend_state = softpipe_create_blend_state;
260 softpipe->pipe.bind_blend_state = softpipe_bind_blend_state;
261 softpipe->pipe.delete_blend_state = softpipe_delete_blend_state;
262
263 softpipe->pipe.create_sampler_state = softpipe_create_sampler_state;
264 softpipe->pipe.bind_sampler_state = softpipe_bind_sampler_state;
265 softpipe->pipe.delete_sampler_state = softpipe_delete_sampler_state;
266
267 softpipe->pipe.create_depth_stencil_alpha_state = softpipe_create_depth_stencil_state;
268 softpipe->pipe.bind_depth_stencil_alpha_state = softpipe_bind_depth_stencil_state;
269 softpipe->pipe.delete_depth_stencil_alpha_state = softpipe_delete_depth_stencil_state;
270
271 softpipe->pipe.create_rasterizer_state = softpipe_create_rasterizer_state;
272 softpipe->pipe.bind_rasterizer_state = softpipe_bind_rasterizer_state;
273 softpipe->pipe.delete_rasterizer_state = softpipe_delete_rasterizer_state;
274
275 softpipe->pipe.create_fs_state = softpipe_create_fs_state;
276 softpipe->pipe.bind_fs_state = softpipe_bind_fs_state;
277 softpipe->pipe.delete_fs_state = softpipe_delete_fs_state;
278
279 softpipe->pipe.create_vs_state = softpipe_create_vs_state;
280 softpipe->pipe.bind_vs_state = softpipe_bind_vs_state;
281 softpipe->pipe.delete_vs_state = softpipe_delete_vs_state;
282
283 softpipe->pipe.set_blend_color = softpipe_set_blend_color;
284 softpipe->pipe.set_clip_state = softpipe_set_clip_state;
285 softpipe->pipe.set_constant_buffer = softpipe_set_constant_buffer;
286 softpipe->pipe.set_framebuffer_state = softpipe_set_framebuffer_state;
287 softpipe->pipe.set_polygon_stipple = softpipe_set_polygon_stipple;
288 softpipe->pipe.set_scissor_state = softpipe_set_scissor_state;
289 softpipe->pipe.set_sampler_texture = softpipe_set_sampler_texture;
290 softpipe->pipe.set_viewport_state = softpipe_set_viewport_state;
291
292 softpipe->pipe.set_vertex_buffer = softpipe_set_vertex_buffer;
293 softpipe->pipe.set_vertex_element = softpipe_set_vertex_element;
294
295 softpipe->pipe.draw_arrays = softpipe_draw_arrays;
296 softpipe->pipe.draw_elements = softpipe_draw_elements;
297
298 softpipe->pipe.clear = softpipe_clear;
299 softpipe->pipe.flush = softpipe_flush;
300
301 softpipe_init_query_funcs( softpipe );
302
303 /* textures */
304 softpipe->pipe.texture_create = softpipe_texture_create;
305 softpipe->pipe.texture_release = softpipe_texture_release;
306 softpipe->pipe.get_tex_surface = softpipe_get_tex_surface;
307
308 /*
309 * Alloc caches for accessing drawing surfaces and textures.
310 * Must be before quad stage setup!
311 */
312 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++)
313 softpipe->cbuf_cache[i] = sp_create_tile_cache();
314 softpipe->zbuf_cache = sp_create_tile_cache();
315 softpipe->sbuf_cache_sep = sp_create_tile_cache();
316 softpipe->sbuf_cache = softpipe->sbuf_cache_sep; /* initial value */
317
318 for (i = 0; i < PIPE_MAX_SAMPLERS; i++)
319 softpipe->tex_cache[i] = sp_create_tile_cache();
320
321
322 /* setup quad rendering stages */
323 softpipe->quad.polygon_stipple = sp_quad_polygon_stipple_stage(softpipe);
324 softpipe->quad.earlyz = sp_quad_earlyz_stage(softpipe);
325 softpipe->quad.shade = sp_quad_shade_stage(softpipe);
326 softpipe->quad.alpha_test = sp_quad_alpha_test_stage(softpipe);
327 softpipe->quad.depth_test = sp_quad_depth_test_stage(softpipe);
328 softpipe->quad.stencil_test = sp_quad_stencil_test_stage(softpipe);
329 softpipe->quad.occlusion = sp_quad_occlusion_stage(softpipe);
330 softpipe->quad.coverage = sp_quad_coverage_stage(softpipe);
331 softpipe->quad.bufloop = sp_quad_bufloop_stage(softpipe);
332 softpipe->quad.blend = sp_quad_blend_stage(softpipe);
333 softpipe->quad.colormask = sp_quad_colormask_stage(softpipe);
334 softpipe->quad.output = sp_quad_output_stage(softpipe);
335
336 softpipe->winsys = softpipe_winsys;
337
338 /*
339 * Create drawing context and plug our rendering stage into it.
340 */
341 softpipe->draw = draw_create();
342 assert(softpipe->draw);
343 softpipe->setup = sp_draw_render_stage(softpipe);
344
345 if (GETENV( "SP_VBUF" ) != NULL) {
346 softpipe->vbuf = sp_draw_vbuf_stage(softpipe->draw,
347 &softpipe->pipe,
348 sp_vbuf_render);
349
350 draw_set_rasterize_stage(softpipe->draw, softpipe->vbuf);
351 }
352 else {
353 draw_set_rasterize_stage(softpipe->draw, softpipe->setup);
354 }
355
356 sp_init_surface_functions(softpipe);
357
358 return &softpipe->pipe;
359 }