blob: 151e29053ab5be66d8197fa6ea95a174c802ee15 [file] [log] [blame]
Brian Paulddc82ee2005-02-05 19:56:45 +00001/*
2 * Mesa 3-D graphics library
Brian Paul3dc65912008-07-03 15:40:38 -06003 * Version: 7.1
Brian Paulddc82ee2005-02-05 19:56:45 +00004 *
Brian Paul3dc65912008-07-03 15:40:38 -06005 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
Brian Paul989edea2009-01-22 15:05:13 -07006 * Copyright (C) 1999-2009 VMware, Inc. All Rights Reserved.
Brian Paulddc82ee2005-02-05 19:56:45 +00007 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions 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 MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
Brian Paul463642c2005-02-08 02:06:00 +000027/*
Brian Paul989edea2009-01-22 15:05:13 -070028 * GL_EXT/ARB_framebuffer_object extensions
29 *
Brian Paul463642c2005-02-08 02:06:00 +000030 * Authors:
31 * Brian Paul
32 */
33
34
Roland Scheideggera1bc0d02007-07-18 20:17:14 +020035#include "buffers.h"
Brian Paulddc82ee2005-02-05 19:56:45 +000036#include "context.h"
37#include "fbobject.h"
Brian Paule4b23562005-05-04 20:11:35 +000038#include "framebuffer.h"
Brian Paulddc82ee2005-02-05 19:56:45 +000039#include "hash.h"
Brian Paul989edea2009-01-22 15:05:13 -070040#include "macros.h"
Brian Paul24edd902006-09-29 01:24:26 +000041#include "mipmap.h"
Brian Paule4b23562005-05-04 20:11:35 +000042#include "renderbuffer.h"
Brian Paul99745402006-03-01 02:02:43 +000043#include "state.h"
Brian Paul463642c2005-02-08 02:06:00 +000044#include "teximage.h"
Brian Paulea4fe662006-03-26 05:22:17 +000045#include "texobj.h"
Brian Paul463642c2005-02-08 02:06:00 +000046#include "texstore.h"
Brian Paulddc82ee2005-02-05 19:56:45 +000047
48
Brian Pauld9468c92005-02-10 16:08:07 +000049/**
50 * Notes:
51 *
52 * None of the GL_EXT_framebuffer_object functions are compiled into
53 * display lists.
54 */
55
56
57
Brian Paul923b6fc2005-02-08 04:08:56 +000058/*
59 * When glGenRender/FramebuffersEXT() is called we insert pointers to
60 * these placeholder objects into the hash table.
61 * Later, when the object ID is first bound, we replace the placeholder
62 * with the real frame/renderbuffer.
63 */
Brian Paul2c6f9112005-02-24 05:47:06 +000064static struct gl_framebuffer DummyFramebuffer;
65static struct gl_renderbuffer DummyRenderbuffer;
Brian Paul1864c7d2005-02-08 03:46:37 +000066
67
Brian Paul3deaa012005-02-07 05:08:24 +000068#define IS_CUBE_FACE(TARGET) \
69 ((TARGET) >= GL_TEXTURE_CUBE_MAP_POSITIVE_X && \
70 (TARGET) <= GL_TEXTURE_CUBE_MAP_NEGATIVE_Z)
Brian Paulddc82ee2005-02-05 19:56:45 +000071
72
Brian Paul3dc65912008-07-03 15:40:38 -060073static void
74delete_dummy_renderbuffer(struct gl_renderbuffer *rb)
75{
76 /* no op */
77}
78
79static void
80delete_dummy_framebuffer(struct gl_framebuffer *fb)
81{
82 /* no op */
83}
84
85
86void
87_mesa_init_fbobjects(GLcontext *ctx)
88{
89 DummyFramebuffer.Delete = delete_dummy_framebuffer;
90 DummyRenderbuffer.Delete = delete_dummy_renderbuffer;
91}
92
93
Brian Paulddc82ee2005-02-05 19:56:45 +000094/**
Brian Paul2c6f9112005-02-24 05:47:06 +000095 * Helper routine for getting a gl_renderbuffer.
Brian Paulddc82ee2005-02-05 19:56:45 +000096 */
Brian Paulea4fe662006-03-26 05:22:17 +000097struct gl_renderbuffer *
98_mesa_lookup_renderbuffer(GLcontext *ctx, GLuint id)
Brian Paulddc82ee2005-02-05 19:56:45 +000099{
Brian Paul2c6f9112005-02-24 05:47:06 +0000100 struct gl_renderbuffer *rb;
Brian Paulddc82ee2005-02-05 19:56:45 +0000101
Brian Paul1864c7d2005-02-08 03:46:37 +0000102 if (id == 0)
Brian Paulddc82ee2005-02-05 19:56:45 +0000103 return NULL;
104
Brian Paul2c6f9112005-02-24 05:47:06 +0000105 rb = (struct gl_renderbuffer *)
Brian Paulddc82ee2005-02-05 19:56:45 +0000106 _mesa_HashLookup(ctx->Shared->RenderBuffers, id);
107 return rb;
108}
109
110
111/**
Brian Paul2c6f9112005-02-24 05:47:06 +0000112 * Helper routine for getting a gl_framebuffer.
Brian Paulddc82ee2005-02-05 19:56:45 +0000113 */
Brian Paulea4fe662006-03-26 05:22:17 +0000114struct gl_framebuffer *
115_mesa_lookup_framebuffer(GLcontext *ctx, GLuint id)
Brian Paulddc82ee2005-02-05 19:56:45 +0000116{
Brian Paul2c6f9112005-02-24 05:47:06 +0000117 struct gl_framebuffer *fb;
Brian Paulddc82ee2005-02-05 19:56:45 +0000118
Brian Paul1864c7d2005-02-08 03:46:37 +0000119 if (id == 0)
Brian Paulddc82ee2005-02-05 19:56:45 +0000120 return NULL;
121
Brian Paul2c6f9112005-02-24 05:47:06 +0000122 fb = (struct gl_framebuffer *)
Brian Paulddc82ee2005-02-05 19:56:45 +0000123 _mesa_HashLookup(ctx->Shared->FrameBuffers, id);
Brian Paul463642c2005-02-08 02:06:00 +0000124 return fb;
Brian Paulddc82ee2005-02-05 19:56:45 +0000125}
126
127
128/**
Brian Paul72966362009-01-21 16:28:38 -0700129 * Mark the given framebuffer as invalid. This will force the
130 * test for framebuffer completeness to be done before the framebuffer
131 * is used.
132 */
133static void
134invalidate_framebuffer(struct gl_framebuffer *fb)
135{
136 fb->_Status = 0; /* "indeterminate" */
137}
138
139
140/**
Brian Pauld9468c92005-02-10 16:08:07 +0000141 * Given a GL_*_ATTACHMENTn token, return a pointer to the corresponding
Brian Paul2c6f9112005-02-24 05:47:06 +0000142 * gl_renderbuffer_attachment object.
Brian Paul30590072009-01-21 11:06:11 -0700143 * If \p attachment is GL_DEPTH_STENCIL_ATTACHMENT, return a pointer to
144 * the depth buffer attachment point.
Brian Pauld9468c92005-02-10 16:08:07 +0000145 */
Brian Paul84716042005-11-16 04:05:54 +0000146struct gl_renderbuffer_attachment *
147_mesa_get_attachment(GLcontext *ctx, struct gl_framebuffer *fb,
148 GLenum attachment)
Brian Paul3deaa012005-02-07 05:08:24 +0000149{
150 GLuint i;
151
152 switch (attachment) {
153 case GL_COLOR_ATTACHMENT0_EXT:
154 case GL_COLOR_ATTACHMENT1_EXT:
155 case GL_COLOR_ATTACHMENT2_EXT:
156 case GL_COLOR_ATTACHMENT3_EXT:
157 case GL_COLOR_ATTACHMENT4_EXT:
158 case GL_COLOR_ATTACHMENT5_EXT:
159 case GL_COLOR_ATTACHMENT6_EXT:
160 case GL_COLOR_ATTACHMENT7_EXT:
161 case GL_COLOR_ATTACHMENT8_EXT:
162 case GL_COLOR_ATTACHMENT9_EXT:
163 case GL_COLOR_ATTACHMENT10_EXT:
164 case GL_COLOR_ATTACHMENT11_EXT:
165 case GL_COLOR_ATTACHMENT12_EXT:
166 case GL_COLOR_ATTACHMENT13_EXT:
167 case GL_COLOR_ATTACHMENT14_EXT:
168 case GL_COLOR_ATTACHMENT15_EXT:
169 i = attachment - GL_COLOR_ATTACHMENT0_EXT;
170 if (i >= ctx->Const.MaxColorAttachments) {
171 return NULL;
172 }
Brian Paule4b23562005-05-04 20:11:35 +0000173 return &fb->Attachment[BUFFER_COLOR0 + i];
Brian Paul30590072009-01-21 11:06:11 -0700174 case GL_DEPTH_STENCIL_ATTACHMENT:
175 /* fall-through */
Brian Paul3deaa012005-02-07 05:08:24 +0000176 case GL_DEPTH_ATTACHMENT_EXT:
Brian Paule4b23562005-05-04 20:11:35 +0000177 return &fb->Attachment[BUFFER_DEPTH];
Brian Paul3deaa012005-02-07 05:08:24 +0000178 case GL_STENCIL_ATTACHMENT_EXT:
Brian Paule4b23562005-05-04 20:11:35 +0000179 return &fb->Attachment[BUFFER_STENCIL];
Brian Paul3deaa012005-02-07 05:08:24 +0000180 default:
181 return NULL;
182 }
183}
184
185
Brian Pauld9468c92005-02-10 16:08:07 +0000186/**
187 * Remove any texture or renderbuffer attached to the given attachment
188 * point. Update reference counts, etc.
189 */
Brian Paule4b23562005-05-04 20:11:35 +0000190void
191_mesa_remove_attachment(GLcontext *ctx, struct gl_renderbuffer_attachment *att)
Brian Paul3deaa012005-02-07 05:08:24 +0000192{
193 if (att->Type == GL_TEXTURE) {
194 ASSERT(att->Texture);
Brian9e01b912007-08-13 11:29:46 +0100195 if (ctx->Driver.FinishRenderTexture) {
Brian Paul0e31e022005-12-01 00:25:00 +0000196 /* tell driver that we're done rendering to this texture. */
Brian9e01b912007-08-13 11:29:46 +0100197 ctx->Driver.FinishRenderTexture(ctx, att);
Brian Paul3deaa012005-02-07 05:08:24 +0000198 }
Brian9e01b912007-08-13 11:29:46 +0100199 _mesa_reference_texobj(&att->Texture, NULL); /* unbind */
200 ASSERT(!att->Texture);
Brian Paul3deaa012005-02-07 05:08:24 +0000201 }
Brian Paul0e31e022005-12-01 00:25:00 +0000202 if (att->Type == GL_TEXTURE || att->Type == GL_RENDERBUFFER_EXT) {
Brian Paul3deaa012005-02-07 05:08:24 +0000203 ASSERT(!att->Texture);
Brian9e01b912007-08-13 11:29:46 +0100204 _mesa_reference_renderbuffer(&att->Renderbuffer, NULL); /* unbind */
205 ASSERT(!att->Renderbuffer);
Brian Paul3deaa012005-02-07 05:08:24 +0000206 }
207 att->Type = GL_NONE;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000208 att->Complete = GL_TRUE;
Brian Paul3deaa012005-02-07 05:08:24 +0000209}
210
211
Brian Pauld9468c92005-02-10 16:08:07 +0000212/**
213 * Bind a texture object to an attachment point.
214 * The previous binding, if any, will be removed first.
215 */
Brian Paule4b23562005-05-04 20:11:35 +0000216void
217_mesa_set_texture_attachment(GLcontext *ctx,
Brian Paul519b23b2006-03-20 18:51:57 +0000218 struct gl_framebuffer *fb,
Brian Paule4b23562005-05-04 20:11:35 +0000219 struct gl_renderbuffer_attachment *att,
220 struct gl_texture_object *texObj,
221 GLenum texTarget, GLuint level, GLuint zoffset)
Brian Paul3deaa012005-02-07 05:08:24 +0000222{
Brian Paul0e31e022005-12-01 00:25:00 +0000223 if (att->Texture == texObj) {
224 /* re-attaching same texture */
225 ASSERT(att->Type == GL_TEXTURE);
226 }
227 else {
228 /* new attachment */
229 _mesa_remove_attachment(ctx, att);
230 att->Type = GL_TEXTURE;
Brian9e01b912007-08-13 11:29:46 +0100231 assert(!att->Texture);
232 _mesa_reference_texobj(&att->Texture, texObj);
Brian Paul0e31e022005-12-01 00:25:00 +0000233 }
234
235 /* always update these fields */
Brian Paul3deaa012005-02-07 05:08:24 +0000236 att->TextureLevel = level;
237 if (IS_CUBE_FACE(texTarget)) {
238 att->CubeMapFace = texTarget - GL_TEXTURE_CUBE_MAP_POSITIVE_X;
239 }
240 else {
241 att->CubeMapFace = 0;
242 }
243 att->Zoffset = zoffset;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000244 att->Complete = GL_FALSE;
Brian Paul519b23b2006-03-20 18:51:57 +0000245
246 if (att->Texture->Image[att->CubeMapFace][att->TextureLevel]) {
Brian Paulea4fe662006-03-26 05:22:17 +0000247 ctx->Driver.RenderTexture(ctx, fb, att);
Brian Paul519b23b2006-03-20 18:51:57 +0000248 }
Brian Paul72966362009-01-21 16:28:38 -0700249
250 invalidate_framebuffer(fb);
Brian Paul3deaa012005-02-07 05:08:24 +0000251}
252
253
Brian Pauld9468c92005-02-10 16:08:07 +0000254/**
255 * Bind a renderbuffer to an attachment point.
256 * The previous binding, if any, will be removed first.
257 */
Brian Paule4b23562005-05-04 20:11:35 +0000258void
259_mesa_set_renderbuffer_attachment(GLcontext *ctx,
260 struct gl_renderbuffer_attachment *att,
261 struct gl_renderbuffer *rb)
Brian Paul3deaa012005-02-07 05:08:24 +0000262{
Brian Paulea4fe662006-03-26 05:22:17 +0000263 /* XXX check if re-doing same attachment, exit early */
Brian Paule4b23562005-05-04 20:11:35 +0000264 _mesa_remove_attachment(ctx, att);
Brian Paul3deaa012005-02-07 05:08:24 +0000265 att->Type = GL_RENDERBUFFER_EXT;
Brian Paul2c6f9112005-02-24 05:47:06 +0000266 att->Texture = NULL; /* just to be safe */
Brian Paulf0bbbf62005-02-09 03:50:30 +0000267 att->Complete = GL_FALSE;
Briandccd9c42007-04-02 09:56:28 -0600268 _mesa_reference_renderbuffer(&att->Renderbuffer, rb);
Brian Paul3deaa012005-02-07 05:08:24 +0000269}
270
Brian Paulddc82ee2005-02-05 19:56:45 +0000271
Brian Paulf0bbbf62005-02-09 03:50:30 +0000272/**
Brian Paule4b23562005-05-04 20:11:35 +0000273 * Fallback for ctx->Driver.FramebufferRenderbuffer()
Brian Paul84716042005-11-16 04:05:54 +0000274 * Attach a renderbuffer object to a framebuffer object.
Brian Paule4b23562005-05-04 20:11:35 +0000275 */
276void
Brian Paul84716042005-11-16 04:05:54 +0000277_mesa_framebuffer_renderbuffer(GLcontext *ctx, struct gl_framebuffer *fb,
278 GLenum attachment, struct gl_renderbuffer *rb)
Brian Paule4b23562005-05-04 20:11:35 +0000279{
Brian Paul84716042005-11-16 04:05:54 +0000280 struct gl_renderbuffer_attachment *att;
281
Brian Paulea4fe662006-03-26 05:22:17 +0000282 _glthread_LOCK_MUTEX(fb->Mutex);
Brian Paulea4fe662006-03-26 05:22:17 +0000283
Brian Paul84716042005-11-16 04:05:54 +0000284 att = _mesa_get_attachment(ctx, fb, attachment);
285 ASSERT(att);
Brian Paule4b23562005-05-04 20:11:35 +0000286 if (rb) {
287 _mesa_set_renderbuffer_attachment(ctx, att, rb);
Brian Paul30590072009-01-21 11:06:11 -0700288 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
289 /* do stencil attachment here (depth already done above) */
290 att = _mesa_get_attachment(ctx, fb, GL_STENCIL_ATTACHMENT_EXT);
291 assert(att);
292 _mesa_set_renderbuffer_attachment(ctx, att, rb);
293 }
Brian Paule4b23562005-05-04 20:11:35 +0000294 }
295 else {
296 _mesa_remove_attachment(ctx, att);
297 }
Brian Paulea4fe662006-03-26 05:22:17 +0000298
Brian Paul72966362009-01-21 16:28:38 -0700299 invalidate_framebuffer(fb);
300
Brian Paulea4fe662006-03-26 05:22:17 +0000301 _glthread_UNLOCK_MUTEX(fb->Mutex);
Brian Paule4b23562005-05-04 20:11:35 +0000302}
303
304
305/**
Brian Paul9f731c82009-02-17 16:47:54 -0700306 * For debug only.
307 */
308static void
309att_incomplete(const char *msg)
310{
311#if 0
312 _mesa_printf("attachment incomplete: %s\n", msg);
313#else
314 (void) msg;
315#endif
316}
317
318
319/**
Brian Paulf0bbbf62005-02-09 03:50:30 +0000320 * Test if an attachment point is complete and update its Complete field.
321 * \param format if GL_COLOR, this is a color attachment point,
322 * if GL_DEPTH, this is a depth component attachment point,
323 * if GL_STENCIL, this is a stencil component attachment point.
324 */
325static void
326test_attachment_completeness(const GLcontext *ctx, GLenum format,
Brian Paul2c6f9112005-02-24 05:47:06 +0000327 struct gl_renderbuffer_attachment *att)
Brian Paulf0bbbf62005-02-09 03:50:30 +0000328{
329 assert(format == GL_COLOR || format == GL_DEPTH || format == GL_STENCIL);
330
331 /* assume complete */
332 att->Complete = GL_TRUE;
333
Brian Paulf0bbbf62005-02-09 03:50:30 +0000334 /* Look for reasons why the attachment might be incomplete */
335 if (att->Type == GL_TEXTURE) {
Brian Paule4b23562005-05-04 20:11:35 +0000336 const struct gl_texture_object *texObj = att->Texture;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000337 struct gl_texture_image *texImage;
338
Brian Paule4b23562005-05-04 20:11:35 +0000339 if (!texObj) {
Brian Paul9f731c82009-02-17 16:47:54 -0700340 att_incomplete("no texobj");
Brian Paule4b23562005-05-04 20:11:35 +0000341 att->Complete = GL_FALSE;
342 return;
343 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000344
345 texImage = texObj->Image[att->CubeMapFace][att->TextureLevel];
346 if (!texImage) {
Brian Paul9f731c82009-02-17 16:47:54 -0700347 att_incomplete("no teximage");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000348 att->Complete = GL_FALSE;
349 return;
350 }
351 if (texImage->Width < 1 || texImage->Height < 1) {
Brian Paul9f731c82009-02-17 16:47:54 -0700352 att_incomplete("teximage width/height=0");
353 _mesa_printf("texobj = %u\n", texObj->Name);
354 _mesa_printf("level = %d\n", att->TextureLevel);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000355 att->Complete = GL_FALSE;
356 return;
357 }
358 if (texObj->Target == GL_TEXTURE_3D && att->Zoffset >= texImage->Depth) {
Brian Paul9f731c82009-02-17 16:47:54 -0700359 att_incomplete("bad z offset");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000360 att->Complete = GL_FALSE;
361 return;
362 }
363
364 if (format == GL_COLOR) {
Brian Paule4b23562005-05-04 20:11:35 +0000365 if (texImage->TexFormat->BaseFormat != GL_RGB &&
366 texImage->TexFormat->BaseFormat != GL_RGBA) {
Brian Paul9f731c82009-02-17 16:47:54 -0700367 att_incomplete("bad format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000368 att->Complete = GL_FALSE;
369 return;
370 }
371 }
372 else if (format == GL_DEPTH) {
Brian Paul1ad7b992005-09-28 02:29:50 +0000373 if (texImage->TexFormat->BaseFormat == GL_DEPTH_COMPONENT) {
374 /* OK */
375 }
376 else if (ctx->Extensions.EXT_packed_depth_stencil &&
Brian635e9642008-03-28 13:24:12 -0600377 texImage->TexFormat->BaseFormat == GL_DEPTH_STENCIL_EXT) {
Brian Paul1ad7b992005-09-28 02:29:50 +0000378 /* OK */
379 }
380 else {
Brian Paulf0bbbf62005-02-09 03:50:30 +0000381 att->Complete = GL_FALSE;
Brian Paul9f731c82009-02-17 16:47:54 -0700382 att_incomplete("bad depth format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000383 return;
384 }
385 }
386 else {
387 /* no such thing as stencil textures */
Brian Paul9f731c82009-02-17 16:47:54 -0700388 att_incomplete("illegal stencil texture");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000389 att->Complete = GL_FALSE;
390 return;
391 }
392 }
Brian Paule4b23562005-05-04 20:11:35 +0000393 else if (att->Type == GL_RENDERBUFFER_EXT) {
Brian Paul49918882006-03-20 15:27:55 +0000394 ASSERT(att->Renderbuffer);
395 if (!att->Renderbuffer->InternalFormat ||
396 att->Renderbuffer->Width < 1 ||
397 att->Renderbuffer->Height < 1) {
Brian Paul9f731c82009-02-17 16:47:54 -0700398 att_incomplete("0x0 renderbuffer");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000399 att->Complete = GL_FALSE;
400 return;
401 }
402 if (format == GL_COLOR) {
403 if (att->Renderbuffer->_BaseFormat != GL_RGB &&
404 att->Renderbuffer->_BaseFormat != GL_RGBA) {
Brian Paul49918882006-03-20 15:27:55 +0000405 ASSERT(att->Renderbuffer->RedBits);
406 ASSERT(att->Renderbuffer->GreenBits);
407 ASSERT(att->Renderbuffer->BlueBits);
Brian Paul9f731c82009-02-17 16:47:54 -0700408 att_incomplete("bad renderbuffer color format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000409 att->Complete = GL_FALSE;
410 return;
411 }
412 }
413 else if (format == GL_DEPTH) {
Brian Paul49918882006-03-20 15:27:55 +0000414 ASSERT(att->Renderbuffer->DepthBits);
Brian Paul1ad7b992005-09-28 02:29:50 +0000415 if (att->Renderbuffer->_BaseFormat == GL_DEPTH_COMPONENT) {
416 /* OK */
417 }
418 else if (ctx->Extensions.EXT_packed_depth_stencil &&
419 att->Renderbuffer->_BaseFormat == GL_DEPTH_STENCIL_EXT) {
420 /* OK */
421 }
422 else {
Brian Paul9f731c82009-02-17 16:47:54 -0700423 att_incomplete("bad renderbuffer depth format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000424 att->Complete = GL_FALSE;
425 return;
426 }
427 }
428 else {
429 assert(format == GL_STENCIL);
Brian Paul49918882006-03-20 15:27:55 +0000430 ASSERT(att->Renderbuffer->StencilBits);
Brian Paul1ad7b992005-09-28 02:29:50 +0000431 if (att->Renderbuffer->_BaseFormat == GL_STENCIL_INDEX) {
432 /* OK */
433 }
434 else if (ctx->Extensions.EXT_packed_depth_stencil &&
435 att->Renderbuffer->_BaseFormat == GL_DEPTH_STENCIL_EXT) {
436 /* OK */
437 }
438 else {
Brian Paulf0bbbf62005-02-09 03:50:30 +0000439 att->Complete = GL_FALSE;
Brian Paul9f731c82009-02-17 16:47:54 -0700440 att_incomplete("bad renderbuffer stencil format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000441 return;
442 }
443 }
444 }
Brian Paule4b23562005-05-04 20:11:35 +0000445 else {
446 ASSERT(att->Type == GL_NONE);
447 /* complete */
448 return;
449 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000450}
451
452
453/**
Brian Paul49918882006-03-20 15:27:55 +0000454 * Helpful for debugging
455 */
456static void
457fbo_incomplete(const char *msg, int index)
458{
Brian Paul13abf912006-04-13 19:17:13 +0000459 (void) msg;
460 (void) index;
Brian Paul49918882006-03-20 15:27:55 +0000461 /*
462 _mesa_debug(NULL, "FBO Incomplete: %s [%d]\n", msg, index);
463 */
464}
465
466
467/**
Brian Paulf0bbbf62005-02-09 03:50:30 +0000468 * Test if the given framebuffer object is complete and update its
469 * Status field with the results.
Brian Paul3528f692009-01-22 15:13:18 -0700470 * Calls the ctx->Driver.ValidateFramebuffer() function to allow the
471 * driver to make hardware-specific validation/completeness checks.
Brian Paule4b23562005-05-04 20:11:35 +0000472 * Also update the framebuffer's Width and Height fields if the
473 * framebuffer is complete.
Brian Paulf0bbbf62005-02-09 03:50:30 +0000474 */
Brian Paule4b23562005-05-04 20:11:35 +0000475void
476_mesa_test_framebuffer_completeness(GLcontext *ctx, struct gl_framebuffer *fb)
Brian Paulf0bbbf62005-02-09 03:50:30 +0000477{
Brian Paul989edea2009-01-22 15:05:13 -0700478 GLuint numImages;
479 GLenum intFormat = GL_NONE; /* color buffers' internal format */
480 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0;
Brian Paul722d9762009-01-20 16:58:49 -0700481 GLint numSamples = -1;
Brian Paule4b23562005-05-04 20:11:35 +0000482 GLint i;
Brian Paul28b014e2006-04-05 03:05:17 +0000483 GLuint j;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000484
Brian Paulc7264412005-06-01 00:50:23 +0000485 assert(fb->Name != 0);
486
Brian Paulf0bbbf62005-02-09 03:50:30 +0000487 numImages = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000488 fb->Width = 0;
489 fb->Height = 0;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000490
Brian Paul989edea2009-01-22 15:05:13 -0700491 /* Start at -2 to more easily loop over all attachment points.
492 * -2: depth buffer
493 * -1: stencil buffer
494 * >=0: color buffer
495 */
Brian Paule4b23562005-05-04 20:11:35 +0000496 for (i = -2; i < (GLint) ctx->Const.MaxColorAttachments; i++) {
Brian Paul2c6f9112005-02-24 05:47:06 +0000497 struct gl_renderbuffer_attachment *att;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000498 GLenum f;
499
Brian Paul1bc59bf2009-01-22 15:07:34 -0700500 /*
501 * XXX for ARB_fbo, only check color buffers that are named by
502 * GL_READ_BUFFER and GL_DRAW_BUFFERi.
503 */
504
Brian Paul989edea2009-01-22 15:05:13 -0700505 /* check for attachment completeness
506 */
Brian Paulf0bbbf62005-02-09 03:50:30 +0000507 if (i == -2) {
Brian Paule4b23562005-05-04 20:11:35 +0000508 att = &fb->Attachment[BUFFER_DEPTH];
Brian Paulf0bbbf62005-02-09 03:50:30 +0000509 test_attachment_completeness(ctx, GL_DEPTH, att);
510 if (!att->Complete) {
Brian Paule4b23562005-05-04 20:11:35 +0000511 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT;
Brian Paul49918882006-03-20 15:27:55 +0000512 fbo_incomplete("depth attachment incomplete", -1);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000513 return;
514 }
515 }
516 else if (i == -1) {
Brian Paule4b23562005-05-04 20:11:35 +0000517 att = &fb->Attachment[BUFFER_STENCIL];
Brian Paulf0bbbf62005-02-09 03:50:30 +0000518 test_attachment_completeness(ctx, GL_STENCIL, att);
519 if (!att->Complete) {
Brian Paule4b23562005-05-04 20:11:35 +0000520 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT;
Brian Paul49918882006-03-20 15:27:55 +0000521 fbo_incomplete("stencil attachment incomplete", -1);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000522 return;
523 }
524 }
525 else {
Brian Paule4b23562005-05-04 20:11:35 +0000526 att = &fb->Attachment[BUFFER_COLOR0 + i];
Brian Paulf0bbbf62005-02-09 03:50:30 +0000527 test_attachment_completeness(ctx, GL_COLOR, att);
528 if (!att->Complete) {
Brian Paule4b23562005-05-04 20:11:35 +0000529 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT;
Brian Paul49918882006-03-20 15:27:55 +0000530 fbo_incomplete("color attachment incomplete", i);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000531 return;
532 }
533 }
534
Brian Paul989edea2009-01-22 15:05:13 -0700535 /* get width, height, format of the renderbuffer/texture
536 */
Brian Paulf0bbbf62005-02-09 03:50:30 +0000537 if (att->Type == GL_TEXTURE) {
Brian Paula9fc8ba2005-10-05 01:48:07 +0000538 const struct gl_texture_image *texImg
539 = att->Texture->Image[att->CubeMapFace][att->TextureLevel];
Brian Paul989edea2009-01-22 15:05:13 -0700540 minWidth = MIN2(minWidth, texImg->Width);
541 maxWidth = MAX2(maxWidth, texImg->Width);
542 minHeight = MIN2(minHeight, texImg->Height);
543 maxHeight = MAX2(maxHeight, texImg->Height);
Brian Paula9fc8ba2005-10-05 01:48:07 +0000544 f = texImg->_BaseFormat;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000545 numImages++;
Brian Paul9f6ff492006-03-28 15:24:50 +0000546 if (f != GL_RGB && f != GL_RGBA && f != GL_DEPTH_COMPONENT
547 && f != GL_DEPTH_STENCIL_EXT) {
Brian Pauled7f3ae2005-06-07 15:03:40 +0000548 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT;
Brian Paul49918882006-03-20 15:27:55 +0000549 fbo_incomplete("texture attachment incomplete", -1);
Brian Pauled7f3ae2005-06-07 15:03:40 +0000550 return;
551 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000552 }
553 else if (att->Type == GL_RENDERBUFFER_EXT) {
Brian Paul989edea2009-01-22 15:05:13 -0700554 minWidth = MIN2(minWidth, att->Renderbuffer->Width);
555 maxWidth = MAX2(minWidth, att->Renderbuffer->Width);
556 minHeight = MIN2(minHeight, att->Renderbuffer->Height);
557 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000558 f = att->Renderbuffer->InternalFormat;
559 numImages++;
560 }
561 else {
562 assert(att->Type == GL_NONE);
563 continue;
564 }
565
Brian Paul72966362009-01-21 16:28:38 -0700566 if (numSamples < 0) {
567 /* first buffer */
568 numSamples = att->Renderbuffer->NumSamples;
569 }
570
Brian Paul722d9762009-01-20 16:58:49 -0700571 /* Error-check width, height, format, samples
Brian Paul989edea2009-01-22 15:05:13 -0700572 */
Brian Paulf0bbbf62005-02-09 03:50:30 +0000573 if (numImages == 1) {
Brian Paul722d9762009-01-20 16:58:49 -0700574 /* save format, num samples */
575 if (i >= 0) {
Brian Paulf0bbbf62005-02-09 03:50:30 +0000576 intFormat = f;
Brian Paul722d9762009-01-20 16:58:49 -0700577 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000578 }
579 else {
Brian Paul989edea2009-01-22 15:05:13 -0700580 if (!ctx->Extensions.ARB_framebuffer_object) {
581 /* check that width, height, format are same */
582 if (minWidth != maxWidth || minHeight != maxHeight) {
583 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT;
584 fbo_incomplete("width or height mismatch", -1);
585 return;
586 }
587 /* check that all color buffer have same format */
588 if (intFormat != GL_NONE && f != intFormat) {
589 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT;
590 fbo_incomplete("format mismatch", -1);
591 return;
592 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000593 }
Brian Paul722d9762009-01-20 16:58:49 -0700594 if (att->Renderbuffer &&
595 att->Renderbuffer->NumSamples != numSamples) {
Brian Paul72966362009-01-21 16:28:38 -0700596 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE;
Brian Paul722d9762009-01-20 16:58:49 -0700597 fbo_incomplete("inconsistant number of samples", i);
598 return;
599 }
600
Brian Paulf0bbbf62005-02-09 03:50:30 +0000601 }
602 }
603
Brian Paul868c09a2008-08-08 13:06:54 -0600604#ifndef FEATURE_OES_framebuffer_object
Brian Paulf0bbbf62005-02-09 03:50:30 +0000605 /* Check that all DrawBuffers are present */
Brian Paul28b014e2006-04-05 03:05:17 +0000606 for (j = 0; j < ctx->Const.MaxDrawBuffers; j++) {
607 if (fb->ColorDrawBuffer[j] != GL_NONE) {
Brian Paule4b23562005-05-04 20:11:35 +0000608 const struct gl_renderbuffer_attachment *att
Brian Paul28b014e2006-04-05 03:05:17 +0000609 = _mesa_get_attachment(ctx, fb, fb->ColorDrawBuffer[j]);
Brian Paule4b23562005-05-04 20:11:35 +0000610 assert(att);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000611 if (att->Type == GL_NONE) {
Brian Paule4b23562005-05-04 20:11:35 +0000612 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT;
Brian Paul28b014e2006-04-05 03:05:17 +0000613 fbo_incomplete("missing drawbuffer", j);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000614 return;
615 }
616 }
617 }
618
619 /* Check that the ReadBuffer is present */
Brian Paule4b23562005-05-04 20:11:35 +0000620 if (fb->ColorReadBuffer != GL_NONE) {
621 const struct gl_renderbuffer_attachment *att
Brian Paul84716042005-11-16 04:05:54 +0000622 = _mesa_get_attachment(ctx, fb, fb->ColorReadBuffer);
Brian Paule4b23562005-05-04 20:11:35 +0000623 assert(att);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000624 if (att->Type == GL_NONE) {
Brian Paule4b23562005-05-04 20:11:35 +0000625 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT;
Brian Paul49918882006-03-20 15:27:55 +0000626 fbo_incomplete("missing readbuffer", -1);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000627 return;
628 }
629 }
Brian Paul868c09a2008-08-08 13:06:54 -0600630#endif
Brian Paulf0bbbf62005-02-09 03:50:30 +0000631
632 if (numImages == 0) {
Brian Paule4b23562005-05-04 20:11:35 +0000633 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT;
Brian Paul49918882006-03-20 15:27:55 +0000634 fbo_incomplete("no attachments", -1);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000635 return;
636 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000637
Brian Paul3528f692009-01-22 15:13:18 -0700638 /* Provisionally set status = COMPLETE ... */
Brian Paule4b23562005-05-04 20:11:35 +0000639 fb->_Status = GL_FRAMEBUFFER_COMPLETE_EXT;
Brian Paul3528f692009-01-22 15:13:18 -0700640
Brian Paul777a2ef2009-01-22 15:17:42 -0700641 /* ... but the driver may say the FB is incomplete.
642 * Drivers will most likely set the status to GL_FRAMEBUFFER_UNSUPPORTED
643 * if anything.
644 */
Brian Paul3528f692009-01-22 15:13:18 -0700645 if (ctx->Driver.ValidateFramebuffer) {
646 ctx->Driver.ValidateFramebuffer(ctx, fb);
Brian Paul1f32c412009-01-19 17:34:19 -0700647 if (fb->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
648 fbo_incomplete("driver marked FBO as incomplete", -1);
649 }
Brian Paul3528f692009-01-22 15:13:18 -0700650 }
651
652 if (fb->_Status == GL_FRAMEBUFFER_COMPLETE_EXT) {
653 /*
654 * Note that if ARB_framebuffer_object is supported and the attached
655 * renderbuffers/textures are different sizes, the framebuffer
656 * width/height will be set to the smallest width/height.
657 */
658 fb->Width = minWidth;
659 fb->Height = minHeight;
Brian Paul38768db2009-01-27 09:49:27 -0700660
661 /* finally, update the visual info for the framebuffer */
662 _mesa_update_framebuffer_visual(fb);
Brian Paul3528f692009-01-22 15:13:18 -0700663 }
Brian Paule4b23562005-05-04 20:11:35 +0000664}
Brian Paulf0bbbf62005-02-09 03:50:30 +0000665
666
Brian Paul1864c7d2005-02-08 03:46:37 +0000667GLboolean GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +0000668_mesa_IsRenderbufferEXT(GLuint renderbuffer)
669{
Brian Paulddc82ee2005-02-05 19:56:45 +0000670 GET_CURRENT_CONTEXT(ctx);
Brian Paulddc82ee2005-02-05 19:56:45 +0000671 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Brian Paulbc6cced2005-10-04 15:01:27 +0000672 if (renderbuffer) {
Brian Paulea4fe662006-03-26 05:22:17 +0000673 struct gl_renderbuffer *rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
Brian Paulbc6cced2005-10-04 15:01:27 +0000674 if (rb != NULL && rb != &DummyRenderbuffer)
675 return GL_TRUE;
676 }
677 return GL_FALSE;
Brian Paulddc82ee2005-02-05 19:56:45 +0000678}
679
680
Brian Paul1864c7d2005-02-08 03:46:37 +0000681void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +0000682_mesa_BindRenderbufferEXT(GLenum target, GLuint renderbuffer)
683{
Brian42aaa542007-03-25 10:39:36 -0600684 struct gl_renderbuffer *newRb;
Brian Paulddc82ee2005-02-05 19:56:45 +0000685 GET_CURRENT_CONTEXT(ctx);
686
687 ASSERT_OUTSIDE_BEGIN_END(ctx);
688
Brian Paul3deaa012005-02-07 05:08:24 +0000689 if (target != GL_RENDERBUFFER_EXT) {
690 _mesa_error(ctx, GL_INVALID_ENUM,
691 "glBindRenderbufferEXT(target)");
Brian Paulddc82ee2005-02-05 19:56:45 +0000692 return;
693 }
694
Brian Paul474f28e2005-10-08 14:41:17 +0000695 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Keith Whitwelldf058292006-09-22 11:40:35 +0000696 /* The above doesn't fully flush the drivers in the way that a
697 * glFlush does, but that is required here:
698 */
699 if (ctx->Driver.Flush)
700 ctx->Driver.Flush(ctx);
701
Brian Paul474f28e2005-10-08 14:41:17 +0000702
Brian Paul3deaa012005-02-07 05:08:24 +0000703 if (renderbuffer) {
Brian Paulea4fe662006-03-26 05:22:17 +0000704 newRb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
Brian Paul1864c7d2005-02-08 03:46:37 +0000705 if (newRb == &DummyRenderbuffer) {
706 /* ID was reserved, but no real renderbuffer object made yet */
707 newRb = NULL;
708 }
Brian Paul1bc59bf2009-01-22 15:07:34 -0700709 else if (!newRb && ctx->Extensions.ARB_framebuffer_object) {
710 /* All RB IDs must be Gen'd */
711 _mesa_error(ctx, GL_INVALID_OPERATION, "glBindRenderbuffer(buffer)");
712 return;
713 }
714
Brian Paul3deaa012005-02-07 05:08:24 +0000715 if (!newRb) {
716 /* create new renderbuffer object */
Brian Paul2c6f9112005-02-24 05:47:06 +0000717 newRb = ctx->Driver.NewRenderbuffer(ctx, renderbuffer);
Brian Paul3deaa012005-02-07 05:08:24 +0000718 if (!newRb) {
719 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindRenderbufferEXT");
720 return;
721 }
Brian Paul2c6f9112005-02-24 05:47:06 +0000722 ASSERT(newRb->AllocStorage);
Brian Paul1864c7d2005-02-08 03:46:37 +0000723 _mesa_HashInsert(ctx->Shared->RenderBuffers, renderbuffer, newRb);
Brian42aaa542007-03-25 10:39:36 -0600724 newRb->RefCount = 1; /* referenced by hash table */
Brian Paul3deaa012005-02-07 05:08:24 +0000725 }
Brian Paulddc82ee2005-02-05 19:56:45 +0000726 }
Brian Paul463642c2005-02-08 02:06:00 +0000727 else {
728 newRb = NULL;
729 }
Brian Paulddc82ee2005-02-05 19:56:45 +0000730
Brian Paul1864c7d2005-02-08 03:46:37 +0000731 ASSERT(newRb != &DummyRenderbuffer);
732
Brian42aaa542007-03-25 10:39:36 -0600733 _mesa_reference_renderbuffer(&ctx->CurrentRenderbuffer, newRb);
Brian Paulddc82ee2005-02-05 19:56:45 +0000734}
735
736
Brian Pauld0f13fa2009-01-21 11:17:45 -0700737/**
738 * If the given renderbuffer is anywhere attached to the framebuffer, detach
739 * the renderbuffer.
740 * This is used when a renderbuffer object is deleted.
741 * The spec calls for unbinding.
742 */
743static void
744detach_renderbuffer(GLcontext *ctx,
745 struct gl_framebuffer *fb,
746 struct gl_renderbuffer *rb)
747{
748 GLuint i;
749 for (i = 0; i < BUFFER_COUNT; i++) {
750 if (fb->Attachment[i].Renderbuffer == rb) {
751 _mesa_remove_attachment(ctx, &fb->Attachment[i]);
752 }
753 }
Brian Paul72966362009-01-21 16:28:38 -0700754 invalidate_framebuffer(fb);
Brian Pauld0f13fa2009-01-21 11:17:45 -0700755}
756
757
Brian Paul1864c7d2005-02-08 03:46:37 +0000758void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +0000759_mesa_DeleteRenderbuffersEXT(GLsizei n, const GLuint *renderbuffers)
760{
761 GLint i;
762 GET_CURRENT_CONTEXT(ctx);
763
764 ASSERT_OUTSIDE_BEGIN_END(ctx);
Brian Paul474f28e2005-10-08 14:41:17 +0000765 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Brian Paulddc82ee2005-02-05 19:56:45 +0000766
767 for (i = 0; i < n; i++) {
Brian Paul2c6f9112005-02-24 05:47:06 +0000768 if (renderbuffers[i] > 0) {
769 struct gl_renderbuffer *rb;
Brian Paulea4fe662006-03-26 05:22:17 +0000770 rb = _mesa_lookup_renderbuffer(ctx, renderbuffers[i]);
Brian Paul3deaa012005-02-07 05:08:24 +0000771 if (rb) {
Brian Paul91802fd2005-10-04 16:01:02 +0000772 /* check if deleting currently bound renderbuffer object */
773 if (rb == ctx->CurrentRenderbuffer) {
774 /* bind default */
775 ASSERT(rb->RefCount >= 2);
776 _mesa_BindRenderbufferEXT(GL_RENDERBUFFER_EXT, 0);
777 }
778
Brian Pauld0f13fa2009-01-21 11:17:45 -0700779 if (ctx->DrawBuffer->Name) {
780 detach_renderbuffer(ctx, ctx->DrawBuffer, rb);
781 }
782 if (ctx->ReadBuffer->Name && ctx->ReadBuffer != ctx->DrawBuffer) {
783 detach_renderbuffer(ctx, ctx->ReadBuffer, rb);
784 }
785
Brian42aaa542007-03-25 10:39:36 -0600786 /* Remove from hash table immediately, to free the ID.
787 * But the object will not be freed until it's no longer
788 * referenced anywhere else.
789 */
Brian Paul3deaa012005-02-07 05:08:24 +0000790 _mesa_HashRemove(ctx->Shared->RenderBuffers, renderbuffers[i]);
Brian Paulddc82ee2005-02-05 19:56:45 +0000791
Brian Paul1864c7d2005-02-08 03:46:37 +0000792 if (rb != &DummyRenderbuffer) {
Brian42aaa542007-03-25 10:39:36 -0600793 /* no longer referenced by hash table */
794 _mesa_reference_renderbuffer(&rb, NULL);
Brian Paul3deaa012005-02-07 05:08:24 +0000795 }
796 }
Brian Paulddc82ee2005-02-05 19:56:45 +0000797 }
798 }
799}
800
801
Brian Paul1864c7d2005-02-08 03:46:37 +0000802void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +0000803_mesa_GenRenderbuffersEXT(GLsizei n, GLuint *renderbuffers)
804{
805 GET_CURRENT_CONTEXT(ctx);
806 GLuint first;
807 GLint i;
808
809 ASSERT_OUTSIDE_BEGIN_END(ctx);
810
811 if (n < 0) {
812 _mesa_error(ctx, GL_INVALID_VALUE, "glGenRenderbuffersEXT(n)");
813 return;
814 }
815
816 if (!renderbuffers)
817 return;
818
819 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->RenderBuffers, n);
820
821 for (i = 0; i < n; i++) {
Brian Paulddc82ee2005-02-05 19:56:45 +0000822 GLuint name = first + i;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000823 renderbuffers[i] = name;
Brian Paul1864c7d2005-02-08 03:46:37 +0000824 /* insert dummy placeholder into hash table */
Brian Paulddc82ee2005-02-05 19:56:45 +0000825 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul1864c7d2005-02-08 03:46:37 +0000826 _mesa_HashInsert(ctx->Shared->RenderBuffers, name, &DummyRenderbuffer);
Brian Paulddc82ee2005-02-05 19:56:45 +0000827 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
Brian Paulddc82ee2005-02-05 19:56:45 +0000828 }
829}
830
831
Brian Pauld9468c92005-02-10 16:08:07 +0000832/**
833 * Given an internal format token for a render buffer, return the
834 * corresponding base format.
Brian Paul59e0faa2006-03-15 17:48:00 +0000835 * This is very similar to _mesa_base_tex_format() but the set of valid
836 * internal formats is somewhat different.
837 *
Brian Pauld9468c92005-02-10 16:08:07 +0000838 * \return one of GL_RGB, GL_RGBA, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT
Brian Paul1ad7b992005-09-28 02:29:50 +0000839 * GL_DEPTH_STENCIL_EXT or zero if error.
Brian Pauld9468c92005-02-10 16:08:07 +0000840 */
Brian Paul59e0faa2006-03-15 17:48:00 +0000841GLenum
842_mesa_base_fbo_format(GLcontext *ctx, GLenum internalFormat)
Brian Paul463642c2005-02-08 02:06:00 +0000843{
844 switch (internalFormat) {
Brian Paulf0bbbf62005-02-09 03:50:30 +0000845 case GL_RGB:
846 case GL_R3_G3_B2:
847 case GL_RGB4:
848 case GL_RGB5:
849 case GL_RGB8:
850 case GL_RGB10:
851 case GL_RGB12:
852 case GL_RGB16:
853 return GL_RGB;
854 case GL_RGBA:
855 case GL_RGBA2:
856 case GL_RGBA4:
857 case GL_RGB5_A1:
858 case GL_RGBA8:
859 case GL_RGB10_A2:
860 case GL_RGBA12:
861 case GL_RGBA16:
862 return GL_RGBA;
863 case GL_STENCIL_INDEX:
864 case GL_STENCIL_INDEX1_EXT:
865 case GL_STENCIL_INDEX4_EXT:
866 case GL_STENCIL_INDEX8_EXT:
867 case GL_STENCIL_INDEX16_EXT:
868 return GL_STENCIL_INDEX;
869 case GL_DEPTH_COMPONENT:
Brian Paul2c6f9112005-02-24 05:47:06 +0000870 case GL_DEPTH_COMPONENT16:
871 case GL_DEPTH_COMPONENT24:
872 case GL_DEPTH_COMPONENT32:
Brian Paulf0bbbf62005-02-09 03:50:30 +0000873 return GL_DEPTH_COMPONENT;
Brian Paul1ad7b992005-09-28 02:29:50 +0000874 case GL_DEPTH_STENCIL_EXT:
875 case GL_DEPTH24_STENCIL8_EXT:
876 if (ctx->Extensions.EXT_packed_depth_stencil)
877 return GL_DEPTH_STENCIL_EXT;
878 else
879 return 0;
Brian Pauld9468c92005-02-10 16:08:07 +0000880 /* XXX add floating point formats eventually */
Brian Paulf0bbbf62005-02-09 03:50:30 +0000881 default:
882 return 0;
Brian Paul463642c2005-02-08 02:06:00 +0000883 }
Brian Paul463642c2005-02-08 02:06:00 +0000884}
885
886
Brian Paul4f3514e2009-01-22 15:19:56 -0700887/** sentinal value, see below */
888#define NO_SAMPLES 1000
889
890
891/**
892 * Helper function used by _mesa_RenderbufferStorageEXT() and
893 * _mesa_RenderbufferStorageMultisample().
894 * samples will be NO_SAMPLES if called by _mesa_RenderbufferStorageEXT().
895 */
896static void
897renderbuffer_storage(GLenum target, GLenum internalFormat,
898 GLsizei width, GLsizei height, GLsizei samples)
Brian Paulddc82ee2005-02-05 19:56:45 +0000899{
Brian Paul4f3514e2009-01-22 15:19:56 -0700900 const char *func = samples == NO_SAMPLES ?
901 "glRenderbufferStorage" : "RenderbufferStorageMultisample";
Brian Paul2c6f9112005-02-24 05:47:06 +0000902 struct gl_renderbuffer *rb;
Brian Paul463642c2005-02-08 02:06:00 +0000903 GLenum baseFormat;
Brian Paulddc82ee2005-02-05 19:56:45 +0000904 GET_CURRENT_CONTEXT(ctx);
905
906 ASSERT_OUTSIDE_BEGIN_END(ctx);
907
Brian Paul463642c2005-02-08 02:06:00 +0000908 if (target != GL_RENDERBUFFER_EXT) {
Brian Paul4f3514e2009-01-22 15:19:56 -0700909 _mesa_error(ctx, GL_INVALID_ENUM, "%s(target)", func);
Brian Paulddc82ee2005-02-05 19:56:45 +0000910 return;
911 }
912
Brian Paul59e0faa2006-03-15 17:48:00 +0000913 baseFormat = _mesa_base_fbo_format(ctx, internalFormat);
Brian Paul463642c2005-02-08 02:06:00 +0000914 if (baseFormat == 0) {
Brian Paul4f3514e2009-01-22 15:19:56 -0700915 _mesa_error(ctx, GL_INVALID_ENUM, "%s(internalFormat)", func);
Brian Paulddc82ee2005-02-05 19:56:45 +0000916 return;
917 }
918
Brian Paul13abf912006-04-13 19:17:13 +0000919 if (width < 1 || width > (GLsizei) ctx->Const.MaxRenderbufferSize) {
Brian Paul4f3514e2009-01-22 15:19:56 -0700920 _mesa_error(ctx, GL_INVALID_VALUE, "%s(width)", func);
Brian Paulddc82ee2005-02-05 19:56:45 +0000921 return;
922 }
923
Brian Paul13abf912006-04-13 19:17:13 +0000924 if (height < 1 || height > (GLsizei) ctx->Const.MaxRenderbufferSize) {
Brian Paul4f3514e2009-01-22 15:19:56 -0700925 _mesa_error(ctx, GL_INVALID_VALUE, "%s(height)", func);
926 return;
927 }
928
929 if (samples == NO_SAMPLES) {
930 /* NumSamples == 0 indicates non-multisampling */
931 samples = 0;
932 }
933 else if (samples > ctx->Const.MaxSamples) {
Brian Paul722d9762009-01-20 16:58:49 -0700934 /* note: driver may choose to use more samples than what's requested */
Brian Paul4f3514e2009-01-22 15:19:56 -0700935 _mesa_error(ctx, GL_INVALID_VALUE, "%s(samples)", func);
Brian Paulddc82ee2005-02-05 19:56:45 +0000936 return;
937 }
938
Brian Paul2c6f9112005-02-24 05:47:06 +0000939 rb = ctx->CurrentRenderbuffer;
Brian Paul2c6f9112005-02-24 05:47:06 +0000940 if (!rb) {
Brian Paul4f3514e2009-01-22 15:19:56 -0700941 _mesa_error(ctx, GL_INVALID_OPERATION, func);
Brian Paul463642c2005-02-08 02:06:00 +0000942 return;
943 }
944
Brian Paul474f28e2005-10-08 14:41:17 +0000945 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
946
Brian Paul311bcf52005-11-18 02:24:14 +0000947 if (rb->InternalFormat == internalFormat &&
Brian Paul13abf912006-04-13 19:17:13 +0000948 rb->Width == (GLuint) width &&
949 rb->Height == (GLuint) height) {
Brian Paul311bcf52005-11-18 02:24:14 +0000950 /* no change in allocation needed */
951 return;
952 }
953
Brian Paulea4fe662006-03-26 05:22:17 +0000954 /* These MUST get set by the AllocStorage func */
955 rb->_ActualFormat = 0;
956 rb->RedBits =
957 rb->GreenBits =
958 rb->BlueBits =
959 rb->AlphaBits =
960 rb->IndexBits =
961 rb->DepthBits =
962 rb->StencilBits = 0;
Brian Paul4f3514e2009-01-22 15:19:56 -0700963 rb->NumSamples = samples;
Brian Paulea4fe662006-03-26 05:22:17 +0000964
Brian Paul2c6f9112005-02-24 05:47:06 +0000965 /* Now allocate the storage */
966 ASSERT(rb->AllocStorage);
967 if (rb->AllocStorage(ctx, rb, internalFormat, width, height)) {
968 /* No error - check/set fields now */
Brian Paulea4fe662006-03-26 05:22:17 +0000969 assert(rb->_ActualFormat);
Brian Paul13abf912006-04-13 19:17:13 +0000970 assert(rb->Width == (GLuint) width);
971 assert(rb->Height == (GLuint) height);
Brian Paul0e31e022005-12-01 00:25:00 +0000972 assert(rb->RedBits || rb->GreenBits || rb->BlueBits || rb->AlphaBits ||
973 rb->DepthBits || rb->StencilBits || rb->IndexBits);
Brian Paulea4fe662006-03-26 05:22:17 +0000974 rb->InternalFormat = internalFormat;
Brian Paul2c6f9112005-02-24 05:47:06 +0000975 rb->_BaseFormat = baseFormat;
976 }
977 else {
978 /* Probably ran out of memory - clear the fields */
979 rb->Width = 0;
980 rb->Height = 0;
981 rb->InternalFormat = GL_NONE;
Brian Paulea4fe662006-03-26 05:22:17 +0000982 rb->_ActualFormat = GL_NONE;
Brian Paul2c6f9112005-02-24 05:47:06 +0000983 rb->_BaseFormat = GL_NONE;
Brian Paul0e31e022005-12-01 00:25:00 +0000984 rb->RedBits =
985 rb->GreenBits =
986 rb->BlueBits =
987 rb->AlphaBits =
988 rb->IndexBits =
989 rb->DepthBits =
Brian Paul4f3514e2009-01-22 15:19:56 -0700990 rb->StencilBits =
991 rb->NumSamples = 0;
Brian Paul463642c2005-02-08 02:06:00 +0000992 }
993
Brian Paule4b23562005-05-04 20:11:35 +0000994 /*
995 test_framebuffer_completeness(ctx, fb);
996 */
Brian Paul2c6f9112005-02-24 05:47:06 +0000997 /* XXX if this renderbuffer is attached anywhere, invalidate attachment
998 * points???
999 */
Brian Paulddc82ee2005-02-05 19:56:45 +00001000}
1001
1002
Brian Paul1864c7d2005-02-08 03:46:37 +00001003void GLAPIENTRY
Brian Paul4f3514e2009-01-22 15:19:56 -07001004_mesa_RenderbufferStorageEXT(GLenum target, GLenum internalFormat,
1005 GLsizei width, GLsizei height)
1006{
Brian Paul722d9762009-01-20 16:58:49 -07001007 /* GL_ARB_fbo says calling this function is equivalent to calling
1008 * glRenderbufferStorageMultisample() with samples=0. We pass in
1009 * a token value here just for error reporting purposes.
1010 */
Brian Paul4f3514e2009-01-22 15:19:56 -07001011 renderbuffer_storage(target, internalFormat, width, height, NO_SAMPLES);
1012}
1013
1014
1015void GLAPIENTRY
Brian Paul777a2ef2009-01-22 15:17:42 -07001016_mesa_RenderbufferStorageMultisample(GLenum target, GLsizei samples,
Brian Paul4f3514e2009-01-22 15:19:56 -07001017 GLenum internalFormat,
Brian Paul777a2ef2009-01-22 15:17:42 -07001018 GLsizei width, GLsizei height)
1019{
Brian Paul4f3514e2009-01-22 15:19:56 -07001020 renderbuffer_storage(target, internalFormat, width, height, samples);
Brian Paul777a2ef2009-01-22 15:17:42 -07001021}
1022
1023
1024
1025void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001026_mesa_GetRenderbufferParameterivEXT(GLenum target, GLenum pname, GLint *params)
1027{
Brian Paul722d9762009-01-20 16:58:49 -07001028 struct gl_renderbuffer *rb;
Brian Paulddc82ee2005-02-05 19:56:45 +00001029 GET_CURRENT_CONTEXT(ctx);
1030
1031 ASSERT_OUTSIDE_BEGIN_END(ctx);
1032
Brian Paul463642c2005-02-08 02:06:00 +00001033 if (target != GL_RENDERBUFFER_EXT) {
Brian Paulddc82ee2005-02-05 19:56:45 +00001034 _mesa_error(ctx, GL_INVALID_ENUM,
1035 "glGetRenderbufferParameterivEXT(target)");
1036 return;
1037 }
1038
Brian Paul722d9762009-01-20 16:58:49 -07001039 rb = ctx->CurrentRenderbuffer;
1040 if (!rb) {
Brian Paulddc82ee2005-02-05 19:56:45 +00001041 _mesa_error(ctx, GL_INVALID_OPERATION,
1042 "glGetRenderbufferParameterivEXT");
1043 return;
1044 }
1045
Brian Paul474f28e2005-10-08 14:41:17 +00001046 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
1047
Brian Paul463642c2005-02-08 02:06:00 +00001048 switch (pname) {
1049 case GL_RENDERBUFFER_WIDTH_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001050 *params = rb->Width;
Brian Paul463642c2005-02-08 02:06:00 +00001051 return;
1052 case GL_RENDERBUFFER_HEIGHT_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001053 *params = rb->Height;
Brian Paul463642c2005-02-08 02:06:00 +00001054 return;
1055 case GL_RENDERBUFFER_INTERNAL_FORMAT_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001056 *params = rb->InternalFormat;
Brian Paul463642c2005-02-08 02:06:00 +00001057 return;
Brian Paul1b939532005-05-31 23:55:21 +00001058 case GL_RENDERBUFFER_RED_SIZE_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001059 *params = rb->RedBits;
Brian Paul1b939532005-05-31 23:55:21 +00001060 break;
1061 case GL_RENDERBUFFER_GREEN_SIZE_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001062 *params = rb->GreenBits;
Brian Paul1b939532005-05-31 23:55:21 +00001063 break;
1064 case GL_RENDERBUFFER_BLUE_SIZE_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001065 *params = rb->BlueBits;
Brian Paul1b939532005-05-31 23:55:21 +00001066 break;
1067 case GL_RENDERBUFFER_ALPHA_SIZE_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001068 *params = rb->AlphaBits;
Brian Paul1b939532005-05-31 23:55:21 +00001069 break;
1070 case GL_RENDERBUFFER_DEPTH_SIZE_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001071 *params = rb->DepthBits;
Brian Paul1b939532005-05-31 23:55:21 +00001072 break;
1073 case GL_RENDERBUFFER_STENCIL_SIZE_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07001074 *params = rb->StencilBits;
Brian Paul1b939532005-05-31 23:55:21 +00001075 break;
Brian Paul722d9762009-01-20 16:58:49 -07001076 case GL_RENDERBUFFER_SAMPLES:
1077 if (ctx->Extensions.ARB_framebuffer_object) {
1078 *params = rb->NumSamples;
1079 break;
1080 }
1081 /* fallthrough */
Brian Paul463642c2005-02-08 02:06:00 +00001082 default:
1083 _mesa_error(ctx, GL_INVALID_ENUM,
1084 "glGetRenderbufferParameterivEXT(target)");
1085 return;
1086 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001087}
1088
1089
Brian Paul1864c7d2005-02-08 03:46:37 +00001090GLboolean GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001091_mesa_IsFramebufferEXT(GLuint framebuffer)
1092{
Brian Paulddc82ee2005-02-05 19:56:45 +00001093 GET_CURRENT_CONTEXT(ctx);
Brian Paulddc82ee2005-02-05 19:56:45 +00001094 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Brian Paulbc6cced2005-10-04 15:01:27 +00001095 if (framebuffer) {
Brian Paulea4fe662006-03-26 05:22:17 +00001096 struct gl_framebuffer *rb = _mesa_lookup_framebuffer(ctx, framebuffer);
Brian Paulbc6cced2005-10-04 15:01:27 +00001097 if (rb != NULL && rb != &DummyFramebuffer)
1098 return GL_TRUE;
1099 }
1100 return GL_FALSE;
Brian Paulddc82ee2005-02-05 19:56:45 +00001101}
1102
1103
Brian Paulea4fe662006-03-26 05:22:17 +00001104static void
1105check_begin_texture_render(GLcontext *ctx, struct gl_framebuffer *fb)
1106{
1107 GLuint i;
1108 ASSERT(ctx->Driver.RenderTexture);
1109 for (i = 0; i < BUFFER_COUNT; i++) {
1110 struct gl_renderbuffer_attachment *att = fb->Attachment + i;
1111 struct gl_texture_object *texObj = att->Texture;
Brian Paul9f6ff492006-03-28 15:24:50 +00001112 if (texObj
1113 && att->Texture->Image[att->CubeMapFace][att->TextureLevel]) {
Brian Paulea4fe662006-03-26 05:22:17 +00001114 ctx->Driver.RenderTexture(ctx, fb, att);
1115 }
1116 }
1117}
1118
1119
Brian Paul0e31e022005-12-01 00:25:00 +00001120/**
1121 * Examine all the framebuffer's attachments to see if any are textures.
1122 * If so, call ctx->Driver.FinishRenderTexture() for each texture to
1123 * notify the device driver that the texture image may have changed.
1124 */
1125static void
Brian Paulea4fe662006-03-26 05:22:17 +00001126check_end_texture_render(GLcontext *ctx, struct gl_framebuffer *fb)
Brian Paul0e31e022005-12-01 00:25:00 +00001127{
1128 if (ctx->Driver.FinishRenderTexture) {
1129 GLuint i;
1130 for (i = 0; i < BUFFER_COUNT; i++) {
1131 struct gl_renderbuffer_attachment *att = fb->Attachment + i;
Brian8b361662007-11-09 08:55:49 -07001132 if (att->Texture && att->Renderbuffer) {
Brian Paul519b23b2006-03-20 18:51:57 +00001133 ctx->Driver.FinishRenderTexture(ctx, att);
Brian Paul0e31e022005-12-01 00:25:00 +00001134 }
1135 }
1136 }
1137}
1138
1139
Brian Paul1864c7d2005-02-08 03:46:37 +00001140void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001141_mesa_BindFramebufferEXT(GLenum target, GLuint framebuffer)
1142{
Roland Scheideggerdbfb3752007-07-17 17:29:55 +02001143 struct gl_framebuffer *newFb, *newFbread;
Brian Paul0bffb112005-11-08 14:45:48 +00001144 GLboolean bindReadBuf, bindDrawBuf;
Brian Paulddc82ee2005-02-05 19:56:45 +00001145 GET_CURRENT_CONTEXT(ctx);
1146
Brian Paul1bc59bf2009-01-22 15:07:34 -07001147#ifdef DEBUG
1148 if (ctx->Extensions.ARB_framebuffer_object) {
1149 ASSERT(ctx->Extensions.EXT_framebuffer_object);
1150 ASSERT(ctx->Extensions.EXT_framebuffer_blit);
1151 }
1152#endif
1153
Brian Paulddc82ee2005-02-05 19:56:45 +00001154 ASSERT_OUTSIDE_BEGIN_END(ctx);
1155
Brian Paulea4fe662006-03-26 05:22:17 +00001156 if (!ctx->Extensions.EXT_framebuffer_object) {
1157 _mesa_error(ctx, GL_INVALID_OPERATION,
1158 "glBindFramebufferEXT(unsupported)");
1159 return;
1160 }
1161
Brian Paul0bffb112005-11-08 14:45:48 +00001162 switch (target) {
1163#if FEATURE_EXT_framebuffer_blit
1164 case GL_DRAW_FRAMEBUFFER_EXT:
1165 if (!ctx->Extensions.EXT_framebuffer_blit) {
1166 _mesa_error(ctx, GL_INVALID_ENUM, "glBindFramebufferEXT(target)");
1167 return;
1168 }
1169 bindDrawBuf = GL_TRUE;
1170 bindReadBuf = GL_FALSE;
1171 break;
1172 case GL_READ_FRAMEBUFFER_EXT:
1173 if (!ctx->Extensions.EXT_framebuffer_blit) {
1174 _mesa_error(ctx, GL_INVALID_ENUM, "glBindFramebufferEXT(target)");
1175 return;
1176 }
1177 bindDrawBuf = GL_FALSE;
1178 bindReadBuf = GL_TRUE;
1179 break;
1180#endif
1181 case GL_FRAMEBUFFER_EXT:
1182 bindDrawBuf = GL_TRUE;
1183 bindReadBuf = GL_TRUE;
1184 break;
1185 default:
Brian Pauleba4ff62005-09-06 21:22:16 +00001186 _mesa_error(ctx, GL_INVALID_ENUM, "glBindFramebufferEXT(target)");
Brian Paulddc82ee2005-02-05 19:56:45 +00001187 return;
1188 }
1189
Brian Paul474f28e2005-10-08 14:41:17 +00001190 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Brian32d86eb2007-08-16 18:52:48 +01001191
Keith Whitwell5ac93f82006-11-01 14:21:57 +00001192 if (ctx->Driver.Flush) {
1193 ctx->Driver.Flush(ctx);
1194 }
Brian32d86eb2007-08-16 18:52:48 +01001195
Brian Paul3deaa012005-02-07 05:08:24 +00001196 if (framebuffer) {
Brian Paule4b23562005-05-04 20:11:35 +00001197 /* Binding a user-created framebuffer object */
Brian Paulea4fe662006-03-26 05:22:17 +00001198 newFb = _mesa_lookup_framebuffer(ctx, framebuffer);
Brian Paul1864c7d2005-02-08 03:46:37 +00001199 if (newFb == &DummyFramebuffer) {
Brian Paul923b6fc2005-02-08 04:08:56 +00001200 /* ID was reserved, but no real framebuffer object made yet */
Brian Paul1864c7d2005-02-08 03:46:37 +00001201 newFb = NULL;
1202 }
Brian Paul1bc59bf2009-01-22 15:07:34 -07001203 else if (!newFb && ctx->Extensions.ARB_framebuffer_object) {
1204 /* All FBO IDs must be Gen'd */
1205 _mesa_error(ctx, GL_INVALID_OPERATION, "glBindFramebuffer(buffer)");
1206 return;
1207 }
1208
Brian Paul3deaa012005-02-07 05:08:24 +00001209 if (!newFb) {
1210 /* create new framebuffer object */
Brian Paul2c6f9112005-02-24 05:47:06 +00001211 newFb = ctx->Driver.NewFramebuffer(ctx, framebuffer);
Brian Paul3deaa012005-02-07 05:08:24 +00001212 if (!newFb) {
1213 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindFramebufferEXT");
1214 return;
1215 }
Brian Paul1864c7d2005-02-08 03:46:37 +00001216 _mesa_HashInsert(ctx->Shared->FrameBuffers, framebuffer, newFb);
Brian Paul3deaa012005-02-07 05:08:24 +00001217 }
Roland Scheideggerdbfb3752007-07-17 17:29:55 +02001218 newFbread = newFb;
Brian Paul3deaa012005-02-07 05:08:24 +00001219 }
Brian Paul463642c2005-02-08 02:06:00 +00001220 else {
Brian Paule4b23562005-05-04 20:11:35 +00001221 /* Binding the window system framebuffer (which was originally set
1222 * with MakeCurrent).
1223 */
1224 newFb = ctx->WinSysDrawBuffer;
Roland Scheideggerdbfb3752007-07-17 17:29:55 +02001225 newFbread = ctx->WinSysReadBuffer;
Brian Paul3deaa012005-02-07 05:08:24 +00001226 }
1227
Brian Paulea4fe662006-03-26 05:22:17 +00001228 ASSERT(newFb);
Brian Paul1864c7d2005-02-08 03:46:37 +00001229 ASSERT(newFb != &DummyFramebuffer);
1230
Brian Paulea4fe662006-03-26 05:22:17 +00001231 /*
Brian Paul16144632009-02-26 14:49:24 -07001232 * OK, now bind the new Draw/Read framebuffers, if they're changing.
Brian Paulea4fe662006-03-26 05:22:17 +00001233 */
1234
Brian Paul0bffb112005-11-08 14:45:48 +00001235 if (bindReadBuf) {
Brian Paul16144632009-02-26 14:49:24 -07001236 if (ctx->ReadBuffer == newFbread)
1237 bindReadBuf = GL_FALSE; /* no change */
1238 else
1239 _mesa_reference_framebuffer(&ctx->ReadBuffer, newFbread);
Brian Paul0bffb112005-11-08 14:45:48 +00001240 }
1241
1242 if (bindDrawBuf) {
Briana510bc32007-03-06 10:07:59 -07001243 /* check if old FB had any texture attachments */
Brian Paul16144632009-02-26 14:49:24 -07001244 if (ctx->DrawBuffer->Name != 0) {
1245 check_end_texture_render(ctx, ctx->DrawBuffer);
1246 }
Brian32d86eb2007-08-16 18:52:48 +01001247
Brian Paul16144632009-02-26 14:49:24 -07001248 if (ctx->DrawBuffer == newFb)
1249 bindDrawBuf = GL_FALSE; /* no change */
1250 else
1251 _mesa_reference_framebuffer(&ctx->DrawBuffer, newFb);
Brian32d86eb2007-08-16 18:52:48 +01001252
1253 if (newFb->Name != 0) {
1254 /* check if newly bound framebuffer has any texture attachments */
1255 check_begin_texture_render(ctx, newFb);
1256 }
Brian Paul0bffb112005-11-08 14:45:48 +00001257 }
Brian Paul59e0faa2006-03-15 17:48:00 +00001258
Brian Paul16144632009-02-26 14:49:24 -07001259 if ((bindDrawBuf || bindReadBuf) && ctx->Driver.BindFramebuffer) {
Roland Scheideggerdbfb3752007-07-17 17:29:55 +02001260 ctx->Driver.BindFramebuffer(ctx, target, newFb, newFbread);
Brian Paul59e0faa2006-03-15 17:48:00 +00001261 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001262}
1263
1264
Brian Paul1864c7d2005-02-08 03:46:37 +00001265void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001266_mesa_DeleteFramebuffersEXT(GLsizei n, const GLuint *framebuffers)
1267{
1268 GLint i;
1269 GET_CURRENT_CONTEXT(ctx);
1270
1271 ASSERT_OUTSIDE_BEGIN_END(ctx);
Brian Paul474f28e2005-10-08 14:41:17 +00001272 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Keith Whitwelldf058292006-09-22 11:40:35 +00001273 /* The above doesn't fully flush the drivers in the way that a
1274 * glFlush does, but that is required here:
1275 */
1276 if (ctx->Driver.Flush)
1277 ctx->Driver.Flush(ctx);
Brian Paulddc82ee2005-02-05 19:56:45 +00001278
1279 for (i = 0; i < n; i++) {
Brian Paul2c6f9112005-02-24 05:47:06 +00001280 if (framebuffers[i] > 0) {
1281 struct gl_framebuffer *fb;
Brian Paulea4fe662006-03-26 05:22:17 +00001282 fb = _mesa_lookup_framebuffer(ctx, framebuffers[i]);
Brian Paul3deaa012005-02-07 05:08:24 +00001283 if (fb) {
Brian Paule4b23562005-05-04 20:11:35 +00001284 ASSERT(fb == &DummyFramebuffer || fb->Name == framebuffers[i]);
Brian Paul91802fd2005-10-04 16:01:02 +00001285
1286 /* check if deleting currently bound framebuffer object */
1287 if (fb == ctx->DrawBuffer) {
1288 /* bind default */
1289 ASSERT(fb->RefCount >= 2);
Brian Pauld0f13fa2009-01-21 11:17:45 -07001290 _mesa_BindFramebufferEXT(GL_DRAW_FRAMEBUFFER_EXT, 0);
1291 }
1292 if (fb == ctx->ReadBuffer) {
1293 /* bind default */
1294 ASSERT(fb->RefCount >= 2);
1295 _mesa_BindFramebufferEXT(GL_READ_FRAMEBUFFER_EXT, 0);
Brian Paul91802fd2005-10-04 16:01:02 +00001296 }
1297
Brian Paul3deaa012005-02-07 05:08:24 +00001298 /* remove from hash table immediately, to free the ID */
1299 _mesa_HashRemove(ctx->Shared->FrameBuffers, framebuffers[i]);
Brian Paulddc82ee2005-02-05 19:56:45 +00001300
Brian Paul1864c7d2005-02-08 03:46:37 +00001301 if (fb != &DummyFramebuffer) {
1302 /* But the object will not be freed until it's no longer
1303 * bound in any context.
1304 */
Brian Pauld5229442009-02-09 08:30:55 -07001305 _mesa_reference_framebuffer(&fb, NULL);
Brian Paul3deaa012005-02-07 05:08:24 +00001306 }
1307 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001308 }
1309 }
1310}
1311
1312
Brian Paul1864c7d2005-02-08 03:46:37 +00001313void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001314_mesa_GenFramebuffersEXT(GLsizei n, GLuint *framebuffers)
1315{
1316 GET_CURRENT_CONTEXT(ctx);
1317 GLuint first;
1318 GLint i;
1319
1320 ASSERT_OUTSIDE_BEGIN_END(ctx);
1321
1322 if (n < 0) {
1323 _mesa_error(ctx, GL_INVALID_VALUE, "glGenFramebuffersEXT(n)");
1324 return;
1325 }
1326
1327 if (!framebuffers)
1328 return;
1329
1330 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->FrameBuffers, n);
1331
1332 for (i = 0; i < n; i++) {
Brian Paulddc82ee2005-02-05 19:56:45 +00001333 GLuint name = first + i;
Brian Paulf0bbbf62005-02-09 03:50:30 +00001334 framebuffers[i] = name;
1335 /* insert dummy placeholder into hash table */
Brian Paulddc82ee2005-02-05 19:56:45 +00001336 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul1864c7d2005-02-08 03:46:37 +00001337 _mesa_HashInsert(ctx->Shared->FrameBuffers, name, &DummyFramebuffer);
Brian Paulddc82ee2005-02-05 19:56:45 +00001338 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
Brian Paulddc82ee2005-02-05 19:56:45 +00001339 }
1340}
1341
1342
1343
Brian Paul1864c7d2005-02-08 03:46:37 +00001344GLenum GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001345_mesa_CheckFramebufferStatusEXT(GLenum target)
1346{
Brian Paul0bffb112005-11-08 14:45:48 +00001347 struct gl_framebuffer *buffer;
Brian Paulddc82ee2005-02-05 19:56:45 +00001348 GET_CURRENT_CONTEXT(ctx);
1349
Brian Paule4b23562005-05-04 20:11:35 +00001350 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
Brian Paulddc82ee2005-02-05 19:56:45 +00001351
Brian Paul0bffb112005-11-08 14:45:48 +00001352 switch (target) {
1353#if FEATURE_EXT_framebuffer_blit
1354 case GL_DRAW_FRAMEBUFFER_EXT:
1355 if (!ctx->Extensions.EXT_framebuffer_blit) {
1356 _mesa_error(ctx, GL_INVALID_ENUM, "glCheckFramebufferStatus(target)");
1357 return 0;
1358 }
1359 buffer = ctx->DrawBuffer;
1360 break;
1361 case GL_READ_FRAMEBUFFER_EXT:
1362 if (!ctx->Extensions.EXT_framebuffer_blit) {
1363 _mesa_error(ctx, GL_INVALID_ENUM, "glCheckFramebufferStatus(target)");
1364 return 0;
1365 }
1366 buffer = ctx->ReadBuffer;
1367 break;
1368#endif
1369 case GL_FRAMEBUFFER_EXT:
1370 buffer = ctx->DrawBuffer;
1371 break;
1372 default:
Brian Paulf0bbbf62005-02-09 03:50:30 +00001373 _mesa_error(ctx, GL_INVALID_ENUM, "glCheckFramebufferStatus(target)");
Brian Paule4b23562005-05-04 20:11:35 +00001374 return 0; /* formerly GL_FRAMEBUFFER_STATUS_ERROR_EXT */
Brian Paulddc82ee2005-02-05 19:56:45 +00001375 }
1376
Brian Paul0bffb112005-11-08 14:45:48 +00001377 if (buffer->Name == 0) {
Brian Paulf0bbbf62005-02-09 03:50:30 +00001378 /* The window system / default framebuffer is always complete */
1379 return GL_FRAMEBUFFER_COMPLETE_EXT;
1380 }
1381
Brian Paul474f28e2005-10-08 14:41:17 +00001382 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
1383
Brian Paul72966362009-01-21 16:28:38 -07001384 if (buffer->_Status != GL_FRAMEBUFFER_COMPLETE) {
1385 _mesa_test_framebuffer_completeness(ctx, buffer);
1386 }
1387
Brian Paul0bffb112005-11-08 14:45:48 +00001388 return buffer->_Status;
Brian Paulddc82ee2005-02-05 19:56:45 +00001389}
1390
1391
1392
1393/**
Brian Paulea4fe662006-03-26 05:22:17 +00001394 * Common code called by glFramebufferTexture1D/2D/3DEXT().
Brian Paulddc82ee2005-02-05 19:56:45 +00001395 */
Brian Paulea4fe662006-03-26 05:22:17 +00001396static void
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001397framebuffer_texture(GLcontext *ctx, const char *caller, GLenum target,
1398 GLenum attachment, GLenum textarget, GLuint texture,
Brian Paulea4fe662006-03-26 05:22:17 +00001399 GLint level, GLint zoffset)
Brian Paulddc82ee2005-02-05 19:56:45 +00001400{
Brian Paul2c6f9112005-02-24 05:47:06 +00001401 struct gl_renderbuffer_attachment *att;
Brian Paulea4fe662006-03-26 05:22:17 +00001402 struct gl_texture_object *texObj = NULL;
1403 struct gl_framebuffer *fb;
Brian Paul5fec84a2009-01-29 15:01:09 -07001404 GLboolean error = GL_FALSE;
Brian Paulddc82ee2005-02-05 19:56:45 +00001405
1406 ASSERT_OUTSIDE_BEGIN_END(ctx);
1407
Brian Paul5fec84a2009-01-29 15:01:09 -07001408 switch (target) {
1409 case GL_READ_FRAMEBUFFER_EXT:
1410 error = !ctx->Extensions.EXT_framebuffer_blit;
1411 fb = ctx->ReadBuffer;
1412 break;
1413 case GL_DRAW_FRAMEBUFFER_EXT:
1414 error = !ctx->Extensions.EXT_framebuffer_blit;
1415 /* fall-through */
1416 case GL_FRAMEBUFFER_EXT:
1417 fb = ctx->DrawBuffer;
1418 break;
1419 default:
1420 error = GL_TRUE;
1421 }
1422
1423 if (error) {
Brian Paulea4fe662006-03-26 05:22:17 +00001424 _mesa_error(ctx, GL_INVALID_ENUM,
Brian Paul5fec84a2009-01-29 15:01:09 -07001425 "glFramebufferTexture%sEXT(target=0x%x)", caller, target);
Brian Paulddc82ee2005-02-05 19:56:45 +00001426 return;
Brian Paulea4fe662006-03-26 05:22:17 +00001427 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001428
Brian Paulea4fe662006-03-26 05:22:17 +00001429 ASSERT(fb);
Brian Paul3deaa012005-02-07 05:08:24 +00001430
Brian Paulea4fe662006-03-26 05:22:17 +00001431 /* check framebuffer binding */
1432 if (fb->Name == 0) {
1433 _mesa_error(ctx, GL_INVALID_OPERATION,
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001434 "glFramebufferTexture%sEXT", caller);
Brian Paulea4fe662006-03-26 05:22:17 +00001435 return;
1436 }
1437
Brian Paulea4fe662006-03-26 05:22:17 +00001438
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001439 /* The textarget, level, and zoffset parameters are only validated if
1440 * texture is non-zero.
1441 */
1442 if (texture) {
1443 GLboolean err = GL_TRUE;
1444
1445 texObj = _mesa_lookup_texture(ctx, texture);
1446 if (texObj != NULL) {
Ian Romanickbb372f12007-05-16 15:34:22 -07001447 if (textarget == 0) {
1448 err = (texObj->Target != GL_TEXTURE_3D) &&
1449 (texObj->Target != GL_TEXTURE_1D_ARRAY_EXT) &&
1450 (texObj->Target != GL_TEXTURE_2D_ARRAY_EXT);
1451 }
1452 else {
1453 err = (texObj->Target == GL_TEXTURE_CUBE_MAP)
1454 ? !IS_CUBE_FACE(textarget)
1455 : (texObj->Target != textarget);
1456 }
Brian Paulea4fe662006-03-26 05:22:17 +00001457 }
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001458
1459 if (err) {
Brian Paulea4fe662006-03-26 05:22:17 +00001460 _mesa_error(ctx, GL_INVALID_OPERATION,
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001461 "glFramebufferTexture%sEXT(texture target mismatch)",
1462 caller);
Brian Paulea4fe662006-03-26 05:22:17 +00001463 return;
1464 }
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001465
1466 if (texObj->Target == GL_TEXTURE_3D) {
Brian Paulea4fe662006-03-26 05:22:17 +00001467 const GLint maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1);
1468 if (zoffset < 0 || zoffset >= maxSize) {
1469 _mesa_error(ctx, GL_INVALID_VALUE,
Ian Romanickbb372f12007-05-16 15:34:22 -07001470 "glFramebufferTexture%sEXT(zoffset)", caller);
Brian Paulea4fe662006-03-26 05:22:17 +00001471 return;
1472 }
1473 }
Ian Romanickbb372f12007-05-16 15:34:22 -07001474 else if ((texObj->Target == GL_TEXTURE_1D_ARRAY_EXT) ||
1475 (texObj->Target == GL_TEXTURE_2D_ARRAY_EXT)) {
1476 if (zoffset < 0 || zoffset >= ctx->Const.MaxArrayTextureLayers) {
1477 _mesa_error(ctx, GL_INVALID_VALUE,
1478 "glFramebufferTexture%sEXT(layer)", caller);
1479 return;
1480 }
1481 }
1482
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001483 if ((level < 0) ||
1484 (level >= _mesa_max_texture_levels(ctx, texObj->Target))) {
1485 _mesa_error(ctx, GL_INVALID_VALUE,
1486 "glFramebufferTexture%sEXT(level)", caller);
1487 return;
1488 }
Brian Paulea4fe662006-03-26 05:22:17 +00001489 }
1490
1491 att = _mesa_get_attachment(ctx, fb, attachment);
Brian Paul3deaa012005-02-07 05:08:24 +00001492 if (att == NULL) {
1493 _mesa_error(ctx, GL_INVALID_ENUM,
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001494 "glFramebufferTexture%sEXT(attachment)", caller);
Brian Paul3deaa012005-02-07 05:08:24 +00001495 return;
1496 }
1497
Brian Paul30590072009-01-21 11:06:11 -07001498 if (texObj && attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
1499 /* the texture format must be depth+stencil */
1500 const struct gl_texture_image *texImg;
1501 texImg = texObj->Image[0][texObj->BaseLevel];
1502 if (!texImg || texImg->_BaseFormat != GL_DEPTH_STENCIL) {
1503 _mesa_error(ctx, GL_INVALID_OPERATION,
1504 "glFramebufferTexture%sEXT(texture is not"
1505 " DEPTH_STENCIL format)", caller);
1506 return;
1507 }
1508 }
1509
Brian Paul474f28e2005-10-08 14:41:17 +00001510 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Keith Whitwelldf058292006-09-22 11:40:35 +00001511 /* The above doesn't fully flush the drivers in the way that a
1512 * glFlush does, but that is required here:
1513 */
1514 if (ctx->Driver.Flush)
1515 ctx->Driver.Flush(ctx);
Brian Paul474f28e2005-10-08 14:41:17 +00001516
Brian Paulea4fe662006-03-26 05:22:17 +00001517 _glthread_LOCK_MUTEX(fb->Mutex);
1518 if (texObj) {
1519 _mesa_set_texture_attachment(ctx, fb, att, texObj, textarget,
1520 level, zoffset);
Brian Paul2897cee2009-01-29 09:20:18 -07001521 /* Set the render-to-texture flag. We'll check this flag in
1522 * glTexImage() and friends to determine if we need to revalidate
1523 * any FBOs that might be rendering into this texture.
1524 * This flag never gets cleared since it's non-trivial to determine
1525 * when all FBOs might be done rendering to this texture. That's OK
1526 * though since it's uncommon to render to a texture then repeatedly
1527 * call glTexImage() to change images in the texture.
1528 */
1529 texObj->_RenderToTexture = GL_TRUE;
Brian Paul3deaa012005-02-07 05:08:24 +00001530 }
1531 else {
Brian Paul519b23b2006-03-20 18:51:57 +00001532 _mesa_remove_attachment(ctx, att);
Brian Paul3deaa012005-02-07 05:08:24 +00001533 }
Brian Paul72966362009-01-21 16:28:38 -07001534
1535 invalidate_framebuffer(fb);
1536
Brian Paulea4fe662006-03-26 05:22:17 +00001537 _glthread_UNLOCK_MUTEX(fb->Mutex);
1538}
1539
1540
1541
1542void GLAPIENTRY
1543_mesa_FramebufferTexture1DEXT(GLenum target, GLenum attachment,
1544 GLenum textarget, GLuint texture, GLint level)
1545{
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001546 GET_CURRENT_CONTEXT(ctx);
1547
1548 if ((texture != 0) && (textarget != GL_TEXTURE_1D)) {
1549 _mesa_error(ctx, GL_INVALID_ENUM,
1550 "glFramebufferTexture1DEXT(textarget)");
1551 return;
1552 }
1553
1554 framebuffer_texture(ctx, "1D", target, attachment, textarget, texture,
1555 level, 0);
Brian Paulddc82ee2005-02-05 19:56:45 +00001556}
1557
1558
Brian Paul1864c7d2005-02-08 03:46:37 +00001559void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001560_mesa_FramebufferTexture2DEXT(GLenum target, GLenum attachment,
1561 GLenum textarget, GLuint texture, GLint level)
1562{
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001563 GET_CURRENT_CONTEXT(ctx);
1564
1565 if ((texture != 0) &&
1566 (textarget != GL_TEXTURE_2D) &&
1567 (textarget != GL_TEXTURE_RECTANGLE_ARB) &&
1568 (!IS_CUBE_FACE(textarget))) {
1569 _mesa_error(ctx, GL_INVALID_OPERATION,
Brian Paul5fec84a2009-01-29 15:01:09 -07001570 "glFramebufferTexture2DEXT(textarget=0x%x)", textarget);
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001571 return;
1572 }
1573
1574 framebuffer_texture(ctx, "2D", target, attachment, textarget, texture,
1575 level, 0);
Brian Paulddc82ee2005-02-05 19:56:45 +00001576}
1577
1578
Brian Paul1864c7d2005-02-08 03:46:37 +00001579void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001580_mesa_FramebufferTexture3DEXT(GLenum target, GLenum attachment,
1581 GLenum textarget, GLuint texture,
1582 GLint level, GLint zoffset)
1583{
Ian Romanickb0fe0d82007-05-15 13:42:25 -07001584 GET_CURRENT_CONTEXT(ctx);
1585
1586 if ((texture != 0) && (textarget != GL_TEXTURE_3D)) {
1587 _mesa_error(ctx, GL_INVALID_ENUM,
1588 "glFramebufferTexture3DEXT(textarget)");
1589 return;
1590 }
1591
1592 framebuffer_texture(ctx, "3D", target, attachment, textarget, texture,
Brian Paulea4fe662006-03-26 05:22:17 +00001593 level, zoffset);
Brian Paulddc82ee2005-02-05 19:56:45 +00001594}
1595
1596
Brian Paul1864c7d2005-02-08 03:46:37 +00001597void GLAPIENTRY
Ian Romanickbb372f12007-05-16 15:34:22 -07001598_mesa_FramebufferTextureLayerEXT(GLenum target, GLenum attachment,
1599 GLuint texture, GLint level, GLint layer)
1600{
1601 GET_CURRENT_CONTEXT(ctx);
1602
1603 framebuffer_texture(ctx, "Layer", target, attachment, 0, texture,
1604 level, layer);
1605}
1606
1607
1608void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001609_mesa_FramebufferRenderbufferEXT(GLenum target, GLenum attachment,
1610 GLenum renderbufferTarget,
1611 GLuint renderbuffer)
1612{
Brian Paul2c6f9112005-02-24 05:47:06 +00001613 struct gl_renderbuffer_attachment *att;
Brian Paul0bffb112005-11-08 14:45:48 +00001614 struct gl_framebuffer *fb;
Brian Paule4b23562005-05-04 20:11:35 +00001615 struct gl_renderbuffer *rb;
Brian Paulddc82ee2005-02-05 19:56:45 +00001616 GET_CURRENT_CONTEXT(ctx);
1617
1618 ASSERT_OUTSIDE_BEGIN_END(ctx);
1619
Brian Paul0bffb112005-11-08 14:45:48 +00001620 switch (target) {
1621#if FEATURE_EXT_framebuffer_blit
1622 case GL_DRAW_FRAMEBUFFER_EXT:
1623 if (!ctx->Extensions.EXT_framebuffer_blit) {
1624 _mesa_error(ctx, GL_INVALID_ENUM,
1625 "glFramebufferRenderbufferEXT(target)");
1626 return;
1627 }
1628 fb = ctx->DrawBuffer;
1629 break;
1630 case GL_READ_FRAMEBUFFER_EXT:
1631 if (!ctx->Extensions.EXT_framebuffer_blit) {
1632 _mesa_error(ctx, GL_INVALID_ENUM,
1633 "glFramebufferRenderbufferEXT(target)");
1634 return;
1635 }
1636 fb = ctx->ReadBuffer;
1637 break;
1638#endif
1639 case GL_FRAMEBUFFER_EXT:
1640 fb = ctx->DrawBuffer;
1641 break;
1642 default:
Brian Paulddc82ee2005-02-05 19:56:45 +00001643 _mesa_error(ctx, GL_INVALID_ENUM,
1644 "glFramebufferRenderbufferEXT(target)");
1645 return;
1646 }
1647
Brian Paul3deaa012005-02-07 05:08:24 +00001648 if (renderbufferTarget != GL_RENDERBUFFER_EXT) {
Brian Paule4b23562005-05-04 20:11:35 +00001649 _mesa_error(ctx, GL_INVALID_ENUM,
1650 "glFramebufferRenderbufferEXT(renderbufferTarget)");
Brian Paul3deaa012005-02-07 05:08:24 +00001651 return;
1652 }
1653
Brian Paul0bffb112005-11-08 14:45:48 +00001654 if (fb->Name == 0) {
Brian Paulab8ef282005-09-07 23:21:59 +00001655 /* Can't attach new renderbuffers to a window system framebuffer */
Brian Paul3deaa012005-02-07 05:08:24 +00001656 _mesa_error(ctx, GL_INVALID_OPERATION, "glFramebufferRenderbufferEXT");
1657 return;
1658 }
1659
Brian Paul84716042005-11-16 04:05:54 +00001660 att = _mesa_get_attachment(ctx, fb, attachment);
Brian Paul3deaa012005-02-07 05:08:24 +00001661 if (att == NULL) {
Brian Paulddc82ee2005-02-05 19:56:45 +00001662 _mesa_error(ctx, GL_INVALID_ENUM,
1663 "glFramebufferRenderbufferEXT(attachment)");
1664 return;
1665 }
1666
Brian Paul1864c7d2005-02-08 03:46:37 +00001667 if (renderbuffer) {
Brian Paulea4fe662006-03-26 05:22:17 +00001668 rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
Brian Paul1864c7d2005-02-08 03:46:37 +00001669 if (!rb) {
Brian Paule4b23562005-05-04 20:11:35 +00001670 _mesa_error(ctx, GL_INVALID_OPERATION,
Brian Paul1864c7d2005-02-08 03:46:37 +00001671 "glFramebufferRenderbufferEXT(renderbuffer)");
1672 return;
1673 }
Brian Paul1864c7d2005-02-08 03:46:37 +00001674 }
1675 else {
Brian Paule4b23562005-05-04 20:11:35 +00001676 /* remove renderbuffer attachment */
1677 rb = NULL;
Brian Paul1864c7d2005-02-08 03:46:37 +00001678 }
Brian Paule4b23562005-05-04 20:11:35 +00001679
Brian Paul30590072009-01-21 11:06:11 -07001680 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
1681 /* make sure the renderbuffer is a depth/stencil format */
1682 if (rb->_BaseFormat != GL_DEPTH_STENCIL) {
1683 _mesa_error(ctx, GL_INVALID_OPERATION,
1684 "glFramebufferRenderbufferEXT(renderbuffer"
1685 " is not DEPTH_STENCIL format)");
1686 return;
1687 }
1688 }
1689
1690
Brian Paul474f28e2005-10-08 14:41:17 +00001691 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Keith Whitwelldf058292006-09-22 11:40:35 +00001692 /* The above doesn't fully flush the drivers in the way that a
1693 * glFlush does, but that is required here:
1694 */
1695 if (ctx->Driver.Flush)
1696 ctx->Driver.Flush(ctx);
Brian Paul474f28e2005-10-08 14:41:17 +00001697
Brian Paule4b23562005-05-04 20:11:35 +00001698 assert(ctx->Driver.FramebufferRenderbuffer);
Brian Paul84716042005-11-16 04:05:54 +00001699 ctx->Driver.FramebufferRenderbuffer(ctx, fb, attachment, rb);
Brian Paul2e019182006-03-07 01:43:52 +00001700
1701 /* Some subsequent GL commands may depend on the framebuffer's visual
1702 * after the binding is updated. Update visual info now.
1703 */
1704 _mesa_update_framebuffer_visual(fb);
Brian Paulddc82ee2005-02-05 19:56:45 +00001705}
1706
1707
Brian Paul1864c7d2005-02-08 03:46:37 +00001708void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001709_mesa_GetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment,
1710 GLenum pname, GLint *params)
1711{
Brian Paul2c6f9112005-02-24 05:47:06 +00001712 const struct gl_renderbuffer_attachment *att;
Brian Paul0bffb112005-11-08 14:45:48 +00001713 struct gl_framebuffer *buffer;
Brian Paulddc82ee2005-02-05 19:56:45 +00001714 GET_CURRENT_CONTEXT(ctx);
1715
1716 ASSERT_OUTSIDE_BEGIN_END(ctx);
1717
Brian Paul0bffb112005-11-08 14:45:48 +00001718 switch (target) {
1719#if FEATURE_EXT_framebuffer_blit
1720 case GL_DRAW_FRAMEBUFFER_EXT:
1721 if (!ctx->Extensions.EXT_framebuffer_blit) {
1722 _mesa_error(ctx, GL_INVALID_ENUM,
1723 "glGetFramebufferAttachmentParameterivEXT(target)");
1724 return;
1725 }
1726 buffer = ctx->DrawBuffer;
1727 break;
1728 case GL_READ_FRAMEBUFFER_EXT:
1729 if (!ctx->Extensions.EXT_framebuffer_blit) {
1730 _mesa_error(ctx, GL_INVALID_ENUM,
1731 "glGetFramebufferAttachmentParameterivEXT(target)");
1732 return;
1733 }
1734 buffer = ctx->ReadBuffer;
1735 break;
1736#endif
1737 case GL_FRAMEBUFFER_EXT:
1738 buffer = ctx->DrawBuffer;
1739 break;
1740 default:
Brian Paulddc82ee2005-02-05 19:56:45 +00001741 _mesa_error(ctx, GL_INVALID_ENUM,
1742 "glGetFramebufferAttachmentParameterivEXT(target)");
1743 return;
1744 }
1745
Brian Paul0bffb112005-11-08 14:45:48 +00001746 if (buffer->Name == 0) {
Brian Paul3deaa012005-02-07 05:08:24 +00001747 _mesa_error(ctx, GL_INVALID_OPERATION,
1748 "glGetFramebufferAttachmentParameterivEXT");
1749 return;
1750 }
1751
Brian Paul84716042005-11-16 04:05:54 +00001752 att = _mesa_get_attachment(ctx, buffer, attachment);
Brian Paul3deaa012005-02-07 05:08:24 +00001753 if (att == NULL) {
Brian Paulddc82ee2005-02-05 19:56:45 +00001754 _mesa_error(ctx, GL_INVALID_ENUM,
1755 "glGetFramebufferAttachmentParameterivEXT(attachment)");
1756 return;
1757 }
1758
Brian Paul30590072009-01-21 11:06:11 -07001759 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
1760 /* the depth and stencil attachments must point to the same buffer */
1761 const struct gl_renderbuffer_attachment *depthAtt, *stencilAtt;
1762 depthAtt = _mesa_get_attachment(ctx, buffer, GL_DEPTH_ATTACHMENT);
1763 stencilAtt = _mesa_get_attachment(ctx, buffer, GL_STENCIL_ATTACHMENT);
1764 if (depthAtt->Renderbuffer != stencilAtt->Renderbuffer) {
1765 _mesa_error(ctx, GL_INVALID_OPERATION,
1766 "glGetFramebufferAttachmentParameterivEXT(DEPTH/STENCIL"
1767 " attachments differ)");
1768 return;
1769 }
1770 }
1771
Brian Paul474f28e2005-10-08 14:41:17 +00001772 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Keith Whitwelldf058292006-09-22 11:40:35 +00001773 /* The above doesn't fully flush the drivers in the way that a
1774 * glFlush does, but that is required here:
1775 */
1776 if (ctx->Driver.Flush)
1777 ctx->Driver.Flush(ctx);
Brian Paul474f28e2005-10-08 14:41:17 +00001778
Brian Paulddc82ee2005-02-05 19:56:45 +00001779 switch (pname) {
1780 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00001781 *params = att->Type;
1782 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00001783 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00001784 if (att->Type == GL_RENDERBUFFER_EXT) {
1785 *params = att->Renderbuffer->Name;
1786 }
1787 else if (att->Type == GL_TEXTURE) {
1788 *params = att->Texture->Name;
1789 }
1790 else {
1791 _mesa_error(ctx, GL_INVALID_ENUM,
1792 "glGetFramebufferAttachmentParameterivEXT(pname)");
1793 }
1794 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00001795 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00001796 if (att->Type == GL_TEXTURE) {
1797 *params = att->TextureLevel;
1798 }
1799 else {
1800 _mesa_error(ctx, GL_INVALID_ENUM,
1801 "glGetFramebufferAttachmentParameterivEXT(pname)");
1802 }
1803 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00001804 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00001805 if (att->Type == GL_TEXTURE) {
Brian Paulf1e4ca72008-08-06 08:39:54 -06001806 if (att->Texture && att->Texture->Target == GL_TEXTURE_CUBE_MAP) {
1807 *params = GL_TEXTURE_CUBE_MAP_POSITIVE_X + att->CubeMapFace;
1808 }
1809 else {
1810 *params = 0;
1811 }
Brian Paul3deaa012005-02-07 05:08:24 +00001812 }
1813 else {
1814 _mesa_error(ctx, GL_INVALID_ENUM,
1815 "glGetFramebufferAttachmentParameterivEXT(pname)");
1816 }
1817 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00001818 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00001819 if (att->Type == GL_TEXTURE) {
Brian Paulf1e4ca72008-08-06 08:39:54 -06001820 if (att->Texture && att->Texture->Target == GL_TEXTURE_3D) {
1821 *params = att->Zoffset;
1822 }
1823 else {
1824 *params = 0;
1825 }
Brian Paul3deaa012005-02-07 05:08:24 +00001826 }
1827 else {
1828 _mesa_error(ctx, GL_INVALID_ENUM,
1829 "glGetFramebufferAttachmentParameterivEXT(pname)");
1830 }
1831 return;
Brian Paul1bc59bf2009-01-22 15:07:34 -07001832 case GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:
1833 if (!ctx->Extensions.ARB_framebuffer_object) {
1834 _mesa_error(ctx, GL_INVALID_ENUM,
1835 "glGetFramebufferAttachmentParameterivEXT(pname)");
1836 }
1837 else {
1838 *params = att->Renderbuffer->ColorEncoding;
1839 }
1840 return;
1841 case GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:
1842 if (!ctx->Extensions.ARB_framebuffer_object) {
1843 _mesa_error(ctx, GL_INVALID_ENUM,
1844 "glGetFramebufferAttachmentParameterivEXT(pname)");
1845 return;
1846 }
1847 else {
1848 *params = att->Renderbuffer->ComponentType;
1849 }
1850 return;
1851 case GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE:
1852 if (!ctx->Extensions.ARB_framebuffer_object) {
1853 _mesa_error(ctx, GL_INVALID_ENUM,
1854 "glGetFramebufferAttachmentParameterivEXT(pname)");
1855 }
1856 else {
1857 *params = att->Renderbuffer->RedBits;
1858 }
1859 return;
1860 case GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:
1861 if (!ctx->Extensions.ARB_framebuffer_object) {
1862 _mesa_error(ctx, GL_INVALID_ENUM,
1863 "glGetFramebufferAttachmentParameterivEXT(pname)");
1864 }
1865 else {
1866 *params = att->Renderbuffer->GreenBits;
1867 }
1868 return;
1869 case GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:
1870 if (!ctx->Extensions.ARB_framebuffer_object) {
1871 _mesa_error(ctx, GL_INVALID_ENUM,
1872 "glGetFramebufferAttachmentParameterivEXT(pname)");
1873 }
1874 else {
1875 *params = att->Renderbuffer->BlueBits;
1876 }
1877 return;
1878 case GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:
1879 if (!ctx->Extensions.ARB_framebuffer_object) {
1880 _mesa_error(ctx, GL_INVALID_ENUM,
1881 "glGetFramebufferAttachmentParameterivEXT(pname)");
1882 }
1883 else {
1884 *params = att->Renderbuffer->AlphaBits;
1885 }
1886 return;
1887 case GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:
1888 if (!ctx->Extensions.ARB_framebuffer_object) {
1889 _mesa_error(ctx, GL_INVALID_ENUM,
1890 "glGetFramebufferAttachmentParameterivEXT(pname)");
1891 }
1892 else {
1893 *params = att->Renderbuffer->DepthBits;
1894 }
1895 return;
1896 case GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:
1897 if (!ctx->Extensions.ARB_framebuffer_object) {
1898 _mesa_error(ctx, GL_INVALID_ENUM,
1899 "glGetFramebufferAttachmentParameterivEXT(pname)");
1900 }
1901 else {
1902 *params = att->Renderbuffer->StencilBits;
1903 }
1904 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00001905 default:
1906 _mesa_error(ctx, GL_INVALID_ENUM,
1907 "glGetFramebufferAttachmentParameterivEXT(pname)");
1908 return;
1909 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001910}
1911
1912
Brian Paul1864c7d2005-02-08 03:46:37 +00001913void GLAPIENTRY
Brian Paulddc82ee2005-02-05 19:56:45 +00001914_mesa_GenerateMipmapEXT(GLenum target)
1915{
Brian Paul463642c2005-02-08 02:06:00 +00001916 struct gl_texture_unit *texUnit;
1917 struct gl_texture_object *texObj;
Brian Paulddc82ee2005-02-05 19:56:45 +00001918 GET_CURRENT_CONTEXT(ctx);
1919
1920 ASSERT_OUTSIDE_BEGIN_END(ctx);
Brian Paul474f28e2005-10-08 14:41:17 +00001921 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Brian Paulddc82ee2005-02-05 19:56:45 +00001922
1923 switch (target) {
1924 case GL_TEXTURE_1D:
1925 case GL_TEXTURE_2D:
Brian Paulddc82ee2005-02-05 19:56:45 +00001926 case GL_TEXTURE_3D:
Brian Paul463642c2005-02-08 02:06:00 +00001927 case GL_TEXTURE_CUBE_MAP:
Brian Paul1b939532005-05-31 23:55:21 +00001928 /* OK, legal value */
Brian Paulddc82ee2005-02-05 19:56:45 +00001929 break;
1930 default:
1931 _mesa_error(ctx, GL_INVALID_ENUM, "glGenerateMipmapEXT(target)");
1932 return;
1933 }
1934
Brian Paul463642c2005-02-08 02:06:00 +00001935 texUnit = &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1936 texObj = _mesa_select_tex_object(ctx, texUnit, target);
1937
Keith Whitwell5ac93f82006-11-01 14:21:57 +00001938 _mesa_lock_texture(ctx, texObj);
Eric Anholtf849d362008-12-06 21:14:56 -08001939 if (target == GL_TEXTURE_CUBE_MAP) {
1940 int face;
1941
1942 for (face = 0; face < 6; face++)
1943 ctx->Driver.GenerateMipmap(ctx,
1944 GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB + face,
1945 texObj);
1946 } else {
1947 ctx->Driver.GenerateMipmap(ctx, target, texObj);
1948 }
Keith Whitwell5ac93f82006-11-01 14:21:57 +00001949 _mesa_unlock_texture(ctx, texObj);
Brian Paulddc82ee2005-02-05 19:56:45 +00001950}
Brian Paul0bffb112005-11-08 14:45:48 +00001951
1952
1953#if FEATURE_EXT_framebuffer_blit
Brian Paul722d9762009-01-20 16:58:49 -07001954/**
1955 * Blit rectangular region, optionally from one framebuffer to another.
1956 *
1957 * Note, if the src buffer is multisampled and the dest is not, this is
1958 * when the samples must be resolved to a single color.
1959 */
Brian Paul0bffb112005-11-08 14:45:48 +00001960void GLAPIENTRY
1961_mesa_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1962 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
1963 GLbitfield mask, GLenum filter)
1964{
Brian Paul722d9762009-01-20 16:58:49 -07001965 const GLbitfield legalMaskBits = (GL_COLOR_BUFFER_BIT |
1966 GL_DEPTH_BUFFER_BIT |
1967 GL_STENCIL_BUFFER_BIT);
1968 const struct gl_framebuffer *readFb, *drawFb;
1969 const struct gl_renderbuffer *colorReadRb, *colorDrawRb;
Brian Paul0bffb112005-11-08 14:45:48 +00001970 GET_CURRENT_CONTEXT(ctx);
1971
1972 ASSERT_OUTSIDE_BEGIN_END(ctx);
1973 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
1974
Brian Paul99745402006-03-01 02:02:43 +00001975 if (ctx->NewState) {
1976 _mesa_update_state(ctx);
1977 }
1978
Brian Paul722d9762009-01-20 16:58:49 -07001979 readFb = ctx->ReadBuffer;
1980 drawFb = ctx->DrawBuffer;
1981
1982 if (!readFb || !drawFb) {
1983 /* This will normally never happen but someday we may want to
1984 * support MakeCurrent() with no drawables.
1985 */
1986 return;
Brian Paul99745402006-03-01 02:02:43 +00001987 }
1988
Brian Paul0bffb112005-11-08 14:45:48 +00001989 /* check for complete framebuffers */
Brian Paul722d9762009-01-20 16:58:49 -07001990 if (drawFb->_Status != GL_FRAMEBUFFER_COMPLETE_EXT ||
1991 readFb->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
Brian Paul0bffb112005-11-08 14:45:48 +00001992 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
1993 "glBlitFramebufferEXT(incomplete draw/read buffers)");
1994 return;
1995 }
1996
Brian Paul99745402006-03-01 02:02:43 +00001997 if (filter != GL_NEAREST && filter != GL_LINEAR) {
1998 _mesa_error(ctx, GL_INVALID_ENUM, "glBlitFramebufferEXT(filter)");
1999 return;
2000 }
2001
Brian Paul722d9762009-01-20 16:58:49 -07002002 if (mask & ~legalMaskBits) {
Brian Paul99745402006-03-01 02:02:43 +00002003 _mesa_error( ctx, GL_INVALID_VALUE, "glBlitFramebufferEXT(mask)");
2004 return;
2005 }
2006
Brian Paul0bffb112005-11-08 14:45:48 +00002007 /* depth/stencil must be blitted with nearest filtering */
2008 if ((mask & (GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT))
2009 && filter != GL_NEAREST) {
2010 _mesa_error(ctx, GL_INVALID_OPERATION,
2011 "glBlitFramebufferEXT(depth/stencil requires GL_NEAREST filter");
2012 return;
2013 }
2014
Brian Paul722d9762009-01-20 16:58:49 -07002015 /* get color read/draw renderbuffers */
2016 if (mask & GL_COLOR_BUFFER_BIT) {
2017 colorReadRb = readFb->_ColorReadBuffer;
2018 colorDrawRb = drawFb->_ColorDrawBuffers[0];
2019 }
2020 else {
2021 colorReadRb = colorDrawRb = NULL;
2022 }
2023
Brian Paul99745402006-03-01 02:02:43 +00002024 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul722d9762009-01-20 16:58:49 -07002025 struct gl_renderbuffer *readRb = readFb->_StencilBuffer;
2026 struct gl_renderbuffer *drawRb = drawFb->_StencilBuffer;
Brian Paul99745402006-03-01 02:02:43 +00002027 if (readRb->StencilBits != drawRb->StencilBits) {
2028 _mesa_error(ctx, GL_INVALID_OPERATION,
2029 "glBlitFramebufferEXT(stencil buffer size mismatch");
2030 return;
2031 }
2032 }
2033
2034 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul722d9762009-01-20 16:58:49 -07002035 struct gl_renderbuffer *readRb = readFb->_DepthBuffer;
2036 struct gl_renderbuffer *drawRb = drawFb->_DepthBuffer;
Brian Paul99745402006-03-01 02:02:43 +00002037 if (readRb->DepthBits != drawRb->DepthBits) {
2038 _mesa_error(ctx, GL_INVALID_OPERATION,
2039 "glBlitFramebufferEXT(depth buffer size mismatch");
2040 return;
2041 }
Brian Paul0bffb112005-11-08 14:45:48 +00002042 }
2043
Brian Paul722d9762009-01-20 16:58:49 -07002044 if (readFb->Visual.samples > 0 &&
2045 drawFb->Visual.samples > 0 &&
2046 readFb->Visual.samples != drawFb->Visual.samples) {
2047 _mesa_error(ctx, GL_INVALID_OPERATION,
2048 "glBlitFramebufferEXT(mismatched samples");
2049 return;
2050 }
2051
2052 /* extra checks for multisample copies... */
2053 if (readFb->Visual.samples > 0 || drawFb->Visual.samples > 0) {
2054 /* src and dest region sizes must be the same */
2055 if (srcX1 - srcX0 != dstX1 - dstX0 ||
2056 srcY1 - srcY0 != dstY1 - dstY0) {
2057 _mesa_error(ctx, GL_INVALID_OPERATION,
2058 "glBlitFramebufferEXT(bad src/dst multisample region sizes");
2059 return;
2060 }
2061
2062 /* color formats must match */
2063 if (colorReadRb &&
2064 colorDrawRb &&
2065 colorReadRb->_ActualFormat != colorDrawRb->_ActualFormat) {
2066 _mesa_error(ctx, GL_INVALID_OPERATION,
2067 "glBlitFramebufferEXT(bad src/dst multisample pixel formats");
2068 return;
2069 }
2070 }
2071
Brian Paul0bffb112005-11-08 14:45:48 +00002072 if (!ctx->Extensions.EXT_framebuffer_blit) {
2073 _mesa_error(ctx, GL_INVALID_OPERATION, "glBlitFramebufferEXT");
2074 return;
2075 }
2076
2077 ASSERT(ctx->Driver.BlitFramebuffer);
2078 ctx->Driver.BlitFramebuffer(ctx,
2079 srcX0, srcY0, srcX1, srcY1,
2080 dstX0, dstY0, dstX1, dstY1,
2081 mask, filter);
2082}
2083#endif /* FEATURE_EXT_framebuffer_blit */