st/dri: Only ask for fake front buffer for single buffer visuals by default.
[mesa.git] / src / gallium / state_trackers / dri / dri_drawable.c
1 /**************************************************************************
2 *
3 * Copyright 2009, VMware, Inc.
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 VMWARE 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: Keith Whitwell <keithw@vmware.com>
29 * Author: Jakob Bornecrantz <wallbraker@gmail.com>
30 */
31
32 #include "dri_screen.h"
33 #include "dri_context.h"
34 #include "dri_drawable.h"
35
36 #include "pipe/p_context.h"
37 #include "pipe/p_screen.h"
38 #include "pipe/p_inlines.h"
39 #include "state_tracker/drm_api.h"
40 #include "state_tracker/dri1_api.h"
41 #include "state_tracker/st_public.h"
42 #include "state_tracker/st_context.h"
43 #include "state_tracker/st_cb_fbo.h"
44
45 #include "util/u_memory.h"
46
47 static struct pipe_surface *
48 dri_surface_from_handle(struct drm_api *api,
49 struct pipe_screen *screen,
50 unsigned handle,
51 enum pipe_format format,
52 unsigned width, unsigned height, unsigned pitch)
53 {
54 struct pipe_surface *surface = NULL;
55 struct pipe_texture *texture = NULL;
56 struct pipe_texture templat;
57 struct pipe_buffer *buf = NULL;
58
59 buf = api->buffer_from_handle(api, screen, "dri2 buffer", handle);
60 if (!buf) {
61 debug_printf("%s: Failed to get buffer from handle\n", __func__);
62 return NULL;
63 }
64
65 memset(&templat, 0, sizeof(templat));
66 templat.tex_usage |= PIPE_TEXTURE_USAGE_RENDER_TARGET;
67 templat.target = PIPE_TEXTURE_2D;
68 templat.last_level = 0;
69 templat.depth[0] = 1;
70 templat.format = format;
71 templat.width[0] = width;
72 templat.height[0] = height;
73 pf_get_block(templat.format, &templat.block);
74
75 texture = screen->texture_blanket(screen, &templat, &pitch, buf);
76
77 /* we don't need the buffer from this point on */
78 pipe_buffer_reference(&buf, NULL);
79
80 if (!texture) {
81 debug_printf("%s: Failed to blanket the buffer with a texture\n", __func__);
82 return NULL;
83 }
84
85 surface = screen->get_tex_surface(screen, texture, 0, 0, 0,
86 PIPE_BUFFER_USAGE_GPU_READ |
87 PIPE_BUFFER_USAGE_GPU_WRITE);
88
89 /* we don't need the texture from this point on */
90 pipe_texture_reference(&texture, NULL);
91 return surface;
92 }
93
94 /**
95 * Pixmaps have will have the same name of fake front and front.
96 */
97 static boolean
98 dri2_check_if_pixmap(__DRIbuffer *buffers, int count)
99 {
100 boolean found = FALSE;
101 boolean is_pixmap = FALSE;
102 unsigned name;
103 int i;
104
105 for (i = 0; i < count; i++) {
106 switch (buffers[i].attachment) {
107 case __DRI_BUFFER_FRONT_LEFT:
108 case __DRI_BUFFER_FAKE_FRONT_LEFT:
109 if (found) {
110 is_pixmap = buffers[i].name == name;
111 } else {
112 name = buffers[i].name;
113 found = TRUE;
114 }
115 default:
116 continue;
117 }
118 }
119
120 return is_pixmap;
121 }
122
123 /**
124 * This will be called a drawable is known to have been resized.
125 */
126 void
127 dri_get_buffers(__DRIdrawablePrivate * dPriv)
128 {
129
130 struct dri_drawable *drawable = dri_drawable(dPriv);
131 struct pipe_surface *surface = NULL;
132 struct pipe_screen *screen = dri_screen(drawable->sPriv)->pipe_screen;
133 __DRIbuffer *buffers = NULL;
134 __DRIscreen *dri_screen = drawable->sPriv;
135 __DRIdrawable *dri_drawable = drawable->dPriv;
136 struct drm_api *api = ((struct dri_screen*)(dri_screen->private))->api;
137 boolean have_depth = FALSE;
138 int i, count;
139
140 buffers = (*dri_screen->dri2.loader->getBuffers) (dri_drawable,
141 &dri_drawable->w,
142 &dri_drawable->h,
143 drawable->attachments,
144 drawable->
145 num_attachments, &count,
146 dri_drawable->
147 loaderPrivate);
148
149 if (buffers == NULL) {
150 return;
151 }
152
153 /* set one cliprect to cover the whole dri_drawable */
154 dri_drawable->x = 0;
155 dri_drawable->y = 0;
156 dri_drawable->backX = 0;
157 dri_drawable->backY = 0;
158 dri_drawable->numClipRects = 1;
159 dri_drawable->pClipRects[0].x1 = 0;
160 dri_drawable->pClipRects[0].y1 = 0;
161 dri_drawable->pClipRects[0].x2 = dri_drawable->w;
162 dri_drawable->pClipRects[0].y2 = dri_drawable->h;
163 dri_drawable->numBackClipRects = 1;
164 dri_drawable->pBackClipRects[0].x1 = 0;
165 dri_drawable->pBackClipRects[0].y1 = 0;
166 dri_drawable->pBackClipRects[0].x2 = dri_drawable->w;
167 dri_drawable->pBackClipRects[0].y2 = dri_drawable->h;
168
169 if (drawable->old_num == count &&
170 drawable->old_w == dri_drawable->w &&
171 drawable->old_h == dri_drawable->h &&
172 memcmp(drawable->old, buffers, sizeof(__DRIbuffer) * count) == 0) {
173 return;
174 } else {
175 drawable->old_num = count;
176 drawable->old_w = dri_drawable->w;
177 drawable->old_h = dri_drawable->h;
178 memcpy(drawable->old, buffers, sizeof(__DRIbuffer) * count);
179 }
180
181 drawable->is_pixmap = dri2_check_if_pixmap(buffers, count);
182
183 for (i = 0; i < count; i++) {
184 int index = 0;
185
186 switch (buffers[i].attachment) {
187 case __DRI_BUFFER_FRONT_LEFT:
188 case __DRI_BUFFER_FAKE_FRONT_LEFT:
189 index = ST_SURFACE_FRONT_LEFT;
190 drawable->color_format = buffers[i].flags;
191 break;
192 case __DRI_BUFFER_BACK_LEFT:
193 index = ST_SURFACE_BACK_LEFT;
194 drawable->color_format = buffers[i].flags;
195 break;
196 case __DRI_BUFFER_DEPTH:
197 index = ST_SURFACE_DEPTH;
198 drawable->depth_format = buffers[i].flags;
199 break;
200 case __DRI_BUFFER_STENCIL:
201 index = ST_SURFACE_DEPTH;
202 drawable->stencil_format = buffers[i].flags;
203 break;
204 case __DRI_BUFFER_ACCUM:
205 default:
206 assert(0);
207 }
208
209 if (index == ST_SURFACE_DEPTH) {
210 if (have_depth)
211 continue;
212 else
213 have_depth = TRUE;
214 }
215
216 surface = dri_surface_from_handle(api,
217 screen,
218 buffers[i].name,
219 buffers[i].flags,
220 dri_drawable->w,
221 dri_drawable->h, buffers[i].pitch);
222
223 st_set_framebuffer_surface(drawable->stfb, index, surface);
224 pipe_surface_reference(&surface, NULL);
225 }
226 /* this needed, or else the state tracker fails to pick the new buffers */
227 st_resize_framebuffer(drawable->stfb, dri_drawable->w, dri_drawable->h);
228 }
229
230 /**
231 * These are used for GLX_EXT_texture_from_pixmap
232 */
233 void dri2_set_tex_buffer2(__DRIcontext *pDRICtx, GLint target,
234 GLint format, __DRIdrawable *dPriv)
235 {
236 struct dri_drawable *drawable = dri_drawable(dPriv);
237 struct pipe_surface *ps;
238
239 dri_get_buffers(drawable->dPriv);
240 st_get_framebuffer_surface(drawable->stfb, ST_SURFACE_FRONT_LEFT, &ps);
241
242 st_bind_texture_surface(ps, target == GL_TEXTURE_2D ? ST_TEXTURE_2D :
243 ST_TEXTURE_RECT, 0, drawable->color_format);
244 }
245
246 void dri2_set_tex_buffer(__DRIcontext *pDRICtx, GLint target,
247 __DRIdrawable *dPriv)
248 {
249 dri2_set_tex_buffer2(pDRICtx, target, GLX_TEXTURE_FORMAT_RGBA_EXT, dPriv);
250 }
251
252 void
253 dri_flush_frontbuffer(struct pipe_screen *screen,
254 struct pipe_surface *surf, void *context_private)
255 {
256 struct dri_context *ctx = (struct dri_context *)context_private;
257 struct dri_drawable *drawable = dri_drawable(ctx->dPriv);
258 __DRIdrawable *dri_drawable = ctx->dPriv;
259 __DRIscreen *dri_screen = ctx->sPriv;
260
261 /* XXX Does this function get called with DRI1? */
262
263 if (ctx->dPriv == NULL) {
264 debug_printf("%s: no drawable bound to context\n", __func__);
265 return;
266 }
267
268 #if 0
269 /* TODO if rendering to pixmaps is slow enable this code. */
270 if (drawable->is_pixmap)
271 return;
272 #endif
273
274 (*dri_screen->dri2.loader->flushFrontBuffer)(dri_drawable,
275 dri_drawable->loaderPrivate);
276 }
277
278 /**
279 * This is called when we need to set up GL rendering to a new X window.
280 */
281 boolean
282 dri_create_buffer(__DRIscreenPrivate * sPriv,
283 __DRIdrawablePrivate * dPriv,
284 const __GLcontextModes * visual, boolean isPixmap)
285 {
286 struct dri_screen *screen = sPriv->private;
287 struct dri_drawable *drawable = NULL;
288 int i;
289
290 if (isPixmap)
291 goto fail; /* not implemented */
292
293 drawable = CALLOC_STRUCT(dri_drawable);
294 if (drawable == NULL)
295 goto fail;
296
297 if (visual->redBits == 8) {
298 if (visual->alphaBits == 8)
299 drawable->color_format = PIPE_FORMAT_A8R8G8B8_UNORM;
300 else
301 drawable->color_format = PIPE_FORMAT_X8R8G8B8_UNORM;
302 } else {
303 drawable->color_format = PIPE_FORMAT_R5G6B5_UNORM;
304 }
305
306 switch(visual->depthBits) {
307 default:
308 case 0:
309 drawable->depth_format = PIPE_FORMAT_NONE;
310 break;
311 case 16:
312 drawable->depth_format = PIPE_FORMAT_Z16_UNORM;
313 break;
314 case 24:
315 if (visual->stencilBits == 0) {
316 drawable->depth_format = (screen->d_depth_bits_last) ?
317 PIPE_FORMAT_X8Z24_UNORM:
318 PIPE_FORMAT_Z24X8_UNORM;
319 } else {
320 drawable->depth_format = (screen->sd_depth_bits_last) ?
321 PIPE_FORMAT_S8Z24_UNORM:
322 PIPE_FORMAT_Z24S8_UNORM;
323 }
324 break;
325 case 32:
326 drawable->depth_format = PIPE_FORMAT_Z32_UNORM;
327 break;
328 }
329
330 switch(visual->stencilBits) {
331 default:
332 case 0:
333 drawable->stencil_format = PIPE_FORMAT_NONE;
334 break;
335 case 8:
336 drawable->stencil_format = (screen->sd_depth_bits_last) ?
337 PIPE_FORMAT_S8Z24_UNORM:
338 PIPE_FORMAT_Z24S8_UNORM;
339 break;
340 }
341
342 drawable->stfb = st_create_framebuffer(visual,
343 drawable->color_format,
344 drawable->depth_format,
345 drawable->stencil_format,
346 dPriv->w,
347 dPriv->h, (void *)drawable);
348 if (drawable->stfb == NULL)
349 goto fail;
350
351 drawable->sPriv = sPriv;
352 drawable->dPriv = dPriv;
353 dPriv->driverPrivate = (void *)drawable;
354
355 /* setup dri2 buffers information */
356 /* TODO incase of double buffer visual, delay fake creation */
357 i = 0;
358 drawable->attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
359
360 if (visual->doubleBufferMode)
361 drawable->attachments[i++] = __DRI_BUFFER_BACK_LEFT;
362 else
363 drawable->attachments[i++] = __DRI_BUFFER_FAKE_FRONT_LEFT;
364 if (visual->depthBits)
365 drawable->attachments[i++] = __DRI_BUFFER_DEPTH;
366 if (visual->stencilBits)
367 drawable->attachments[i++] = __DRI_BUFFER_STENCIL;
368 drawable->num_attachments = i;
369
370 drawable->desired_fences = 2;
371
372 return GL_TRUE;
373 fail:
374 FREE(drawable);
375 return GL_FALSE;
376 }
377
378 static struct pipe_fence_handle *
379 dri_swap_fences_pop_front(struct dri_drawable *draw)
380 {
381 struct pipe_screen *screen = dri_screen(draw->sPriv)->pipe_screen;
382 struct pipe_fence_handle *fence = NULL;
383
384 if (draw->cur_fences >= draw->desired_fences) {
385 screen->fence_reference(screen, &fence, draw->swap_fences[draw->tail]);
386 screen->fence_reference(screen, &draw->swap_fences[draw->tail++], NULL);
387 --draw->cur_fences;
388 draw->tail &= DRI_SWAP_FENCES_MASK;
389 }
390 return fence;
391 }
392
393 static void
394 dri_swap_fences_push_back(struct dri_drawable *draw,
395 struct pipe_fence_handle *fence)
396 {
397 struct pipe_screen *screen = dri_screen(draw->sPriv)->pipe_screen;
398
399 if (!fence)
400 return;
401
402 if (draw->cur_fences < DRI_SWAP_FENCES_MAX) {
403 draw->cur_fences++;
404 screen->fence_reference(screen, &draw->swap_fences[draw->head++],
405 fence);
406 draw->head &= DRI_SWAP_FENCES_MASK;
407 }
408 }
409
410 void
411 dri_destroy_buffer(__DRIdrawablePrivate * dPriv)
412 {
413 struct dri_drawable *drawable = dri_drawable(dPriv);
414 struct pipe_fence_handle *fence;
415 struct pipe_screen *screen = dri_screen(drawable->sPriv)->pipe_screen;
416
417 st_unreference_framebuffer(drawable->stfb);
418 drawable->desired_fences = 0;
419 while (drawable->cur_fences) {
420 fence = dri_swap_fences_pop_front(drawable);
421 screen->fence_reference(screen, &fence, NULL);
422 }
423
424 FREE(drawable);
425 }
426
427 static void
428 dri1_update_drawables_locked(struct dri_context *ctx,
429 __DRIdrawablePrivate * driDrawPriv,
430 __DRIdrawablePrivate * driReadPriv)
431 {
432 if (ctx->stLostLock) {
433 ctx->stLostLock = FALSE;
434 if (driDrawPriv == driReadPriv)
435 DRI_VALIDATE_DRAWABLE_INFO(ctx->sPriv, driDrawPriv);
436 else
437 DRI_VALIDATE_TWO_DRAWABLES_INFO(ctx->sPriv, driDrawPriv,
438 driReadPriv);
439 }
440 }
441
442 /**
443 * This ensures all contexts which bind to a drawable pick up the
444 * drawable change and signal new buffer state.
445 * Calling st_resize_framebuffer for each context may seem like overkill,
446 * but no new buffers will actually be allocated if the dimensions don't
447 * change.
448 */
449
450 static void
451 dri1_propagate_drawable_change(struct dri_context *ctx)
452 {
453 __DRIdrawablePrivate *dPriv = ctx->dPriv;
454 __DRIdrawablePrivate *rPriv = ctx->rPriv;
455 boolean flushed = FALSE;
456
457 if (dPriv && ctx->d_stamp != dPriv->lastStamp) {
458
459 st_flush(ctx->st, PIPE_FLUSH_RENDER_CACHE, NULL);
460 flushed = TRUE;
461 ctx->d_stamp = dPriv->lastStamp;
462 st_resize_framebuffer(dri_drawable(dPriv)->stfb, dPriv->w, dPriv->h);
463
464 }
465
466 if (rPriv && dPriv != rPriv && ctx->r_stamp != rPriv->lastStamp) {
467
468 if (!flushed)
469 st_flush(ctx->st, PIPE_FLUSH_RENDER_CACHE, NULL);
470 ctx->r_stamp = rPriv->lastStamp;
471 st_resize_framebuffer(dri_drawable(rPriv)->stfb, rPriv->w, rPriv->h);
472
473 } else if (rPriv && dPriv == rPriv) {
474
475 ctx->r_stamp = ctx->d_stamp;
476
477 }
478 }
479
480 void
481 dri1_update_drawables(struct dri_context *ctx,
482 struct dri_drawable *draw, struct dri_drawable *read)
483 {
484 dri_lock(ctx);
485 dri1_update_drawables_locked(ctx, draw->dPriv, read->dPriv);
486 dri_unlock(ctx);
487
488 dri1_propagate_drawable_change(ctx);
489 }
490
491 static INLINE boolean
492 dri1_intersect_src_bbox(struct drm_clip_rect *dst,
493 int dst_x,
494 int dst_y,
495 const struct drm_clip_rect *src,
496 const struct drm_clip_rect *bbox)
497 {
498 int xy1;
499 int xy2;
500
501 xy1 = ((int)src->x1 > (int)bbox->x1 + dst_x) ? src->x1 :
502 (int)bbox->x1 + dst_x;
503 xy2 = ((int)src->x2 < (int)bbox->x2 + dst_x) ? src->x2 :
504 (int)bbox->x2 + dst_x;
505 if (xy1 >= xy2 || xy1 < 0)
506 return FALSE;
507
508 dst->x1 = xy1;
509 dst->x2 = xy2;
510
511 xy1 = ((int)src->y1 > (int)bbox->y1 + dst_y) ? src->y1 :
512 (int)bbox->y1 + dst_y;
513 xy2 = ((int)src->y2 < (int)bbox->y2 + dst_y) ? src->y2 :
514 (int)bbox->y2 + dst_y;
515 if (xy1 >= xy2 || xy1 < 0)
516 return FALSE;
517
518 dst->y1 = xy1;
519 dst->y2 = xy2;
520 return TRUE;
521 }
522
523 static void
524 dri1_swap_copy(struct dri_context *ctx,
525 struct pipe_surface *dst,
526 struct pipe_surface *src,
527 __DRIdrawablePrivate * dPriv, const struct drm_clip_rect *bbox)
528 {
529 struct pipe_context *pipe = ctx->pipe;
530 struct drm_clip_rect clip;
531 struct drm_clip_rect *cur;
532 int i;
533
534 cur = dPriv->pClipRects;
535
536 for (i = 0; i < dPriv->numClipRects; ++i) {
537 if (dri1_intersect_src_bbox(&clip, dPriv->x, dPriv->y, cur++, bbox))
538 pipe->surface_copy(pipe, dst, clip.x1, clip.y1,
539 src,
540 (int)clip.x1 - dPriv->x,
541 (int)clip.y1 - dPriv->y,
542 clip.x2 - clip.x1, clip.y2 - clip.y1);
543 }
544 }
545
546 static void
547 dri1_copy_to_front(struct dri_context *ctx,
548 struct pipe_surface *surf,
549 __DRIdrawablePrivate * dPriv,
550 const struct drm_clip_rect *sub_box,
551 struct pipe_fence_handle **fence)
552 {
553 struct pipe_context *pipe = ctx->pipe;
554 boolean save_lost_lock;
555 uint cur_w;
556 uint cur_h;
557 struct drm_clip_rect bbox;
558 boolean visible = TRUE;
559
560 *fence = NULL;
561
562 dri_lock(ctx);
563 save_lost_lock = ctx->stLostLock;
564 dri1_update_drawables_locked(ctx, dPriv, dPriv);
565 st_get_framebuffer_dimensions(dri_drawable(dPriv)->stfb, &cur_w, &cur_h);
566
567 bbox.x1 = 0;
568 bbox.x2 = cur_w;
569 bbox.y1 = 0;
570 bbox.y2 = cur_h;
571
572 if (sub_box)
573 visible = dri1_intersect_src_bbox(&bbox, 0, 0, &bbox, sub_box);
574
575 if (visible && __dri1_api_hooks->present_locked) {
576
577 __dri1_api_hooks->present_locked(pipe,
578 surf,
579 dPriv->pClipRects,
580 dPriv->numClipRects,
581 dPriv->x, dPriv->y, &bbox, fence);
582
583 } else if (visible && __dri1_api_hooks->front_srf_locked) {
584
585 struct pipe_surface *front = __dri1_api_hooks->front_srf_locked(pipe);
586
587 if (front)
588 dri1_swap_copy(ctx, front, surf, dPriv, &bbox);
589
590 st_flush(ctx->st, PIPE_FLUSH_RENDER_CACHE, fence);
591 }
592
593 ctx->stLostLock = save_lost_lock;
594
595 /**
596 * FIXME: Revisit this: Update drawables on copy_sub_buffer ?
597 */
598
599 if (!sub_box)
600 dri1_update_drawables_locked(ctx, ctx->dPriv, ctx->rPriv);
601
602 dri_unlock(ctx);
603 dri1_propagate_drawable_change(ctx);
604 }
605
606 void
607 dri1_flush_frontbuffer(struct pipe_screen *screen,
608 struct pipe_surface *surf, void *context_private)
609 {
610 struct dri_context *ctx = (struct dri_context *)context_private;
611 struct pipe_fence_handle *dummy_fence;
612
613 dri1_copy_to_front(ctx, surf, ctx->dPriv, NULL, &dummy_fence);
614 screen->fence_reference(screen, &dummy_fence, NULL);
615
616 /**
617 * FIXME: Do we need swap throttling here?
618 */
619 }
620
621 void
622 dri_swap_buffers(__DRIdrawablePrivate * dPriv)
623 {
624 struct dri_context *ctx;
625 struct pipe_surface *back_surf;
626 struct dri_drawable *draw = dri_drawable(dPriv);
627 struct pipe_screen *screen = dri_screen(draw->sPriv)->pipe_screen;
628 struct pipe_fence_handle *fence;
629 struct st_context *st = st_get_current();
630
631 assert(__dri1_api_hooks != NULL);
632
633 if (!st)
634 return; /* For now */
635
636 ctx = (struct dri_context *)st->pipe->priv;
637
638 st_get_framebuffer_surface(draw->stfb, ST_SURFACE_BACK_LEFT, &back_surf);
639 if (back_surf) {
640 st_notify_swapbuffers(draw->stfb);
641 st_flush(ctx->st, PIPE_FLUSH_RENDER_CACHE, NULL);
642 fence = dri_swap_fences_pop_front(draw);
643 if (fence) {
644 (void)screen->fence_finish(screen, fence, 0);
645 screen->fence_reference(screen, &fence, NULL);
646 }
647 dri1_copy_to_front(ctx, back_surf, dPriv, NULL, &fence);
648 dri_swap_fences_push_back(draw, fence);
649 screen->fence_reference(screen, &fence, NULL);
650 }
651 }
652
653 void
654 dri_copy_sub_buffer(__DRIdrawablePrivate * dPriv, int x, int y, int w, int h)
655 {
656 struct pipe_screen *screen = dri_screen(dPriv->driScreenPriv)->pipe_screen;
657 struct drm_clip_rect sub_bbox;
658 struct dri_context *ctx;
659 struct pipe_surface *back_surf;
660 struct dri_drawable *draw = dri_drawable(dPriv);
661 struct pipe_fence_handle *dummy_fence;
662 struct st_context *st = st_get_current();
663
664 assert(__dri1_api_hooks != NULL);
665
666 if (!st)
667 return;
668
669 ctx = (struct dri_context *)st->pipe->priv;
670
671 sub_bbox.x1 = x;
672 sub_bbox.x2 = x + w;
673 sub_bbox.y1 = y;
674 sub_bbox.y2 = y + h;
675
676 st_get_framebuffer_surface(draw->stfb, ST_SURFACE_BACK_LEFT, &back_surf);
677 if (back_surf) {
678 st_flush(ctx->st, PIPE_FLUSH_RENDER_CACHE, NULL);
679 dri1_copy_to_front(ctx, back_surf, dPriv, &sub_bbox, &dummy_fence);
680 screen->fence_reference(screen, &dummy_fence, NULL);
681 }
682 }
683
684 /* vim: set sw=3 ts=8 sts=3 expandtab: */