gallium: disable stream output in drivers that support it
[mesa.git] / src / gallium / drivers / softpipe / sp_context.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 * Copyright 2008 VMware, Inc. All rights reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
29 /* Author:
30 * Keith Whitwell <keith@tungstengraphics.com>
31 */
32
33 #include "draw/draw_context.h"
34 #include "draw/draw_vbuf.h"
35 #include "pipe/p_defines.h"
36 #include "util/u_math.h"
37 #include "util/u_memory.h"
38 #include "util/u_pstipple.h"
39 #include "util/u_inlines.h"
40 #include "tgsi/tgsi_exec.h"
41 #include "vl/vl_decoder.h"
42 #include "vl/vl_video_buffer.h"
43 #include "sp_clear.h"
44 #include "sp_context.h"
45 #include "sp_flush.h"
46 #include "sp_prim_vbuf.h"
47 #include "sp_state.h"
48 #include "sp_surface.h"
49 #include "sp_tile_cache.h"
50 #include "sp_tex_tile_cache.h"
51 #include "sp_texture.h"
52 #include "sp_query.h"
53
54
55
56 /**
57 * Map any drawing surfaces which aren't already mapped
58 */
59 void
60 softpipe_map_transfers(struct softpipe_context *sp)
61 {
62 unsigned i;
63
64 for (i = 0; i < sp->framebuffer.nr_cbufs; i++) {
65 sp_tile_cache_map_transfers(sp->cbuf_cache[i]);
66 }
67
68 sp_tile_cache_map_transfers(sp->zsbuf_cache);
69 }
70
71
72 /**
73 * Unmap any mapped drawing surfaces
74 */
75 void
76 softpipe_unmap_transfers(struct softpipe_context *sp)
77 {
78 uint i;
79
80 for (i = 0; i < sp->framebuffer.nr_cbufs; i++) {
81 sp_tile_cache_unmap_transfers(sp->cbuf_cache[i]);
82 }
83
84 sp_tile_cache_unmap_transfers(sp->zsbuf_cache);
85 }
86
87
88 static void
89 softpipe_destroy( struct pipe_context *pipe )
90 {
91 struct softpipe_context *softpipe = softpipe_context( pipe );
92 uint i;
93
94 #if DO_PSTIPPLE_IN_HELPER_MODULE
95 if (softpipe->pstipple.sampler)
96 pipe->delete_sampler_state(pipe, softpipe->pstipple.sampler);
97
98 pipe_resource_reference(&softpipe->pstipple.texture, NULL);
99 pipe_sampler_view_reference(&softpipe->pstipple.sampler_view, NULL);
100 #endif
101
102 if (softpipe->draw)
103 draw_destroy( softpipe->draw );
104
105 if (softpipe->quad.shade)
106 softpipe->quad.shade->destroy( softpipe->quad.shade );
107
108 if (softpipe->quad.depth_test)
109 softpipe->quad.depth_test->destroy( softpipe->quad.depth_test );
110
111 if (softpipe->quad.blend)
112 softpipe->quad.blend->destroy( softpipe->quad.blend );
113
114 if (softpipe->quad.pstipple)
115 softpipe->quad.pstipple->destroy( softpipe->quad.pstipple );
116
117 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
118 sp_destroy_tile_cache(softpipe->cbuf_cache[i]);
119 pipe_surface_reference(&softpipe->framebuffer.cbufs[i], NULL);
120 }
121
122 sp_destroy_tile_cache(softpipe->zsbuf_cache);
123 pipe_surface_reference(&softpipe->framebuffer.zsbuf, NULL);
124
125 for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
126 sp_destroy_tex_tile_cache(softpipe->fragment_tex_cache[i]);
127 pipe_sampler_view_reference(&softpipe->fragment_sampler_views[i], NULL);
128 }
129
130 for (i = 0; i < PIPE_MAX_VERTEX_SAMPLERS; i++) {
131 sp_destroy_tex_tile_cache(softpipe->vertex_tex_cache[i]);
132 pipe_sampler_view_reference(&softpipe->vertex_sampler_views[i], NULL);
133 }
134
135 for (i = 0; i < PIPE_MAX_GEOMETRY_SAMPLERS; i++) {
136 sp_destroy_tex_tile_cache(softpipe->geometry_tex_cache[i]);
137 pipe_sampler_view_reference(&softpipe->geometry_sampler_views[i], NULL);
138 }
139
140 for (i = 0; i < PIPE_SHADER_TYPES; i++) {
141 uint j;
142
143 for (j = 0; j < PIPE_MAX_CONSTANT_BUFFERS; j++) {
144 if (softpipe->constants[i][j]) {
145 pipe_resource_reference(&softpipe->constants[i][j], NULL);
146 }
147 }
148 }
149
150 for (i = 0; i < softpipe->num_vertex_buffers; i++) {
151 pipe_resource_reference(&softpipe->vertex_buffer[i].buffer, NULL);
152 }
153
154 tgsi_exec_machine_destroy(softpipe->fs_machine);
155
156 FREE( softpipe );
157 }
158
159
160 /**
161 * if (the texture is being used as a framebuffer surface)
162 * return SP_REFERENCED_FOR_WRITE
163 * else if (the texture is a bound texture source)
164 * return SP_REFERENCED_FOR_READ
165 * else
166 * return SP_UNREFERENCED
167 */
168 unsigned int
169 softpipe_is_resource_referenced( struct pipe_context *pipe,
170 struct pipe_resource *texture,
171 unsigned level, int layer)
172 {
173 struct softpipe_context *softpipe = softpipe_context( pipe );
174 unsigned i;
175
176 if (texture->target == PIPE_BUFFER)
177 return SP_UNREFERENCED;
178
179 /* check if any of the bound drawing surfaces are this texture */
180 if (softpipe->dirty_render_cache) {
181 for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++) {
182 if (softpipe->framebuffer.cbufs[i] &&
183 softpipe->framebuffer.cbufs[i]->texture == texture) {
184 return SP_REFERENCED_FOR_WRITE;
185 }
186 }
187 if (softpipe->framebuffer.zsbuf &&
188 softpipe->framebuffer.zsbuf->texture == texture) {
189 return SP_REFERENCED_FOR_WRITE;
190 }
191 }
192
193 /* check if any of the tex_cache textures are this texture */
194 for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
195 if (softpipe->fragment_tex_cache[i] &&
196 softpipe->fragment_tex_cache[i]->texture == texture)
197 return SP_REFERENCED_FOR_READ;
198 }
199 for (i = 0; i < PIPE_MAX_VERTEX_SAMPLERS; i++) {
200 if (softpipe->vertex_tex_cache[i] &&
201 softpipe->vertex_tex_cache[i]->texture == texture)
202 return SP_REFERENCED_FOR_READ;
203 }
204 for (i = 0; i < PIPE_MAX_GEOMETRY_SAMPLERS; i++) {
205 if (softpipe->geometry_tex_cache[i] &&
206 softpipe->geometry_tex_cache[i]->texture == texture)
207 return SP_REFERENCED_FOR_READ;
208 }
209
210 return SP_UNREFERENCED;
211 }
212
213
214
215
216 static void
217 softpipe_render_condition( struct pipe_context *pipe,
218 struct pipe_query *query,
219 uint mode )
220 {
221 struct softpipe_context *softpipe = softpipe_context( pipe );
222
223 softpipe->render_cond_query = query;
224 softpipe->render_cond_mode = mode;
225 }
226
227
228
229 struct pipe_context *
230 softpipe_create_context( struct pipe_screen *screen,
231 void *priv )
232 {
233 struct softpipe_context *softpipe = CALLOC_STRUCT(softpipe_context);
234 uint i;
235
236 util_init_math();
237
238 softpipe->dump_fs = debug_get_bool_option( "SOFTPIPE_DUMP_FS", FALSE );
239 softpipe->dump_gs = debug_get_bool_option( "SOFTPIPE_DUMP_GS", FALSE );
240
241 softpipe->pipe.winsys = NULL;
242 softpipe->pipe.screen = screen;
243 softpipe->pipe.destroy = softpipe_destroy;
244 softpipe->pipe.priv = priv;
245
246 /* state setters */
247 softpipe_init_blend_funcs(&softpipe->pipe);
248 softpipe_init_clip_funcs(&softpipe->pipe);
249 softpipe_init_query_funcs( softpipe );
250 softpipe_init_rasterizer_funcs(&softpipe->pipe);
251 softpipe_init_sampler_funcs(&softpipe->pipe);
252 softpipe_init_shader_funcs(&softpipe->pipe);
253 softpipe_init_streamout_funcs(&softpipe->pipe);
254 softpipe_init_texture_funcs( &softpipe->pipe );
255 softpipe_init_vertex_funcs(&softpipe->pipe);
256
257 softpipe->pipe.set_framebuffer_state = softpipe_set_framebuffer_state;
258
259 softpipe->pipe.draw_vbo = softpipe_draw_vbo;
260 /* XXX softpipe->pipe.draw_stream_output = softpipe_draw_stream_output; */
261
262 softpipe->pipe.clear = softpipe_clear;
263 softpipe->pipe.flush = softpipe_flush_wrapped;
264
265 softpipe->pipe.render_condition = softpipe_render_condition;
266
267 softpipe->pipe.create_video_decoder = vl_create_decoder;
268 softpipe->pipe.create_video_buffer = vl_video_buffer_create;
269
270 /*
271 * Alloc caches for accessing drawing surfaces and textures.
272 * Must be before quad stage setup!
273 */
274 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++)
275 softpipe->cbuf_cache[i] = sp_create_tile_cache( &softpipe->pipe );
276 softpipe->zsbuf_cache = sp_create_tile_cache( &softpipe->pipe );
277
278 for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
279 softpipe->fragment_tex_cache[i] = sp_create_tex_tile_cache( &softpipe->pipe );
280 if (!softpipe->fragment_tex_cache[i])
281 goto fail;
282 }
283
284 for (i = 0; i < PIPE_MAX_VERTEX_SAMPLERS; i++) {
285 softpipe->vertex_tex_cache[i] = sp_create_tex_tile_cache( &softpipe->pipe );
286 if (!softpipe->vertex_tex_cache[i])
287 goto fail;
288 }
289
290 for (i = 0; i < PIPE_MAX_GEOMETRY_SAMPLERS; i++) {
291 softpipe->geometry_tex_cache[i] = sp_create_tex_tile_cache( &softpipe->pipe );
292 if (!softpipe->geometry_tex_cache[i])
293 goto fail;
294 }
295
296 softpipe->fs_machine = tgsi_exec_machine_create();
297
298 /* setup quad rendering stages */
299 softpipe->quad.shade = sp_quad_shade_stage(softpipe);
300 softpipe->quad.depth_test = sp_quad_depth_test_stage(softpipe);
301 softpipe->quad.blend = sp_quad_blend_stage(softpipe);
302 softpipe->quad.pstipple = sp_quad_polygon_stipple_stage(softpipe);
303
304
305 /*
306 * Create drawing context and plug our rendering stage into it.
307 */
308 softpipe->draw = draw_create(&softpipe->pipe);
309 if (!softpipe->draw)
310 goto fail;
311
312 draw_texture_samplers(softpipe->draw,
313 PIPE_SHADER_VERTEX,
314 PIPE_MAX_VERTEX_SAMPLERS,
315 (struct tgsi_sampler **)
316 softpipe->tgsi.vert_samplers_list);
317
318 draw_texture_samplers(softpipe->draw,
319 PIPE_SHADER_GEOMETRY,
320 PIPE_MAX_GEOMETRY_SAMPLERS,
321 (struct tgsi_sampler **)
322 softpipe->tgsi.geom_samplers_list);
323
324 if (debug_get_bool_option( "SOFTPIPE_NO_RAST", FALSE ))
325 softpipe->no_rast = TRUE;
326
327 softpipe->vbuf_backend = sp_create_vbuf_backend(softpipe);
328 if (!softpipe->vbuf_backend)
329 goto fail;
330
331 softpipe->vbuf = draw_vbuf_stage(softpipe->draw, softpipe->vbuf_backend);
332 if (!softpipe->vbuf)
333 goto fail;
334
335 draw_set_rasterize_stage(softpipe->draw, softpipe->vbuf);
336 draw_set_render(softpipe->draw, softpipe->vbuf_backend);
337
338
339 /* plug in AA line/point stages */
340 draw_install_aaline_stage(softpipe->draw, &softpipe->pipe);
341 draw_install_aapoint_stage(softpipe->draw, &softpipe->pipe);
342
343 /* Do polygon stipple w/ texture map + frag prog? */
344 #if DO_PSTIPPLE_IN_DRAW_MODULE
345 draw_install_pstipple_stage(softpipe->draw, &softpipe->pipe);
346 #endif
347
348 draw_wide_point_sprites(softpipe->draw, TRUE);
349
350 sp_init_surface_functions(softpipe);
351
352 #if DO_PSTIPPLE_IN_HELPER_MODULE
353 /* create the polgon stipple sampler */
354 softpipe->pstipple.sampler = util_pstipple_create_sampler(&softpipe->pipe);
355 #endif
356
357 return &softpipe->pipe;
358
359 fail:
360 softpipe_destroy(&softpipe->pipe);
361 return NULL;
362 }