2 * Mesa 3-D graphics library
5 * Copyright (C) 2010 LunarG Inc.
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
26 * Chia-I Wu <olv@lunarg.com>
32 #include "util/u_inlines.h"
33 #include "util/u_atomic.h"
35 struct xmesa_st_framebuffer
{
38 struct pipe_screen
*screen
;
40 struct st_visual stvis
;
41 enum pipe_texture_target target
;
43 unsigned texture_width
, texture_height
, texture_mask
;
44 struct pipe_resource
*textures
[ST_ATTACHMENT_COUNT
];
46 struct pipe_resource
*display_resource
;
49 static INLINE
struct xmesa_st_framebuffer
*
50 xmesa_st_framebuffer(struct st_framebuffer_iface
*stfbi
)
52 return (struct xmesa_st_framebuffer
*) stfbi
->st_manager_private
;
56 * Display an attachment to the xlib_drawable of the framebuffer.
59 xmesa_st_framebuffer_display(struct st_framebuffer_iface
*stfbi
,
60 enum st_attachment_type statt
)
62 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
63 struct pipe_resource
*ptex
= xstfb
->textures
[statt
];
64 struct pipe_resource
*pres
;
69 pres
= xstfb
->display_resource
;
70 /* (re)allocate the surface for the texture to be displayed */
71 if (!pres
|| pres
!= ptex
) {
72 pipe_resource_reference(&xstfb
->display_resource
, ptex
);
73 pres
= xstfb
->display_resource
;
76 xstfb
->screen
->flush_frontbuffer(xstfb
->screen
, pres
, 0, 0, &xstfb
->buffer
->ws
);
82 * Copy the contents between the attachments.
85 xmesa_st_framebuffer_copy_textures(struct st_framebuffer_iface
*stfbi
,
86 enum st_attachment_type src_statt
,
87 enum st_attachment_type dst_statt
,
88 unsigned x
, unsigned y
,
89 unsigned width
, unsigned height
)
91 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
92 struct pipe_resource
*src_ptex
= xstfb
->textures
[src_statt
];
93 struct pipe_resource
*dst_ptex
= xstfb
->textures
[dst_statt
];
94 struct pipe_box src_box
;
95 struct pipe_context
*pipe
;
97 if (!src_ptex
|| !dst_ptex
)
100 pipe
= xmesa_get_context(stfbi
);
102 u_box_2d(x
, y
, width
, height
, &src_box
);
104 if (src_ptex
&& dst_ptex
)
105 pipe
->resource_copy_region(pipe
, dst_ptex
, 0, x
, y
, 0,
106 src_ptex
, 0, &src_box
);
110 * Remove outdated textures and create the requested ones.
111 * This is a helper used during framebuffer validation.
114 xmesa_st_framebuffer_validate_textures(struct st_framebuffer_iface
*stfbi
,
115 unsigned width
, unsigned height
,
118 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
119 struct pipe_resource templ
;
120 enum st_attachment_type i
;
122 /* remove outdated textures */
123 if (xstfb
->texture_width
!= width
|| xstfb
->texture_height
!= height
) {
124 for (i
= 0; i
< ST_ATTACHMENT_COUNT
; i
++)
125 pipe_resource_reference(&xstfb
->textures
[i
], NULL
);
128 memset(&templ
, 0, sizeof(templ
));
129 templ
.target
= xstfb
->target
;
130 templ
.width0
= width
;
131 templ
.height0
= height
;
133 templ
.array_size
= 1;
134 templ
.last_level
= 0;
136 for (i
= 0; i
< ST_ATTACHMENT_COUNT
; i
++) {
137 enum pipe_format format
;
140 /* the texture already exists or not requested */
141 if (xstfb
->textures
[i
] || !(mask
& (1 << i
))) {
142 /* remember the texture */
143 if (xstfb
->textures
[i
])
149 case ST_ATTACHMENT_FRONT_LEFT
:
150 case ST_ATTACHMENT_BACK_LEFT
:
151 case ST_ATTACHMENT_FRONT_RIGHT
:
152 case ST_ATTACHMENT_BACK_RIGHT
:
153 format
= xstfb
->stvis
.color_format
;
154 bind
= PIPE_BIND_DISPLAY_TARGET
|
155 PIPE_BIND_RENDER_TARGET
;
157 case ST_ATTACHMENT_DEPTH_STENCIL
:
158 format
= xstfb
->stvis
.depth_stencil_format
;
159 bind
= PIPE_BIND_DEPTH_STENCIL
;
162 format
= PIPE_FORMAT_NONE
;
166 if (format
!= PIPE_FORMAT_NONE
) {
167 templ
.format
= format
;
171 xstfb
->screen
->resource_create(xstfb
->screen
, &templ
);
172 if (!xstfb
->textures
[i
])
177 xstfb
->texture_width
= width
;
178 xstfb
->texture_height
= height
;
179 xstfb
->texture_mask
= mask
;
186 * Check that a framebuffer's attachments match the window's size.
188 * Called via st_framebuffer_iface::validate()
190 * \param statts array of framebuffer attachments
191 * \param count number of framebuffer attachments in statts[]
192 * \param out returns resources for each of the attachments
195 xmesa_st_framebuffer_validate(struct st_framebuffer_iface
*stfbi
,
196 const enum st_attachment_type
*statts
,
198 struct pipe_resource
**out
)
200 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
201 unsigned statt_mask
, new_mask
, i
;
205 /* build mask of ST_ATTACHMENT bits */
207 for (i
= 0; i
< count
; i
++)
208 statt_mask
|= 1 << statts
[i
];
210 /* record newly allocated textures */
211 new_mask
= statt_mask
& ~xstfb
->texture_mask
;
213 /* If xmesa_strict_invalidate is not set, we will not yet have
214 * called XGetGeometry(). Do so here:
216 if (!xmesa_strict_invalidate
)
217 xmesa_check_buffer_size(xstfb
->buffer
);
219 resized
= (xstfb
->buffer
->width
!= xstfb
->texture_width
||
220 xstfb
->buffer
->height
!= xstfb
->texture_height
);
222 /* revalidate textures */
223 if (resized
|| new_mask
) {
224 ret
= xmesa_st_framebuffer_validate_textures(stfbi
,
225 xstfb
->buffer
->width
, xstfb
->buffer
->height
, statt_mask
);
230 enum st_attachment_type back
, front
;
232 back
= ST_ATTACHMENT_BACK_LEFT
;
233 front
= ST_ATTACHMENT_FRONT_LEFT
;
234 /* copy the contents if front is newly allocated and back is not */
235 if ((statt_mask
& (1 << back
)) &&
236 (new_mask
& (1 << front
)) &&
237 !(new_mask
& (1 << back
))) {
238 xmesa_st_framebuffer_copy_textures(stfbi
, back
, front
,
239 0, 0, xstfb
->texture_width
, xstfb
->texture_height
);
244 for (i
= 0; i
< count
; i
++) {
246 pipe_resource_reference(&out
[i
], xstfb
->textures
[statts
[i
]]);
253 * Called via st_framebuffer_iface::flush_front()
256 xmesa_st_framebuffer_flush_front(struct st_framebuffer_iface
*stfbi
,
257 enum st_attachment_type statt
)
259 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
262 ret
= xmesa_st_framebuffer_display(stfbi
, statt
);
264 if (ret
&& xmesa_strict_invalidate
)
265 xmesa_check_buffer_size(xstfb
->buffer
);
270 struct st_framebuffer_iface
*
271 xmesa_create_st_framebuffer(XMesaDisplay xmdpy
, XMesaBuffer b
)
273 struct st_framebuffer_iface
*stfbi
;
274 struct xmesa_st_framebuffer
*xstfb
;
276 assert(xmdpy
->display
== b
->xm_visual
->display
);
278 stfbi
= CALLOC_STRUCT(st_framebuffer_iface
);
279 xstfb
= CALLOC_STRUCT(xmesa_st_framebuffer
);
280 if (!stfbi
|| !xstfb
) {
288 xstfb
->display
= xmdpy
;
290 xstfb
->screen
= xmdpy
->screen
;
291 xstfb
->stvis
= b
->xm_visual
->stvis
;
292 if(xstfb
->screen
->get_param(xstfb
->screen
, PIPE_CAP_NPOT_TEXTURES
))
293 xstfb
->target
= PIPE_TEXTURE_2D
;
295 xstfb
->target
= PIPE_TEXTURE_RECT
;
297 stfbi
->visual
= &xstfb
->stvis
;
298 stfbi
->flush_front
= xmesa_st_framebuffer_flush_front
;
299 stfbi
->validate
= xmesa_st_framebuffer_validate
;
300 p_atomic_set(&stfbi
->stamp
, 1);
301 stfbi
->st_manager_private
= (void *) xstfb
;
307 xmesa_destroy_st_framebuffer(struct st_framebuffer_iface
*stfbi
)
309 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
312 pipe_resource_reference(&xstfb
->display_resource
, NULL
);
314 for (i
= 0; i
< ST_ATTACHMENT_COUNT
; i
++)
315 pipe_resource_reference(&xstfb
->textures
[i
], NULL
);
322 xmesa_swap_st_framebuffer(struct st_framebuffer_iface
*stfbi
)
324 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
327 ret
= xmesa_st_framebuffer_display(stfbi
, ST_ATTACHMENT_BACK_LEFT
);
329 struct pipe_resource
**front
, **back
, *tmp
;
331 front
= &xstfb
->textures
[ST_ATTACHMENT_FRONT_LEFT
];
332 back
= &xstfb
->textures
[ST_ATTACHMENT_BACK_LEFT
];
333 /* swap textures only if the front texture has been allocated */
339 /* the current context should validate the buffer after swapping */
340 if (!xmesa_strict_invalidate
)
341 xmesa_notify_invalid_buffer(xstfb
->buffer
);
344 if (xmesa_strict_invalidate
)
345 xmesa_check_buffer_size(xstfb
->buffer
);
350 xmesa_copy_st_framebuffer(struct st_framebuffer_iface
*stfbi
,
351 enum st_attachment_type src
,
352 enum st_attachment_type dst
,
353 int x
, int y
, int w
, int h
)
355 xmesa_st_framebuffer_copy_textures(stfbi
, src
, dst
, x
, y
, w
, h
);
356 if (dst
== ST_ATTACHMENT_FRONT_LEFT
)
357 xmesa_st_framebuffer_display(stfbi
, dst
);
360 struct pipe_resource
*
361 xmesa_get_attachment(struct st_framebuffer_iface
*stfbi
,
362 enum st_attachment_type st_attachment
)
364 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
365 struct pipe_resource
* res
;
367 res
= xstfb
->textures
[st_attachment
];
372 xmesa_get_context(struct st_framebuffer_iface
* stfbi
)
374 struct pipe_context
*pipe
;
375 struct xmesa_st_framebuffer
*xstfb
= xmesa_st_framebuffer(stfbi
);
377 pipe
= xstfb
->display
->pipe
;
379 pipe
= xstfb
->screen
->context_create(xstfb
->screen
, NULL
);
382 xstfb
->display
->pipe
= pipe
;