a9461899ad5e47c172d5f6d8b337a68facf5d0da
[mesa.git] / src / mesa / state_tracker / st_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 #include "main/imports.h"
29 #include "main/context.h"
30 #include "main/shaderobj.h"
31 #include "program/prog_cache.h"
32 #include "vbo/vbo.h"
33 #include "glapi/glapi.h"
34 #include "st_context.h"
35 #include "st_debug.h"
36 #include "st_cb_accum.h"
37 #include "st_cb_bitmap.h"
38 #include "st_cb_blit.h"
39 #include "st_cb_bufferobjects.h"
40 #include "st_cb_clear.h"
41 #include "st_cb_condrender.h"
42 #include "st_cb_drawpixels.h"
43 #include "st_cb_rasterpos.h"
44 #include "st_cb_drawtex.h"
45 #include "st_cb_eglimage.h"
46 #include "st_cb_fbo.h"
47 #include "st_cb_feedback.h"
48 #include "st_cb_program.h"
49 #include "st_cb_queryobj.h"
50 #include "st_cb_readpixels.h"
51 #include "st_cb_texture.h"
52 #include "st_cb_xformfb.h"
53 #include "st_cb_flush.h"
54 #include "st_cb_syncobj.h"
55 #include "st_cb_strings.h"
56 #include "st_cb_texturebarrier.h"
57 #include "st_cb_viewport.h"
58 #include "st_atom.h"
59 #include "st_draw.h"
60 #include "st_extensions.h"
61 #include "st_gen_mipmap.h"
62 #include "st_program.h"
63 #include "pipe/p_context.h"
64 #include "util/u_inlines.h"
65 #include "cso_cache/cso_context.h"
66
67
68 DEBUG_GET_ONCE_BOOL_OPTION(mesa_mvp_dp4, "MESA_MVP_DP4", FALSE)
69
70
71 /**
72 * Called via ctx->Driver.UpdateState()
73 */
74 void st_invalidate_state(struct gl_context * ctx, GLuint new_state)
75 {
76 struct st_context *st = st_context(ctx);
77
78 st->dirty.mesa |= new_state;
79 st->dirty.st |= ST_NEW_MESA;
80
81 /* This is the only core Mesa module we depend upon.
82 * No longer use swrast, swsetup, tnl.
83 */
84 _vbo_InvalidateState(ctx, new_state);
85 }
86
87
88 /**
89 * Check for multisample env var override.
90 */
91 int
92 st_get_msaa(void)
93 {
94 const char *msaa = _mesa_getenv("__GL_FSAA_MODE");
95 if (msaa)
96 return atoi(msaa);
97 return 0;
98 }
99
100
101 static struct st_context *
102 st_create_context_priv( struct gl_context *ctx, struct pipe_context *pipe )
103 {
104 uint i;
105 struct st_context *st = ST_CALLOC_STRUCT( st_context );
106
107 ctx->st = st;
108
109 st->ctx = ctx;
110 st->pipe = pipe;
111
112 /* XXX: this is one-off, per-screen init: */
113 st_debug_init();
114
115 /* state tracker needs the VBO module */
116 _vbo_CreateContext(ctx);
117
118 st->dirty.mesa = ~0;
119 st->dirty.st = ~0;
120
121 st->cso_context = cso_create_context(pipe);
122
123 st_init_atoms( st );
124 st_init_bitmap(st);
125 st_init_clear(st);
126 st_init_draw( st );
127 st_init_generate_mipmap(st);
128 st_init_blit(st);
129
130 if(pipe->screen->get_param(pipe->screen, PIPE_CAP_NPOT_TEXTURES))
131 st->internal_target = PIPE_TEXTURE_2D;
132 else
133 st->internal_target = PIPE_TEXTURE_RECT;
134
135 for (i = 0; i < PIPE_MAX_SAMPLERS; i++)
136 st->state.sampler_list[i] = &st->state.samplers[i];
137
138 for (i = 0; i < 3; i++) {
139 memset(&st->velems_util_draw[i], 0, sizeof(struct pipe_vertex_element));
140 st->velems_util_draw[i].src_offset = i * 4 * sizeof(float);
141 st->velems_util_draw[i].instance_divisor = 0;
142 st->velems_util_draw[i].vertex_buffer_index = 0;
143 st->velems_util_draw[i].src_format = PIPE_FORMAT_R32G32B32A32_FLOAT;
144 }
145
146 /* we want all vertex data to be placed in buffer objects */
147 vbo_use_buffer_objects(ctx);
148
149 /* Need these flags:
150 */
151 st->ctx->FragmentProgram._MaintainTexEnvProgram = GL_TRUE;
152
153 st->ctx->VertexProgram._MaintainTnlProgram = GL_TRUE;
154
155 st->pixel_xfer.cache = _mesa_new_program_cache();
156
157 st->force_msaa = st_get_msaa();
158
159 /* GL limits and extensions */
160 st_init_limits(st);
161 st_init_extensions(st);
162
163 return st;
164 }
165
166
167 struct st_context *st_create_context(gl_api api, struct pipe_context *pipe,
168 const struct gl_config *visual,
169 struct st_context *share)
170 {
171 struct gl_context *ctx;
172 struct gl_context *shareCtx = share ? share->ctx : NULL;
173 struct dd_function_table funcs;
174
175 /* Sanity checks */
176 assert(MESA_SHADER_VERTEX == PIPE_SHADER_VERTEX);
177 assert(MESA_SHADER_FRAGMENT == PIPE_SHADER_FRAGMENT);
178 assert(MESA_SHADER_GEOMETRY == PIPE_SHADER_GEOMETRY);
179
180 memset(&funcs, 0, sizeof(funcs));
181 st_init_driver_functions(&funcs);
182
183 ctx = _mesa_create_context(api, visual, shareCtx, &funcs, NULL);
184
185 /* XXX: need a capability bit in gallium to query if the pipe
186 * driver prefers DP4 or MUL/MAD for vertex transformation.
187 */
188 if (debug_get_option_mesa_mvp_dp4())
189 _mesa_set_mvp_with_dp4( ctx, GL_TRUE );
190
191 return st_create_context_priv(ctx, pipe);
192 }
193
194
195 static void st_destroy_context_priv( struct st_context *st )
196 {
197 uint i;
198
199 st_destroy_atoms( st );
200 st_destroy_draw( st );
201 st_destroy_generate_mipmap(st);
202 st_destroy_blit(st);
203 st_destroy_clear(st);
204 st_destroy_bitmap(st);
205 st_destroy_drawpix(st);
206 st_destroy_drawtex(st);
207
208 /* Unreference any user vertex buffers. */
209 for (i = 0; i < st->num_user_attribs; i++) {
210 pipe_resource_reference(&st->user_attrib[i].buffer, NULL);
211 }
212
213 for (i = 0; i < Elements(st->state.sampler_views); i++) {
214 pipe_sampler_view_reference(&st->state.sampler_views[i], NULL);
215 }
216
217 if (st->default_texture) {
218 st->ctx->Driver.DeleteTexture(st->ctx, st->default_texture);
219 st->default_texture = NULL;
220 }
221
222 free( st );
223 }
224
225
226 void st_destroy_context( struct st_context *st )
227 {
228 struct pipe_context *pipe = st->pipe;
229 struct cso_context *cso = st->cso_context;
230 struct gl_context *ctx = st->ctx;
231 GLuint i;
232
233 /* need to unbind and destroy CSO objects before anything else */
234 cso_release_all(st->cso_context);
235
236 st_reference_fragprog(st, &st->fp, NULL);
237 st_reference_vertprog(st, &st->vp, NULL);
238
239 /* release framebuffer surfaces */
240 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
241 pipe_surface_reference(&st->state.framebuffer.cbufs[i], NULL);
242 }
243 pipe_surface_reference(&st->state.framebuffer.zsbuf, NULL);
244
245 pipe->set_index_buffer(pipe, NULL);
246
247 for (i = 0; i < PIPE_SHADER_TYPES; i++) {
248 pipe->set_constant_buffer(pipe, i, 0, NULL);
249 }
250
251 _mesa_delete_program_cache(st->ctx, st->pixel_xfer.cache);
252
253 _vbo_DestroyContext(st->ctx);
254
255 st_destroy_program_variants(st);
256
257 _mesa_free_context_data(ctx);
258
259 st_destroy_context_priv(st);
260
261 cso_destroy_context(cso);
262
263 pipe->destroy( pipe );
264
265 free(ctx);
266 }
267
268
269 void st_init_driver_functions(struct dd_function_table *functions)
270 {
271 _mesa_init_shader_object_functions(functions);
272
273 st_init_accum_functions(functions);
274 st_init_blit_functions(functions);
275 st_init_bufferobject_functions(functions);
276 st_init_clear_functions(functions);
277 st_init_bitmap_functions(functions);
278 st_init_drawpixels_functions(functions);
279 st_init_rasterpos_functions(functions);
280
281 st_init_drawtex_functions(functions);
282
283 st_init_eglimage_functions(functions);
284
285 st_init_fbo_functions(functions);
286 st_init_feedback_functions(functions);
287 st_init_program_functions(functions);
288 st_init_query_functions(functions);
289 st_init_cond_render_functions(functions);
290 st_init_readpixels_functions(functions);
291 st_init_texture_functions(functions);
292 st_init_texture_barrier_functions(functions);
293 st_init_flush_functions(functions);
294 st_init_string_functions(functions);
295 st_init_viewport_functions(functions);
296
297 st_init_xformfb_functions(functions);
298 st_init_syncobj_functions(functions);
299
300 functions->UpdateState = st_invalidate_state;
301 }