mesa: Remove EXT_stencil_wrap extension enable flag
[mesa.git] / src / mesa / drivers / dri / nouveau / nouveau_context.c
1 /*
2 * Copyright (C) 2009-2010 Francisco Jerez.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 */
26
27 #include <stdbool.h>
28 #include "nouveau_driver.h"
29 #include "nouveau_context.h"
30 #include "nouveau_bufferobj.h"
31 #include "nouveau_fbo.h"
32
33 #include "main/dd.h"
34 #include "main/framebuffer.h"
35 #include "main/light.h"
36 #include "main/state.h"
37 #include "drivers/common/meta.h"
38 #include "drivers/common/driverfuncs.h"
39 #include "swrast/swrast.h"
40 #include "swrast/s_context.h"
41 #include "vbo/vbo.h"
42 #include "tnl/tnl.h"
43 #include "tnl/t_context.h"
44
45 static void
46 nouveau_channel_flush_notify(struct nouveau_channel *chan)
47 {
48 struct nouveau_context *nctx = chan->user_private;
49 struct gl_context *ctx = &nctx->base;
50
51 if (nctx->fallback < SWRAST)
52 nouveau_bo_state_emit(ctx);
53 }
54
55 GLboolean
56 nouveau_context_create(gl_api api,
57 const struct gl_config *visual, __DRIcontext *dri_ctx,
58 void *share_ctx)
59 {
60 __DRIscreen *dri_screen = dri_ctx->driScreenPriv;
61 struct nouveau_screen *screen = dri_screen->private;
62 struct nouveau_context *nctx;
63 struct gl_context *ctx;
64
65 ctx = screen->driver->context_create(screen, visual, share_ctx);
66 if (!ctx)
67 return GL_FALSE;
68
69 nctx = to_nouveau_context(ctx);
70 nctx->dri_context = dri_ctx;
71 dri_ctx->driverPrivate = ctx;
72
73 return GL_TRUE;
74 }
75
76 GLboolean
77 nouveau_context_init(struct gl_context *ctx, struct nouveau_screen *screen,
78 const struct gl_config *visual, struct gl_context *share_ctx)
79 {
80 struct nouveau_context *nctx = to_nouveau_context(ctx);
81 struct dd_function_table functions;
82 int ret;
83
84 nctx->screen = screen;
85 nctx->fallback = HWTNL;
86
87 /* Initialize the function pointers. */
88 _mesa_init_driver_functions(&functions);
89 nouveau_driver_functions_init(&functions);
90 nouveau_bufferobj_functions_init(&functions);
91 nouveau_texture_functions_init(&functions);
92 nouveau_fbo_functions_init(&functions);
93
94 /* Initialize the mesa context. */
95 _mesa_initialize_context(ctx, API_OPENGL, visual,
96 share_ctx, &functions, NULL);
97
98 nouveau_state_init(ctx);
99 nouveau_bo_state_init(ctx);
100 nouveau_scratch_init(ctx);
101 _mesa_meta_init(ctx);
102 _swrast_CreateContext(ctx);
103 _vbo_CreateContext(ctx);
104 _tnl_CreateContext(ctx);
105 nouveau_span_functions_init(ctx);
106 _mesa_allow_light_in_model(ctx, GL_FALSE);
107
108 /* Allocate a hardware channel. */
109 ret = nouveau_channel_alloc(context_dev(ctx), 0xbeef0201, 0xbeef0202,
110 512*1024, &nctx->hw.chan);
111 if (ret) {
112 nouveau_error("Error initializing the FIFO.\n");
113 return GL_FALSE;
114 }
115
116 nctx->hw.chan->flush_notify = nouveau_channel_flush_notify;
117 nctx->hw.chan->user_private = nctx;
118
119 /* Enable any supported extensions. */
120 ctx->Extensions.ARB_texture_mirrored_repeat = true;
121 ctx->Extensions.EXT_blend_color = true;
122 ctx->Extensions.EXT_blend_minmax = true;
123 ctx->Extensions.EXT_blend_subtract = true;
124 ctx->Extensions.EXT_fog_coord = true;
125 ctx->Extensions.EXT_framebuffer_blit = true;
126 ctx->Extensions.EXT_framebuffer_object = true;
127 ctx->Extensions.EXT_packed_depth_stencil = true;
128 ctx->Extensions.EXT_secondary_color = true;
129 ctx->Extensions.EXT_texture_filter_anisotropic = true;
130 ctx->Extensions.NV_blend_square = true;
131 ctx->Extensions.NV_texture_env_combine4 = true;
132
133 return GL_TRUE;
134 }
135
136 void
137 nouveau_context_deinit(struct gl_context *ctx)
138 {
139 struct nouveau_context *nctx = to_nouveau_context(ctx);
140
141 if (TNL_CONTEXT(ctx))
142 _tnl_DestroyContext(ctx);
143
144 if (vbo_context(ctx))
145 _vbo_DestroyContext(ctx);
146
147 if (SWRAST_CONTEXT(ctx))
148 _swrast_DestroyContext(ctx);
149
150 if (ctx->Meta)
151 _mesa_meta_free(ctx);
152
153 if (nctx->hw.chan)
154 nouveau_channel_free(&nctx->hw.chan);
155
156 nouveau_scratch_destroy(ctx);
157 nouveau_bo_state_destroy(ctx);
158 _mesa_free_context_data(ctx);
159 }
160
161 void
162 nouveau_context_destroy(__DRIcontext *dri_ctx)
163 {
164 struct nouveau_context *nctx = dri_ctx->driverPrivate;
165 struct gl_context *ctx = &nctx->base;
166
167 context_drv(ctx)->context_destroy(ctx);
168 }
169
170 void
171 nouveau_update_renderbuffers(__DRIcontext *dri_ctx, __DRIdrawable *draw)
172 {
173 struct gl_context *ctx = dri_ctx->driverPrivate;
174 struct nouveau_context *nctx = to_nouveau_context(ctx);
175 __DRIscreen *screen = dri_ctx->driScreenPriv;
176 struct gl_framebuffer *fb = draw->driverPrivate;
177 struct nouveau_framebuffer *nfb = to_nouveau_framebuffer(fb);
178 unsigned int attachments[10];
179 __DRIbuffer *buffers = NULL;
180 int i = 0, count, ret;
181
182 if (draw->lastStamp == *draw->pStamp)
183 return;
184 draw->lastStamp = *draw->pStamp;
185
186 if (nfb->need_front)
187 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
188 if (fb->Visual.doubleBufferMode)
189 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
190 if (fb->Visual.haveDepthBuffer && fb->Visual.haveStencilBuffer)
191 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
192 else if (fb->Visual.haveDepthBuffer)
193 attachments[i++] = __DRI_BUFFER_DEPTH;
194 else if (fb->Visual.haveStencilBuffer)
195 attachments[i++] = __DRI_BUFFER_STENCIL;
196
197 buffers = (*screen->dri2.loader->getBuffers)(draw, &draw->w, &draw->h,
198 attachments, i, &count,
199 draw->loaderPrivate);
200 if (buffers == NULL)
201 return;
202
203 for (i = 0; i < count; i++) {
204 struct gl_renderbuffer *rb;
205 struct nouveau_surface *s;
206 uint32_t old_name;
207 int index;
208
209 switch (buffers[i].attachment) {
210 case __DRI_BUFFER_FRONT_LEFT:
211 case __DRI_BUFFER_FAKE_FRONT_LEFT:
212 index = BUFFER_FRONT_LEFT;
213 break;
214 case __DRI_BUFFER_BACK_LEFT:
215 index = BUFFER_BACK_LEFT;
216 break;
217 case __DRI_BUFFER_DEPTH:
218 case __DRI_BUFFER_DEPTH_STENCIL:
219 index = BUFFER_DEPTH;
220 break;
221 case __DRI_BUFFER_STENCIL:
222 index = BUFFER_STENCIL;
223 break;
224 default:
225 assert(0);
226 }
227
228 rb = fb->Attachment[index].Renderbuffer;
229 s = &to_nouveau_renderbuffer(rb)->surface;
230
231 s->width = draw->w;
232 s->height = draw->h;
233 s->pitch = buffers[i].pitch;
234 s->cpp = buffers[i].cpp;
235
236 if (index == BUFFER_DEPTH && s->bo) {
237 ret = nouveau_bo_handle_get(s->bo, &old_name);
238 /*
239 * Disable fast Z clears in the next frame, the
240 * depth buffer contents are undefined.
241 */
242 if (!ret && old_name != buffers[i].name)
243 nctx->hierz.clear_seq = 0;
244 }
245
246 nouveau_bo_ref(NULL, &s->bo);
247 ret = nouveau_bo_handle_ref(context_dev(ctx),
248 buffers[i].name, &s->bo);
249 assert(!ret);
250 }
251
252 _mesa_resize_framebuffer(ctx, fb, draw->w, draw->h);
253 }
254
255 static void
256 update_framebuffer(__DRIcontext *dri_ctx, __DRIdrawable *draw,
257 int *stamp)
258 {
259 struct gl_context *ctx = dri_ctx->driverPrivate;
260 struct gl_framebuffer *fb = draw->driverPrivate;
261
262 *stamp = *draw->pStamp;
263
264 nouveau_update_renderbuffers(dri_ctx, draw);
265 _mesa_resize_framebuffer(ctx, fb, draw->w, draw->h);
266
267 /* Clean up references to the old framebuffer objects. */
268 context_dirty(ctx, FRAMEBUFFER);
269 context_bctx(ctx, FRAMEBUFFER);
270 FIRE_RING(context_chan(ctx));
271 }
272
273 GLboolean
274 nouveau_context_make_current(__DRIcontext *dri_ctx, __DRIdrawable *dri_draw,
275 __DRIdrawable *dri_read)
276 {
277 if (dri_ctx) {
278 struct nouveau_context *nctx = dri_ctx->driverPrivate;
279 struct gl_context *ctx = &nctx->base;
280
281 /* Ask the X server for new renderbuffers. */
282 if (dri_draw->driverPrivate != ctx->WinSysDrawBuffer)
283 update_framebuffer(dri_ctx, dri_draw,
284 &dri_ctx->dri2.draw_stamp);
285
286 if (dri_draw != dri_read &&
287 dri_read->driverPrivate != ctx->WinSysReadBuffer)
288 update_framebuffer(dri_ctx, dri_read,
289 &dri_ctx->dri2.read_stamp);
290
291 /* Pass it down to mesa. */
292 _mesa_make_current(ctx, dri_draw->driverPrivate,
293 dri_read->driverPrivate);
294 _mesa_update_state(ctx);
295
296 } else {
297 _mesa_make_current(NULL, NULL, NULL);
298 }
299
300 return GL_TRUE;
301 }
302
303 GLboolean
304 nouveau_context_unbind(__DRIcontext *dri_ctx)
305 {
306 /* Unset current context and dispatch table */
307 _mesa_make_current(NULL, NULL, NULL);
308
309 return GL_TRUE;
310 }
311
312 void
313 nouveau_fallback(struct gl_context *ctx, enum nouveau_fallback mode)
314 {
315 struct nouveau_context *nctx = to_nouveau_context(ctx);
316
317 nctx->fallback = MAX2(HWTNL, mode);
318
319 if (mode < SWRAST) {
320 nouveau_state_emit(ctx);
321 nouveau_bo_state_emit(ctx);
322 } else {
323 FIRE_RING(context_chan(ctx));
324 }
325 }
326
327 static void
328 validate_framebuffer(__DRIcontext *dri_ctx, __DRIdrawable *draw,
329 int *stamp)
330 {
331 struct gl_framebuffer *fb = draw->driverPrivate;
332 struct nouveau_framebuffer *nfb = to_nouveau_framebuffer(fb);
333 GLboolean need_front =
334 (fb->_ColorDrawBufferIndexes[0] == BUFFER_FRONT_LEFT ||
335 fb->_ColorReadBufferIndex == BUFFER_FRONT_LEFT);
336
337 if (nfb->need_front != need_front) {
338 nfb->need_front = need_front;
339 dri2InvalidateDrawable(draw);
340 }
341
342 if (*draw->pStamp != *stamp)
343 update_framebuffer(dri_ctx, draw, stamp);
344 }
345
346 void
347 nouveau_validate_framebuffer(struct gl_context *ctx)
348 {
349 __DRIcontext *dri_ctx = to_nouveau_context(ctx)->dri_context;
350 __DRIdrawable *dri_draw = dri_ctx->driDrawablePriv;
351 __DRIdrawable *dri_read = dri_ctx->driReadablePriv;
352
353 if (ctx->DrawBuffer->Name == 0)
354 validate_framebuffer(dri_ctx, dri_draw,
355 &dri_ctx->dri2.draw_stamp);
356
357 if (ctx->ReadBuffer->Name == 0)
358 validate_framebuffer(dri_ctx, dri_read,
359 &dri_ctx->dri2.read_stamp);
360
361 if (ctx->NewState & _NEW_BUFFERS)
362 _mesa_update_state(ctx);
363 }