blob: d490918b816b8f61ec9d3c06294f432c924c2527 [file] [log] [blame]
Brian Paulddc82ee2005-02-05 19:56:45 +00001/*
2 * Mesa 3-D graphics library
Brian Paulddc82ee2005-02-05 19:56:45 +00003 *
Brian Paul3dc65912008-07-03 15:40:38 -06004 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
Brian Paul989edea2009-01-22 15:05:13 -07005 * Copyright (C) 1999-2009 VMware, Inc. All Rights Reserved.
Brian Paulddc82ee2005-02-05 19:56:45 +00006 *
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:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
Kenneth Graunke3d8d5b22013-04-21 13:46:48 -070020 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
Brian Paulddc82ee2005-02-05 19:56:45 +000024 */
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
Kenneth Graunkec6ed42a2012-11-17 23:23:06 -080034#include <stdbool.h>
Brian Paul463642c2005-02-08 02:06:00 +000035
Roland Scheideggera1bc0d02007-07-18 20:17:14 +020036#include "buffers.h"
Brian Paulddc82ee2005-02-05 19:56:45 +000037#include "context.h"
Brian Paul9b50cea2009-10-23 11:34:14 -060038#include "enums.h"
Brian Paulddc82ee2005-02-05 19:56:45 +000039#include "fbobject.h"
Brian Paul5cf5d4b2009-09-27 20:51:18 -060040#include "formats.h"
Brian Paule4b23562005-05-04 20:11:35 +000041#include "framebuffer.h"
Brian Paula1287f52012-07-22 11:20:00 -060042#include "glformats.h"
Brian Paulddc82ee2005-02-05 19:56:45 +000043#include "hash.h"
Brian Paul989edea2009-01-22 15:05:13 -070044#include "macros.h"
Chris Forbes90b5a242013-02-06 20:42:53 +130045#include "multisample.h"
Vinson Lee0117da42011-01-05 23:11:54 -080046#include "mtypes.h"
Brian Paule4b23562005-05-04 20:11:35 +000047#include "renderbuffer.h"
Brian Paul99745402006-03-01 02:02:43 +000048#include "state.h"
Brian Paul463642c2005-02-08 02:06:00 +000049#include "teximage.h"
Brian Paulea4fe662006-03-26 05:22:17 +000050#include "texobj.h"
Brian Paulddc82ee2005-02-05 19:56:45 +000051
52
Brian Pauld9468c92005-02-10 16:08:07 +000053/**
54 * Notes:
55 *
56 * None of the GL_EXT_framebuffer_object functions are compiled into
57 * display lists.
58 */
59
60
61
Brian Paul923b6fc2005-02-08 04:08:56 +000062/*
63 * When glGenRender/FramebuffersEXT() is called we insert pointers to
64 * these placeholder objects into the hash table.
65 * Later, when the object ID is first bound, we replace the placeholder
66 * with the real frame/renderbuffer.
67 */
Brian Paul2c6f9112005-02-24 05:47:06 +000068static struct gl_framebuffer DummyFramebuffer;
69static struct gl_renderbuffer DummyRenderbuffer;
Brian Paul1864c7d2005-02-08 03:46:37 +000070
Kristian Høgsberg144356f2010-09-09 17:08:12 -040071/* We bind this framebuffer when applications pass a NULL
72 * drawable/surface in make current. */
73static struct gl_framebuffer IncompleteFramebuffer;
74
Brian Paul1864c7d2005-02-08 03:46:37 +000075
Brian Paul3dc65912008-07-03 15:40:38 -060076static void
Brian Paulc7324582012-11-30 10:04:48 -070077delete_dummy_renderbuffer(struct gl_context *ctx, struct gl_renderbuffer *rb)
Brian Paul3dc65912008-07-03 15:40:38 -060078{
79 /* no op */
80}
81
82static void
83delete_dummy_framebuffer(struct gl_framebuffer *fb)
84{
85 /* no op */
86}
87
88
89void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -040090_mesa_init_fbobjects(struct gl_context *ctx)
Brian Paul3dc65912008-07-03 15:40:38 -060091{
Brian Pauld129ea72014-03-01 10:21:07 -070092 mtx_init(&DummyFramebuffer.Mutex, mtx_plain);
93 mtx_init(&DummyRenderbuffer.Mutex, mtx_plain);
94 mtx_init(&IncompleteFramebuffer.Mutex, mtx_plain);
Brian Paul3dc65912008-07-03 15:40:38 -060095 DummyFramebuffer.Delete = delete_dummy_framebuffer;
96 DummyRenderbuffer.Delete = delete_dummy_renderbuffer;
Kristian Høgsberg144356f2010-09-09 17:08:12 -040097 IncompleteFramebuffer.Delete = delete_dummy_framebuffer;
Brian Paul3dc65912008-07-03 15:40:38 -060098}
99
Kristian Høgsberg9456e222010-06-04 14:28:59 -0400100struct gl_framebuffer *
101_mesa_get_incomplete_framebuffer(void)
102{
Kristian Høgsberg144356f2010-09-09 17:08:12 -0400103 return &IncompleteFramebuffer;
Kristian Høgsberg9456e222010-06-04 14:28:59 -0400104}
Brian Paul3dc65912008-07-03 15:40:38 -0600105
Brian Paulddc82ee2005-02-05 19:56:45 +0000106/**
Brian Paul2c6f9112005-02-24 05:47:06 +0000107 * Helper routine for getting a gl_renderbuffer.
Brian Paulddc82ee2005-02-05 19:56:45 +0000108 */
Brian Paulea4fe662006-03-26 05:22:17 +0000109struct gl_renderbuffer *
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400110_mesa_lookup_renderbuffer(struct gl_context *ctx, GLuint id)
Brian Paulddc82ee2005-02-05 19:56:45 +0000111{
Brian Paul2c6f9112005-02-24 05:47:06 +0000112 struct gl_renderbuffer *rb;
Brian Paulddc82ee2005-02-05 19:56:45 +0000113
Brian Paul1864c7d2005-02-08 03:46:37 +0000114 if (id == 0)
Brian Paulddc82ee2005-02-05 19:56:45 +0000115 return NULL;
116
Brian Paul2c6f9112005-02-24 05:47:06 +0000117 rb = (struct gl_renderbuffer *)
Brian Paulddc82ee2005-02-05 19:56:45 +0000118 _mesa_HashLookup(ctx->Shared->RenderBuffers, id);
119 return rb;
120}
121
122
123/**
Laura Ekstrand2bb138e2015-01-23 16:38:36 -0800124 * A convenience function for direct state access that throws
125 * GL_INVALID_OPERATION if the renderbuffer doesn't exist.
126 */
127struct gl_renderbuffer *
128_mesa_lookup_renderbuffer_err(struct gl_context *ctx, GLuint id,
129 const char *func)
130{
131 struct gl_renderbuffer *rb;
132
133 rb = _mesa_lookup_renderbuffer(ctx, id);
134 if (!rb || rb == &DummyRenderbuffer) {
135 _mesa_error(ctx, GL_INVALID_OPERATION,
136 "%s(non-existent renderbuffer %u)", func, id);
137 return NULL;
138 }
139
140 return rb;
141}
142
143
144/**
Brian Paul2c6f9112005-02-24 05:47:06 +0000145 * Helper routine for getting a gl_framebuffer.
Brian Paulddc82ee2005-02-05 19:56:45 +0000146 */
Brian Paulea4fe662006-03-26 05:22:17 +0000147struct gl_framebuffer *
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400148_mesa_lookup_framebuffer(struct gl_context *ctx, GLuint id)
Brian Paulddc82ee2005-02-05 19:56:45 +0000149{
Brian Paul2c6f9112005-02-24 05:47:06 +0000150 struct gl_framebuffer *fb;
Brian Paulddc82ee2005-02-05 19:56:45 +0000151
Brian Paul1864c7d2005-02-08 03:46:37 +0000152 if (id == 0)
Brian Paulddc82ee2005-02-05 19:56:45 +0000153 return NULL;
154
Brian Paul2c6f9112005-02-24 05:47:06 +0000155 fb = (struct gl_framebuffer *)
Brian Paulddc82ee2005-02-05 19:56:45 +0000156 _mesa_HashLookup(ctx->Shared->FrameBuffers, id);
Brian Paul463642c2005-02-08 02:06:00 +0000157 return fb;
Brian Paulddc82ee2005-02-05 19:56:45 +0000158}
159
160
161/**
Laura Ekstrand6d8eff42015-01-22 10:23:35 -0800162 * A convenience function for direct state access that throws
163 * GL_INVALID_OPERATION if the framebuffer doesn't exist.
164 */
165struct gl_framebuffer *
166_mesa_lookup_framebuffer_err(struct gl_context *ctx, GLuint id,
167 const char *func)
168{
169 struct gl_framebuffer *fb;
170
171 fb = _mesa_lookup_framebuffer(ctx, id);
172 if (!fb || fb == &DummyFramebuffer) {
173 _mesa_error(ctx, GL_INVALID_OPERATION,
174 "%s(non-existent framebuffer %u)", func, id);
175 return NULL;
176 }
177
178 return fb;
179}
180
181
182/**
Brian Paul72966362009-01-21 16:28:38 -0700183 * Mark the given framebuffer as invalid. This will force the
184 * test for framebuffer completeness to be done before the framebuffer
185 * is used.
186 */
187static void
188invalidate_framebuffer(struct gl_framebuffer *fb)
189{
190 fb->_Status = 0; /* "indeterminate" */
191}
192
193
194/**
Brian Paulc6991432011-02-28 18:24:25 -0700195 * Return the gl_framebuffer object which corresponds to the given
196 * framebuffer target, such as GL_DRAW_FRAMEBUFFER.
197 * Check support for GL_EXT_framebuffer_blit to determine if certain
198 * targets are legal.
199 * \return gl_framebuffer pointer or NULL if target is illegal
200 */
201static struct gl_framebuffer *
202get_framebuffer_target(struct gl_context *ctx, GLenum target)
203{
Ian Romanicka6729732013-11-13 13:30:37 -0800204 bool have_fb_blit = _mesa_is_gles3(ctx) || _mesa_is_desktop_gl(ctx);
Brian Paulc6991432011-02-28 18:24:25 -0700205 switch (target) {
206 case GL_DRAW_FRAMEBUFFER:
Kenneth Graunkec6ed42a2012-11-17 23:23:06 -0800207 return have_fb_blit ? ctx->DrawBuffer : NULL;
Brian Paulc6991432011-02-28 18:24:25 -0700208 case GL_READ_FRAMEBUFFER:
Kenneth Graunkec6ed42a2012-11-17 23:23:06 -0800209 return have_fb_blit ? ctx->ReadBuffer : NULL;
Brian Paulc6991432011-02-28 18:24:25 -0700210 case GL_FRAMEBUFFER_EXT:
211 return ctx->DrawBuffer;
212 default:
213 return NULL;
214 }
215}
216
217
218/**
Brian Pauld9468c92005-02-10 16:08:07 +0000219 * Given a GL_*_ATTACHMENTn token, return a pointer to the corresponding
Brian Paul2c6f9112005-02-24 05:47:06 +0000220 * gl_renderbuffer_attachment object.
Brian Paul61ec2052010-06-22 08:37:44 -0600221 * This function is only used for user-created FB objects, not the
222 * default / window-system FB object.
Brian Paul30590072009-01-21 11:06:11 -0700223 * If \p attachment is GL_DEPTH_STENCIL_ATTACHMENT, return a pointer to
224 * the depth buffer attachment point.
Brian Pauld9468c92005-02-10 16:08:07 +0000225 */
Brian Paul94512812014-02-01 08:58:43 -0700226static struct gl_renderbuffer_attachment *
227get_attachment(struct gl_context *ctx, struct gl_framebuffer *fb,
228 GLenum attachment)
Brian Paul3deaa012005-02-07 05:08:24 +0000229{
230 GLuint i;
231
Brian Paul36ede892012-01-12 09:17:23 -0700232 assert(_mesa_is_user_fbo(fb));
Brian Paul61ec2052010-06-22 08:37:44 -0600233
Brian Paul3deaa012005-02-07 05:08:24 +0000234 switch (attachment) {
235 case GL_COLOR_ATTACHMENT0_EXT:
236 case GL_COLOR_ATTACHMENT1_EXT:
237 case GL_COLOR_ATTACHMENT2_EXT:
238 case GL_COLOR_ATTACHMENT3_EXT:
239 case GL_COLOR_ATTACHMENT4_EXT:
240 case GL_COLOR_ATTACHMENT5_EXT:
241 case GL_COLOR_ATTACHMENT6_EXT:
242 case GL_COLOR_ATTACHMENT7_EXT:
243 case GL_COLOR_ATTACHMENT8_EXT:
244 case GL_COLOR_ATTACHMENT9_EXT:
245 case GL_COLOR_ATTACHMENT10_EXT:
246 case GL_COLOR_ATTACHMENT11_EXT:
247 case GL_COLOR_ATTACHMENT12_EXT:
248 case GL_COLOR_ATTACHMENT13_EXT:
249 case GL_COLOR_ATTACHMENT14_EXT:
250 case GL_COLOR_ATTACHMENT15_EXT:
Ian Romanick2e3a4ab2011-10-02 15:03:07 -0700251 /* Only OpenGL ES 1.x forbids color attachments other than
252 * GL_COLOR_ATTACHMENT0. For all other APIs the limit set by the
253 * hardware is used.
254 */
Brian Paul3deaa012005-02-07 05:08:24 +0000255 i = attachment - GL_COLOR_ATTACHMENT0_EXT;
Ian Romanick7e4cb322011-10-02 14:50:21 -0700256 if (i >= ctx->Const.MaxColorAttachments
Martin Peres7bd8b482015-02-12 17:54:43 +0200257 || (i > 0 && ctx->API == API_OPENGLES)) {
258 return NULL;
Brian Paul3deaa012005-02-07 05:08:24 +0000259 }
Brian Paule4b23562005-05-04 20:11:35 +0000260 return &fb->Attachment[BUFFER_COLOR0 + i];
Brian Paul30590072009-01-21 11:06:11 -0700261 case GL_DEPTH_STENCIL_ATTACHMENT:
Matt Turnerec8ee912012-11-15 22:13:48 -0800262 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
Martin Peres7bd8b482015-02-12 17:54:43 +0200263 return NULL;
Brian Paul30590072009-01-21 11:06:11 -0700264 /* fall-through */
Brian Paul3deaa012005-02-07 05:08:24 +0000265 case GL_DEPTH_ATTACHMENT_EXT:
Brian Paule4b23562005-05-04 20:11:35 +0000266 return &fb->Attachment[BUFFER_DEPTH];
Brian Paul3deaa012005-02-07 05:08:24 +0000267 case GL_STENCIL_ATTACHMENT_EXT:
Brian Paule4b23562005-05-04 20:11:35 +0000268 return &fb->Attachment[BUFFER_STENCIL];
Brian Paul61ec2052010-06-22 08:37:44 -0600269 default:
270 return NULL;
271 }
272}
273
274
275/**
276 * As above, but only used for getting attachments of the default /
277 * window-system framebuffer (not user-created framebuffer objects).
278 */
279static struct gl_renderbuffer_attachment *
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400280_mesa_get_fb0_attachment(struct gl_context *ctx, struct gl_framebuffer *fb,
Brian Paul61ec2052010-06-22 08:37:44 -0600281 GLenum attachment)
282{
Brian Paul36ede892012-01-12 09:17:23 -0700283 assert(_mesa_is_winsys_fbo(fb));
Brian Paul61ec2052010-06-22 08:37:44 -0600284
Anuj Phogat2f2801f2012-12-11 20:08:13 -0800285 if (_mesa_is_gles3(ctx)) {
286 assert(attachment == GL_BACK ||
287 attachment == GL_DEPTH ||
288 attachment == GL_STENCIL);
289 switch (attachment) {
290 case GL_BACK:
291 /* Since there is no stereo rendering in ES 3.0, only return the
292 * LEFT bits.
293 */
294 if (ctx->DrawBuffer->Visual.doubleBufferMode)
295 return &fb->Attachment[BUFFER_BACK_LEFT];
296 return &fb->Attachment[BUFFER_FRONT_LEFT];
297 case GL_DEPTH:
298 return &fb->Attachment[BUFFER_DEPTH];
299 case GL_STENCIL:
300 return &fb->Attachment[BUFFER_STENCIL];
301 }
302 }
303
Brian Paul61ec2052010-06-22 08:37:44 -0600304 switch (attachment) {
Kristian Høgsberg80dfec32010-06-15 13:07:01 -0400305 case GL_FRONT_LEFT:
306 return &fb->Attachment[BUFFER_FRONT_LEFT];
307 case GL_FRONT_RIGHT:
308 return &fb->Attachment[BUFFER_FRONT_RIGHT];
309 case GL_BACK_LEFT:
310 return &fb->Attachment[BUFFER_BACK_LEFT];
311 case GL_BACK_RIGHT:
312 return &fb->Attachment[BUFFER_BACK_RIGHT];
Brian Paul61ec2052010-06-22 08:37:44 -0600313 case GL_AUX0:
314 if (fb->Visual.numAuxBuffers == 1) {
315 return &fb->Attachment[BUFFER_AUX0];
316 }
317 return NULL;
Ian Romanicka8328cc2011-10-03 12:02:18 -0700318
319 /* Page 336 (page 352 of the PDF) of the OpenGL 3.0 spec says:
320 *
321 * "If the default framebuffer is bound to target, then attachment must
322 * be one of FRONT LEFT, FRONT RIGHT, BACK LEFT, BACK RIGHT, or AUXi,
323 * identifying a color buffer; DEPTH, identifying the depth buffer; or
324 * STENCIL, identifying the stencil buffer."
325 *
326 * Revision #34 of the ARB_framebuffer_object spec has essentially the same
327 * language. However, revision #33 of the ARB_framebuffer_object spec
328 * says:
329 *
330 * "If the default framebuffer is bound to <target>, then <attachment>
331 * must be one of FRONT_LEFT, FRONT_RIGHT, BACK_LEFT, BACK_RIGHT, AUXi,
332 * DEPTH_BUFFER, or STENCIL_BUFFER, identifying a color buffer, the
333 * depth buffer, or the stencil buffer, and <pname> may be
334 * FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE or
335 * FRAMEBUFFER_ATTACHMENT_OBJECT_NAME."
336 *
337 * The enum values for DEPTH_BUFFER and STENCIL_BUFFER have been removed
338 * from glext.h, so shipping apps should not use those values.
339 *
340 * Note that neither EXT_framebuffer_object nor OES_framebuffer_object
341 * support queries of the window system FBO.
342 */
343 case GL_DEPTH:
Brian Paul61ec2052010-06-22 08:37:44 -0600344 return &fb->Attachment[BUFFER_DEPTH];
Ian Romanicka8328cc2011-10-03 12:02:18 -0700345 case GL_STENCIL:
Brian Paul61ec2052010-06-22 08:37:44 -0600346 return &fb->Attachment[BUFFER_STENCIL];
Brian Paul3deaa012005-02-07 05:08:24 +0000347 default:
348 return NULL;
349 }
350}
351
352
Brian Paul61ec2052010-06-22 08:37:44 -0600353
Brian Pauld9468c92005-02-10 16:08:07 +0000354/**
355 * Remove any texture or renderbuffer attached to the given attachment
356 * point. Update reference counts, etc.
357 */
Brian Paul94512812014-02-01 08:58:43 -0700358static void
359remove_attachment(struct gl_context *ctx,
360 struct gl_renderbuffer_attachment *att)
Brian Paul3deaa012005-02-07 05:08:24 +0000361{
Eric Anholtc810e672013-05-10 12:36:43 -0700362 struct gl_renderbuffer *rb = att->Renderbuffer;
363
364 /* tell driver that we're done rendering to this texture. */
365 if (rb && rb->NeedsFinishRenderTexture)
Eric Anholta5b04522013-05-10 12:17:52 -0700366 ctx->Driver.FinishRenderTexture(ctx, rb);
Eric Anholtc810e672013-05-10 12:36:43 -0700367
Brian Paul3deaa012005-02-07 05:08:24 +0000368 if (att->Type == GL_TEXTURE) {
Matt Turnerbfcdb842015-02-20 20:18:47 -0800369 assert(att->Texture);
Brian9e01b912007-08-13 11:29:46 +0100370 _mesa_reference_texobj(&att->Texture, NULL); /* unbind */
Matt Turnerbfcdb842015-02-20 20:18:47 -0800371 assert(!att->Texture);
Brian Paul3deaa012005-02-07 05:08:24 +0000372 }
Brian Paul0e31e022005-12-01 00:25:00 +0000373 if (att->Type == GL_TEXTURE || att->Type == GL_RENDERBUFFER_EXT) {
Matt Turnerbfcdb842015-02-20 20:18:47 -0800374 assert(!att->Texture);
Brian9e01b912007-08-13 11:29:46 +0100375 _mesa_reference_renderbuffer(&att->Renderbuffer, NULL); /* unbind */
Matt Turnerbfcdb842015-02-20 20:18:47 -0800376 assert(!att->Renderbuffer);
Brian Paul3deaa012005-02-07 05:08:24 +0000377 }
378 att->Type = GL_NONE;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000379 att->Complete = GL_TRUE;
Brian Paul3deaa012005-02-07 05:08:24 +0000380}
381
Eric Anholt749a9272013-04-22 10:38:41 -0700382/**
Ian Romanickfb497132013-07-27 12:04:20 -0700383 * Verify a couple error conditions that will lead to an incomplete FBO and
384 * may cause problems for the driver's RenderTexture path.
385 */
386static bool
387driver_RenderTexture_is_safe(const struct gl_renderbuffer_attachment *att)
388{
389 const struct gl_texture_image *const texImage =
390 att->Texture->Image[att->CubeMapFace][att->TextureLevel];
391
392 if (texImage->Width == 0 || texImage->Height == 0 || texImage->Depth == 0)
393 return false;
394
Ian Romanick41485fe2013-07-27 12:16:56 -0700395 if ((texImage->TexObject->Target == GL_TEXTURE_1D_ARRAY
396 && att->Zoffset >= texImage->Height)
397 || (texImage->TexObject->Target != GL_TEXTURE_1D_ARRAY
398 && att->Zoffset >= texImage->Depth))
399 return false;
400
Ian Romanickfb497132013-07-27 12:04:20 -0700401 return true;
402}
403
404/**
Eric Anholt749a9272013-04-22 10:38:41 -0700405 * Create a renderbuffer which will be set up by the driver to wrap the
406 * texture image slice.
407 *
408 * By using a gl_renderbuffer (like user-allocated renderbuffers), drivers get
409 * to share most of their framebuffer rendering code between winsys,
410 * renderbuffer, and texture attachments.
411 *
412 * The allocated renderbuffer uses a non-zero Name so that drivers can check
413 * it for determining vertical orientation, but we use ~0 to make it fairly
414 * unambiguous with actual user (non-texture) renderbuffers.
415 */
416void
417_mesa_update_texture_renderbuffer(struct gl_context *ctx,
418 struct gl_framebuffer *fb,
419 struct gl_renderbuffer_attachment *att)
420{
421 struct gl_texture_image *texImage;
422 struct gl_renderbuffer *rb;
423
Eric Anholte98c39c2013-05-10 11:51:01 -0700424 texImage = att->Texture->Image[att->CubeMapFace][att->TextureLevel];
Eric Anholt749a9272013-04-22 10:38:41 -0700425
426 rb = att->Renderbuffer;
427 if (!rb) {
428 rb = ctx->Driver.NewRenderbuffer(ctx, ~0);
429 if (!rb) {
430 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glFramebufferTexture()");
431 return;
432 }
433 _mesa_reference_renderbuffer(&att->Renderbuffer, rb);
434
435 /* This can't get called on a texture renderbuffer, so set it to NULL
436 * for clarity compared to user renderbuffers.
437 */
438 rb->AllocStorage = NULL;
Eric Anholtc810e672013-05-10 12:36:43 -0700439
440 rb->NeedsFinishRenderTexture = ctx->Driver.FinishRenderTexture != NULL;
Eric Anholt749a9272013-04-22 10:38:41 -0700441 }
442
Ian Romanick2f9fe2d2013-07-28 13:08:27 -0700443 if (!texImage)
444 return;
445
Eric Anholt77a405d2013-04-22 11:04:21 -0700446 rb->_BaseFormat = texImage->_BaseFormat;
447 rb->Format = texImage->TexFormat;
448 rb->InternalFormat = texImage->InternalFormat;
449 rb->Width = texImage->Width2;
450 rb->Height = texImage->Height2;
Marek Olšáka3969aa2013-11-20 01:47:36 +0100451 rb->Depth = texImage->Depth2;
Eric Anholt77a405d2013-04-22 11:04:21 -0700452 rb->NumSamples = texImage->NumSamples;
Eric Anholte98c39c2013-05-10 11:51:01 -0700453 rb->TexImage = texImage;
Eric Anholt77a405d2013-04-22 11:04:21 -0700454
Ian Romanickfb497132013-07-27 12:04:20 -0700455 if (driver_RenderTexture_is_safe(att))
456 ctx->Driver.RenderTexture(ctx, fb, att);
Eric Anholt749a9272013-04-22 10:38:41 -0700457}
Brian Paul3deaa012005-02-07 05:08:24 +0000458
Brian Pauld9468c92005-02-10 16:08:07 +0000459/**
460 * Bind a texture object to an attachment point.
461 * The previous binding, if any, will be removed first.
462 */
Brian Paul94512812014-02-01 08:58:43 -0700463static void
464set_texture_attachment(struct gl_context *ctx,
465 struct gl_framebuffer *fb,
466 struct gl_renderbuffer_attachment *att,
467 struct gl_texture_object *texObj,
Laura Ekstrand085c67d2015-03-02 16:48:59 -0800468 GLenum texTarget, GLuint level, GLuint layer,
Brian Paul94512812014-02-01 08:58:43 -0700469 GLboolean layered)
Brian Paul3deaa012005-02-07 05:08:24 +0000470{
Eric Anholtc810e672013-05-10 12:36:43 -0700471 struct gl_renderbuffer *rb = att->Renderbuffer;
472
473 if (rb && rb->NeedsFinishRenderTexture)
Eric Anholta5b04522013-05-10 12:17:52 -0700474 ctx->Driver.FinishRenderTexture(ctx, rb);
Eric Anholtc810e672013-05-10 12:36:43 -0700475
Brian Paul0e31e022005-12-01 00:25:00 +0000476 if (att->Texture == texObj) {
477 /* re-attaching same texture */
Matt Turnerbfcdb842015-02-20 20:18:47 -0800478 assert(att->Type == GL_TEXTURE);
Brian Paul0e31e022005-12-01 00:25:00 +0000479 }
480 else {
481 /* new attachment */
Brian Paul94512812014-02-01 08:58:43 -0700482 remove_attachment(ctx, att);
Brian Paul0e31e022005-12-01 00:25:00 +0000483 att->Type = GL_TEXTURE;
Brian9e01b912007-08-13 11:29:46 +0100484 assert(!att->Texture);
485 _mesa_reference_texobj(&att->Texture, texObj);
Brian Paul0e31e022005-12-01 00:25:00 +0000486 }
Eric Anholt749a9272013-04-22 10:38:41 -0700487 invalidate_framebuffer(fb);
Brian Paul0e31e022005-12-01 00:25:00 +0000488
489 /* always update these fields */
Brian Paul3deaa012005-02-07 05:08:24 +0000490 att->TextureLevel = level;
Brian Paul26f1ad62009-10-23 18:15:55 -0600491 att->CubeMapFace = _mesa_tex_target_to_face(texTarget);
Laura Ekstrand085c67d2015-03-02 16:48:59 -0800492 att->Zoffset = layer;
Jordan Justena6280802013-04-18 10:08:50 -0700493 att->Layered = layered;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000494 att->Complete = GL_FALSE;
Brian Paul519b23b2006-03-20 18:51:57 +0000495
Eric Anholt749a9272013-04-22 10:38:41 -0700496 _mesa_update_texture_renderbuffer(ctx, fb, att);
Brian Paul3deaa012005-02-07 05:08:24 +0000497}
498
499
Brian Pauld9468c92005-02-10 16:08:07 +0000500/**
501 * Bind a renderbuffer to an attachment point.
502 * The previous binding, if any, will be removed first.
503 */
Brian Paul94512812014-02-01 08:58:43 -0700504static void
505set_renderbuffer_attachment(struct gl_context *ctx,
506 struct gl_renderbuffer_attachment *att,
507 struct gl_renderbuffer *rb)
Brian Paul3deaa012005-02-07 05:08:24 +0000508{
Brian Paulea4fe662006-03-26 05:22:17 +0000509 /* XXX check if re-doing same attachment, exit early */
Brian Paul94512812014-02-01 08:58:43 -0700510 remove_attachment(ctx, att);
Brian Paul3deaa012005-02-07 05:08:24 +0000511 att->Type = GL_RENDERBUFFER_EXT;
Brian Paul2c6f9112005-02-24 05:47:06 +0000512 att->Texture = NULL; /* just to be safe */
James Legg1581e122015-02-07 23:33:15 +0000513 att->Layered = GL_FALSE;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000514 att->Complete = GL_FALSE;
Briandccd9c42007-04-02 09:56:28 -0600515 _mesa_reference_renderbuffer(&att->Renderbuffer, rb);
Brian Paul3deaa012005-02-07 05:08:24 +0000516}
517
Brian Paulddc82ee2005-02-05 19:56:45 +0000518
Brian Paulf0bbbf62005-02-09 03:50:30 +0000519/**
Brian Paule4b23562005-05-04 20:11:35 +0000520 * Fallback for ctx->Driver.FramebufferRenderbuffer()
Brian Paul84716042005-11-16 04:05:54 +0000521 * Attach a renderbuffer object to a framebuffer object.
Brian Paule4b23562005-05-04 20:11:35 +0000522 */
523void
Laura Ekstrand3d100372015-02-27 17:23:59 -0800524_mesa_FramebufferRenderbuffer_sw(struct gl_context *ctx,
525 struct gl_framebuffer *fb,
526 GLenum attachment,
527 struct gl_renderbuffer *rb)
Brian Paule4b23562005-05-04 20:11:35 +0000528{
Brian Paul84716042005-11-16 04:05:54 +0000529 struct gl_renderbuffer_attachment *att;
530
Brian Pauld129ea72014-03-01 10:21:07 -0700531 mtx_lock(&fb->Mutex);
Brian Paulea4fe662006-03-26 05:22:17 +0000532
Brian Paul94512812014-02-01 08:58:43 -0700533 att = get_attachment(ctx, fb, attachment);
Matt Turnerbfcdb842015-02-20 20:18:47 -0800534 assert(att);
Brian Paule4b23562005-05-04 20:11:35 +0000535 if (rb) {
Brian Paul94512812014-02-01 08:58:43 -0700536 set_renderbuffer_attachment(ctx, att, rb);
Brian Paul30590072009-01-21 11:06:11 -0700537 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
538 /* do stencil attachment here (depth already done above) */
Brian Paul94512812014-02-01 08:58:43 -0700539 att = get_attachment(ctx, fb, GL_STENCIL_ATTACHMENT_EXT);
Brian Paul30590072009-01-21 11:06:11 -0700540 assert(att);
Brian Paul94512812014-02-01 08:58:43 -0700541 set_renderbuffer_attachment(ctx, att, rb);
Brian Paul30590072009-01-21 11:06:11 -0700542 }
Marek Olšákdf818d52011-03-06 05:26:12 +0100543 rb->AttachedAnytime = GL_TRUE;
Brian Paule4b23562005-05-04 20:11:35 +0000544 }
545 else {
Brian Paul94512812014-02-01 08:58:43 -0700546 remove_attachment(ctx, att);
James Legg846c7152014-05-23 12:25:37 +0100547 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
548 /* detach stencil (depth was detached above) */
549 att = get_attachment(ctx, fb, GL_STENCIL_ATTACHMENT_EXT);
550 assert(att);
551 remove_attachment(ctx, att);
552 }
Brian Paule4b23562005-05-04 20:11:35 +0000553 }
Brian Paulea4fe662006-03-26 05:22:17 +0000554
Brian Paul72966362009-01-21 16:28:38 -0700555 invalidate_framebuffer(fb);
556
Brian Pauld129ea72014-03-01 10:21:07 -0700557 mtx_unlock(&fb->Mutex);
Brian Paule4b23562005-05-04 20:11:35 +0000558}
559
560
561/**
Brian Paul62c66b32011-01-24 19:38:52 -0700562 * Fallback for ctx->Driver.ValidateFramebuffer()
563 * Check if the renderbuffer's formats are supported by the software
564 * renderer.
565 * Drivers should probably override this.
566 */
567void
568_mesa_validate_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb)
569{
570 gl_buffer_index buf;
571 for (buf = 0; buf < BUFFER_COUNT; buf++) {
572 const struct gl_renderbuffer *rb = fb->Attachment[buf].Renderbuffer;
573 if (rb) {
574 switch (rb->_BaseFormat) {
575 case GL_ALPHA:
576 case GL_LUMINANCE_ALPHA:
577 case GL_LUMINANCE:
578 case GL_INTENSITY:
Brian Pauld3015652011-01-24 19:38:52 -0700579 case GL_RED:
580 case GL_RG:
Brian Paul62c66b32011-01-24 19:38:52 -0700581 fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED;
582 return;
Marek Olšáka3ac28a2011-05-14 04:42:29 +0200583
584 default:
Marek Olšák9d7698c2011-04-26 02:18:24 +0200585 switch (rb->Format) {
Marek Olšáka3ac28a2011-05-14 04:42:29 +0200586 /* XXX This list is likely incomplete. */
Mark Muellereeed49f2014-01-26 15:12:56 -0800587 case MESA_FORMAT_R9G9B9E5_FLOAT:
Marek Olšák9d7698c2011-04-26 02:18:24 +0200588 fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED;
589 return;
590 default:;
Marek Olšáka3ac28a2011-05-14 04:42:29 +0200591 /* render buffer format is supported by software rendering */
Marek Olšák9d7698c2011-04-26 02:18:24 +0200592 }
Brian Paul62c66b32011-01-24 19:38:52 -0700593 }
594 }
595 }
596}
597
598
599/**
Marek Olšákf8855a42013-03-14 14:22:56 +0100600 * Return true if the framebuffer has a combined depth/stencil
601 * renderbuffer attached.
602 */
603GLboolean
604_mesa_has_depthstencil_combined(const struct gl_framebuffer *fb)
605{
606 const struct gl_renderbuffer_attachment *depth =
607 &fb->Attachment[BUFFER_DEPTH];
608 const struct gl_renderbuffer_attachment *stencil =
609 &fb->Attachment[BUFFER_STENCIL];
610
611 if (depth->Type == stencil->Type) {
612 if (depth->Type == GL_RENDERBUFFER_EXT &&
613 depth->Renderbuffer == stencil->Renderbuffer)
614 return GL_TRUE;
615
616 if (depth->Type == GL_TEXTURE &&
617 depth->Texture == stencil->Texture)
618 return GL_TRUE;
619 }
620
621 return GL_FALSE;
622}
623
624
625/**
Brian Paul9f731c82009-02-17 16:47:54 -0700626 * For debug only.
627 */
628static void
629att_incomplete(const char *msg)
630{
Brian Paul93bcf782012-05-09 12:09:21 -0600631 if (MESA_DEBUG_FLAGS & DEBUG_INCOMPLETE_FBO) {
632 _mesa_debug(NULL, "attachment incomplete: %s\n", msg);
633 }
Brian Paul9f731c82009-02-17 16:47:54 -0700634}
635
636
637/**
Brian Paulc26c2002009-09-15 17:20:32 -0600638 * For debug only.
639 */
640static void
Eric Anholt3c21a7d2013-06-06 11:13:02 -0700641fbo_incomplete(struct gl_context *ctx, const char *msg, int index)
Brian Paulc26c2002009-09-15 17:20:32 -0600642{
Eric Anholt3c21a7d2013-06-06 11:13:02 -0700643 static GLuint msg_id;
644
645 _mesa_gl_debug(ctx, &msg_id,
Matt Turner5b1e51b2014-11-13 17:35:58 -0800646 MESA_DEBUG_SOURCE_API,
Eric Anholt3c21a7d2013-06-06 11:13:02 -0700647 MESA_DEBUG_TYPE_OTHER,
648 MESA_DEBUG_SEVERITY_MEDIUM,
649 "FBO incomplete: %s [%d]\n", msg, index);
650
Brian Paul93bcf782012-05-09 12:09:21 -0600651 if (MESA_DEBUG_FLAGS & DEBUG_INCOMPLETE_FBO) {
652 _mesa_debug(NULL, "FBO Incomplete: %s [%d]\n", msg, index);
653 }
Brian Paulc26c2002009-09-15 17:20:32 -0600654}
655
656
Brian Paule67f6ee2010-10-22 11:38:23 -0600657/**
658 * Is the given base format a legal format for a color renderbuffer?
659 */
Eric Anholt059cca92011-01-02 17:58:07 -0800660GLboolean
661_mesa_is_legal_color_format(const struct gl_context *ctx, GLenum baseFormat)
Brian Paule67f6ee2010-10-22 11:38:23 -0600662{
663 switch (baseFormat) {
664 case GL_RGB:
665 case GL_RGBA:
666 return GL_TRUE;
Marek Olšák6e618532010-10-02 21:53:03 +0200667 case GL_LUMINANCE:
668 case GL_LUMINANCE_ALPHA:
669 case GL_INTENSITY:
Brian Paule67f6ee2010-10-22 11:38:23 -0600670 case GL_ALPHA:
Jordan Justencf300ea2012-12-27 12:41:10 -0800671 return ctx->API == API_OPENGL_COMPAT &&
672 ctx->Extensions.ARB_framebuffer_object;
Brian Paule67f6ee2010-10-22 11:38:23 -0600673 case GL_RED:
674 case GL_RG:
675 return ctx->Extensions.ARB_texture_rg;
676 default:
677 return GL_FALSE;
678 }
679}
680
681
682/**
Jordan Justen6c7fa722012-12-27 13:34:44 -0800683 * Is the given base format a legal format for a color renderbuffer?
684 */
685static GLboolean
Brian Paulc1377ed2014-03-22 10:31:58 -0600686is_format_color_renderable(const struct gl_context *ctx, mesa_format format,
687 GLenum internalFormat)
Jordan Justen6c7fa722012-12-27 13:34:44 -0800688{
689 const GLenum baseFormat =
690 _mesa_get_format_base_format(format);
691 GLboolean valid;
692
693 valid = _mesa_is_legal_color_format(ctx, baseFormat);
694 if (!valid || _mesa_is_desktop_gl(ctx)) {
695 return valid;
696 }
697
698 /* Reject additional cases for GLES */
699 switch (internalFormat) {
700 case GL_RGBA8_SNORM:
701 case GL_RGB32F:
702 case GL_RGB32I:
703 case GL_RGB32UI:
704 case GL_RGB16F:
705 case GL_RGB16I:
706 case GL_RGB16UI:
707 case GL_RGB8_SNORM:
708 case GL_RGB8I:
709 case GL_RGB8UI:
710 case GL_SRGB8:
711 case GL_RGB9_E5:
712 case GL_RG8_SNORM:
713 case GL_R8_SNORM:
714 return GL_FALSE;
715 default:
716 break;
717 }
718
Brian Paulc1377ed2014-03-22 10:31:58 -0600719 if (format == MESA_FORMAT_B10G10R10A2_UNORM &&
720 internalFormat != GL_RGB10_A2) {
Jordan Justen6c7fa722012-12-27 13:34:44 -0800721 return GL_FALSE;
722 }
723
724 return GL_TRUE;
725}
726
727
728/**
Brian Paule67f6ee2010-10-22 11:38:23 -0600729 * Is the given base format a legal format for a depth/stencil renderbuffer?
730 */
731static GLboolean
732is_legal_depth_format(const struct gl_context *ctx, GLenum baseFormat)
733{
734 switch (baseFormat) {
735 case GL_DEPTH_COMPONENT:
736 case GL_DEPTH_STENCIL_EXT:
737 return GL_TRUE;
738 default:
739 return GL_FALSE;
740 }
741}
Brian Paulc26c2002009-09-15 17:20:32 -0600742
743
744/**
Brian Paulf0bbbf62005-02-09 03:50:30 +0000745 * Test if an attachment point is complete and update its Complete field.
746 * \param format if GL_COLOR, this is a color attachment point,
747 * if GL_DEPTH, this is a depth component attachment point,
748 * if GL_STENCIL, this is a stencil component attachment point.
749 */
750static void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400751test_attachment_completeness(const struct gl_context *ctx, GLenum format,
Brian Paul2c6f9112005-02-24 05:47:06 +0000752 struct gl_renderbuffer_attachment *att)
Brian Paulf0bbbf62005-02-09 03:50:30 +0000753{
754 assert(format == GL_COLOR || format == GL_DEPTH || format == GL_STENCIL);
755
756 /* assume complete */
757 att->Complete = GL_TRUE;
758
Brian Paulf0bbbf62005-02-09 03:50:30 +0000759 /* Look for reasons why the attachment might be incomplete */
760 if (att->Type == GL_TEXTURE) {
Brian Paule4b23562005-05-04 20:11:35 +0000761 const struct gl_texture_object *texObj = att->Texture;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000762 struct gl_texture_image *texImage;
Brian Paul5cf5d4b2009-09-27 20:51:18 -0600763 GLenum baseFormat;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000764
Brian Paule4b23562005-05-04 20:11:35 +0000765 if (!texObj) {
Brian Paul9f731c82009-02-17 16:47:54 -0700766 att_incomplete("no texobj");
Brian Paule4b23562005-05-04 20:11:35 +0000767 att->Complete = GL_FALSE;
768 return;
769 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000770
771 texImage = texObj->Image[att->CubeMapFace][att->TextureLevel];
772 if (!texImage) {
Brian Paul9f731c82009-02-17 16:47:54 -0700773 att_incomplete("no teximage");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000774 att->Complete = GL_FALSE;
775 return;
776 }
777 if (texImage->Width < 1 || texImage->Height < 1) {
Brian Paul9f731c82009-02-17 16:47:54 -0700778 att_incomplete("teximage width/height=0");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000779 att->Complete = GL_FALSE;
780 return;
781 }
Ian Romanick25281fe2013-07-27 12:27:45 -0700782
783 switch (texObj->Target) {
784 case GL_TEXTURE_3D:
785 if (att->Zoffset >= texImage->Depth) {
786 att_incomplete("bad z offset");
787 att->Complete = GL_FALSE;
788 return;
789 }
790 break;
791 case GL_TEXTURE_1D_ARRAY:
792 if (att->Zoffset >= texImage->Height) {
793 att_incomplete("bad 1D-array layer");
794 att->Complete = GL_FALSE;
795 return;
796 }
797 break;
798 case GL_TEXTURE_2D_ARRAY:
799 if (att->Zoffset >= texImage->Depth) {
800 att_incomplete("bad 2D-array layer");
801 att->Complete = GL_FALSE;
802 return;
803 }
804 break;
805 case GL_TEXTURE_CUBE_MAP_ARRAY:
806 if (att->Zoffset >= texImage->Depth) {
807 att_incomplete("bad cube-array layer");
808 att->Complete = GL_FALSE;
809 return;
810 }
811 break;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000812 }
813
Ilia Mirkin68c4af12016-02-17 20:31:38 -0500814 baseFormat = texImage->_BaseFormat;
Brian Paul5cf5d4b2009-09-27 20:51:18 -0600815
Brian Paulf0bbbf62005-02-09 03:50:30 +0000816 if (format == GL_COLOR) {
Eric Anholt059cca92011-01-02 17:58:07 -0800817 if (!_mesa_is_legal_color_format(ctx, baseFormat)) {
Brian Paul9f731c82009-02-17 16:47:54 -0700818 att_incomplete("bad format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000819 att->Complete = GL_FALSE;
820 return;
821 }
Brian Paul1f7c9142009-09-30 20:28:45 -0600822 if (_mesa_is_format_compressed(texImage->TexFormat)) {
Eric Anholt957f3c82009-05-15 16:24:59 -0700823 att_incomplete("compressed internalformat");
824 att->Complete = GL_FALSE;
825 return;
826 }
Tapani Pällie3330352015-02-12 14:33:53 +0200827
828 /* OES_texture_float allows creation and use of floating point
829 * textures with GL_FLOAT, GL_HALF_FLOAT but it does not allow
830 * these textures to be used as a render target, this is done via
831 * GL_EXT_color_buffer(_half)_float with set of new sized types.
832 */
833 if (_mesa_is_gles(ctx) && (texImage->TexObject->_IsFloat ||
834 texImage->TexObject->_IsHalfFloat)) {
835 att_incomplete("bad internal format");
836 att->Complete = GL_FALSE;
837 return;
838 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000839 }
840 else if (format == GL_DEPTH) {
Brian Paul5cf5d4b2009-09-27 20:51:18 -0600841 if (baseFormat == GL_DEPTH_COMPONENT) {
Brian Paul1ad7b992005-09-28 02:29:50 +0000842 /* OK */
843 }
Ian Romanicka92b9e62013-11-13 14:10:34 -0800844 else if (ctx->Extensions.ARB_depth_texture &&
Ian Romanick49493222013-11-13 14:15:11 -0800845 baseFormat == GL_DEPTH_STENCIL) {
Brian Paul1ad7b992005-09-28 02:29:50 +0000846 /* OK */
847 }
848 else {
Brian Paulf0bbbf62005-02-09 03:50:30 +0000849 att->Complete = GL_FALSE;
Brian Paul9f731c82009-02-17 16:47:54 -0700850 att_incomplete("bad depth format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000851 return;
852 }
853 }
854 else {
Matt Turnerbfcdb842015-02-20 20:18:47 -0800855 assert(format == GL_STENCIL);
Ian Romanicka92b9e62013-11-13 14:10:34 -0800856 if (ctx->Extensions.ARB_depth_texture &&
Ian Romanick49493222013-11-13 14:15:11 -0800857 baseFormat == GL_DEPTH_STENCIL) {
Mathias Fröhlich042d9a52009-05-19 09:59:01 -0600858 /* OK */
Dave Airlie782e71c2015-04-05 13:19:18 +1000859 } else if (ctx->Extensions.ARB_texture_stencil8 &&
860 baseFormat == GL_STENCIL_INDEX) {
861 /* OK */
862 } else {
Mathias Fröhlich042d9a52009-05-19 09:59:01 -0600863 /* no such thing as stencil-only textures */
864 att_incomplete("illegal stencil texture");
865 att->Complete = GL_FALSE;
866 return;
867 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000868 }
869 }
Brian Paule4b23562005-05-04 20:11:35 +0000870 else if (att->Type == GL_RENDERBUFFER_EXT) {
Ilia Mirkin68c4af12016-02-17 20:31:38 -0500871 const GLenum baseFormat = att->Renderbuffer->_BaseFormat;
Brian Paul45e76d22009-10-08 20:27:27 -0600872
Matt Turnerbfcdb842015-02-20 20:18:47 -0800873 assert(att->Renderbuffer);
Brian Paul49918882006-03-20 15:27:55 +0000874 if (!att->Renderbuffer->InternalFormat ||
875 att->Renderbuffer->Width < 1 ||
876 att->Renderbuffer->Height < 1) {
Brian Paul9f731c82009-02-17 16:47:54 -0700877 att_incomplete("0x0 renderbuffer");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000878 att->Complete = GL_FALSE;
879 return;
880 }
881 if (format == GL_COLOR) {
Eric Anholt059cca92011-01-02 17:58:07 -0800882 if (!_mesa_is_legal_color_format(ctx, baseFormat)) {
Brian Paul9f731c82009-02-17 16:47:54 -0700883 att_incomplete("bad renderbuffer color format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000884 att->Complete = GL_FALSE;
885 return;
886 }
887 }
888 else if (format == GL_DEPTH) {
Brian Paul45e76d22009-10-08 20:27:27 -0600889 if (baseFormat == GL_DEPTH_COMPONENT) {
Brian Paul1ad7b992005-09-28 02:29:50 +0000890 /* OK */
891 }
Ian Romanick49493222013-11-13 14:15:11 -0800892 else if (baseFormat == GL_DEPTH_STENCIL) {
Brian Paul1ad7b992005-09-28 02:29:50 +0000893 /* OK */
894 }
895 else {
Brian Paul9f731c82009-02-17 16:47:54 -0700896 att_incomplete("bad renderbuffer depth format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000897 att->Complete = GL_FALSE;
898 return;
899 }
900 }
901 else {
902 assert(format == GL_STENCIL);
Ian Romanick49493222013-11-13 14:15:11 -0800903 if (baseFormat == GL_STENCIL_INDEX ||
904 baseFormat == GL_DEPTH_STENCIL) {
Brian Paul1ad7b992005-09-28 02:29:50 +0000905 /* OK */
906 }
907 else {
Brian Paulf0bbbf62005-02-09 03:50:30 +0000908 att->Complete = GL_FALSE;
Brian Paul9f731c82009-02-17 16:47:54 -0700909 att_incomplete("bad renderbuffer stencil format");
Brian Paulf0bbbf62005-02-09 03:50:30 +0000910 return;
911 }
912 }
913 }
Brian Paule4b23562005-05-04 20:11:35 +0000914 else {
Matt Turnerbfcdb842015-02-20 20:18:47 -0800915 assert(att->Type == GL_NONE);
Brian Paule4b23562005-05-04 20:11:35 +0000916 /* complete */
917 return;
918 }
Brian Paulf0bbbf62005-02-09 03:50:30 +0000919}
920
921
922/**
923 * Test if the given framebuffer object is complete and update its
924 * Status field with the results.
Brian Paul3528f692009-01-22 15:13:18 -0700925 * Calls the ctx->Driver.ValidateFramebuffer() function to allow the
926 * driver to make hardware-specific validation/completeness checks.
Brian Paule4b23562005-05-04 20:11:35 +0000927 * Also update the framebuffer's Width and Height fields if the
928 * framebuffer is complete.
Brian Paulf0bbbf62005-02-09 03:50:30 +0000929 */
Brian Paule4b23562005-05-04 20:11:35 +0000930void
Brian Paulf9288542010-10-22 11:25:14 -0600931_mesa_test_framebuffer_completeness(struct gl_context *ctx,
932 struct gl_framebuffer *fb)
Brian Paulf0bbbf62005-02-09 03:50:30 +0000933{
Brian Paul989edea2009-01-22 15:05:13 -0700934 GLuint numImages;
935 GLenum intFormat = GL_NONE; /* color buffers' internal format */
936 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0;
Brian Paul722d9762009-01-20 16:58:49 -0700937 GLint numSamples = -1;
Chris Forbes61d42ff2012-12-16 20:58:00 +1300938 GLint fixedSampleLocations = -1;
Brian Paule4b23562005-05-04 20:11:35 +0000939 GLint i;
Brian Paul28b014e2006-04-05 03:05:17 +0000940 GLuint j;
Paul Berry532b1fe2014-01-07 06:29:47 -0800941 /* Covers max_layer_count, is_layered, and layer_tex_target */
942 bool layer_info_valid = false;
943 GLuint max_layer_count = 0, att_layer_count;
Brian Paul5306ee72014-01-22 10:02:28 -0800944 bool is_layered = false;
Paul Berry28af1dc2013-11-19 19:01:37 -0800945 GLenum layer_tex_target = 0;
Iago Toral Quirogad42e0902014-12-12 15:14:32 +0100946 bool has_depth_attachment = false;
947 bool has_stencil_attachment = false;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000948
Brian Paul36ede892012-01-12 09:17:23 -0700949 assert(_mesa_is_user_fbo(fb));
Brian Paulc7264412005-06-01 00:50:23 +0000950
Marek Olšáke06d6162012-08-04 13:37:03 +0200951 /* we're changing framebuffer fields here */
952 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
953
Brian Paulf0bbbf62005-02-09 03:50:30 +0000954 numImages = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000955 fb->Width = 0;
956 fb->Height = 0;
Marek Olšák21d407c2013-03-28 01:50:21 +0100957 fb->_AllColorBuffersFixedPoint = GL_TRUE;
Marek Olšák755648c2013-03-28 01:56:01 +0100958 fb->_HasSNormOrFloatColorBuffer = GL_FALSE;
Kevin Rogovinda819992015-06-17 13:29:50 +0300959 fb->_HasAttachments = true;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000960
Brian Paul989edea2009-01-22 15:05:13 -0700961 /* Start at -2 to more easily loop over all attachment points.
962 * -2: depth buffer
963 * -1: stencil buffer
964 * >=0: color buffer
965 */
Brian Paule4b23562005-05-04 20:11:35 +0000966 for (i = -2; i < (GLint) ctx->Const.MaxColorAttachments; i++) {
Brian Paul2c6f9112005-02-24 05:47:06 +0000967 struct gl_renderbuffer_attachment *att;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000968 GLenum f;
Mark Mueller71fe9432014-01-04 14:11:43 -0800969 mesa_format attFormat;
Paul Berry95140742013-11-19 15:55:51 -0800970 GLenum att_tex_target = GL_NONE;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000971
Brian Paul1bc59bf2009-01-22 15:07:34 -0700972 /*
973 * XXX for ARB_fbo, only check color buffers that are named by
974 * GL_READ_BUFFER and GL_DRAW_BUFFERi.
975 */
976
Brian Paul989edea2009-01-22 15:05:13 -0700977 /* check for attachment completeness
978 */
Brian Paulf0bbbf62005-02-09 03:50:30 +0000979 if (i == -2) {
Brian Paule4b23562005-05-04 20:11:35 +0000980 att = &fb->Attachment[BUFFER_DEPTH];
Brian Paulf0bbbf62005-02-09 03:50:30 +0000981 test_attachment_completeness(ctx, GL_DEPTH, att);
982 if (!att->Complete) {
Brian Paule4b23562005-05-04 20:11:35 +0000983 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT;
Eric Anholt3c21a7d2013-06-06 11:13:02 -0700984 fbo_incomplete(ctx, "depth attachment incomplete", -1);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000985 return;
Iago Toral Quirogad42e0902014-12-12 15:14:32 +0100986 } else if (att->Type != GL_NONE) {
987 has_depth_attachment = true;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000988 }
989 }
990 else if (i == -1) {
Brian Paule4b23562005-05-04 20:11:35 +0000991 att = &fb->Attachment[BUFFER_STENCIL];
Brian Paulf0bbbf62005-02-09 03:50:30 +0000992 test_attachment_completeness(ctx, GL_STENCIL, att);
993 if (!att->Complete) {
Brian Paule4b23562005-05-04 20:11:35 +0000994 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT;
Eric Anholt3c21a7d2013-06-06 11:13:02 -0700995 fbo_incomplete(ctx, "stencil attachment incomplete", -1);
Brian Paulf0bbbf62005-02-09 03:50:30 +0000996 return;
Iago Toral Quirogad42e0902014-12-12 15:14:32 +0100997 } else if (att->Type != GL_NONE) {
998 has_stencil_attachment = true;
Brian Paulf0bbbf62005-02-09 03:50:30 +0000999 }
1000 }
1001 else {
Brian Paule4b23562005-05-04 20:11:35 +00001002 att = &fb->Attachment[BUFFER_COLOR0 + i];
Brian Paulf0bbbf62005-02-09 03:50:30 +00001003 test_attachment_completeness(ctx, GL_COLOR, att);
1004 if (!att->Complete) {
Brian Paule4b23562005-05-04 20:11:35 +00001005 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001006 fbo_incomplete(ctx, "color attachment incomplete", i);
Brian Paulf0bbbf62005-02-09 03:50:30 +00001007 return;
1008 }
1009 }
1010
Brian Paul989edea2009-01-22 15:05:13 -07001011 /* get width, height, format of the renderbuffer/texture
1012 */
Brian Paulf0bbbf62005-02-09 03:50:30 +00001013 if (att->Type == GL_TEXTURE) {
Eric Anholte98c39c2013-05-10 11:51:01 -07001014 const struct gl_texture_image *texImg = att->Renderbuffer->TexImage;
Paul Berry95140742013-11-19 15:55:51 -08001015 att_tex_target = att->Texture->Target;
Brian Paul989edea2009-01-22 15:05:13 -07001016 minWidth = MIN2(minWidth, texImg->Width);
1017 maxWidth = MAX2(maxWidth, texImg->Width);
1018 minHeight = MIN2(minHeight, texImg->Height);
1019 maxHeight = MAX2(maxHeight, texImg->Height);
Brian Paula9fc8ba2005-10-05 01:48:07 +00001020 f = texImg->_BaseFormat;
Brian Paulca1b5512011-02-28 18:23:23 -07001021 attFormat = texImg->TexFormat;
Brian Paulf0bbbf62005-02-09 03:50:30 +00001022 numImages++;
Chris Forbes61d42ff2012-12-16 20:58:00 +13001023
Brian Paulc1377ed2014-03-22 10:31:58 -06001024 if (!is_format_color_renderable(ctx, attFormat,
1025 texImg->InternalFormat) &&
Dave Airlie782e71c2015-04-05 13:19:18 +10001026 !is_legal_depth_format(ctx, f) &&
1027 f != GL_STENCIL_INDEX) {
Iago Toral Quirogab6819cd2014-12-15 09:29:55 +01001028 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001029 fbo_incomplete(ctx, "texture attachment incomplete", -1);
Brian Pauled7f3ae2005-06-07 15:03:40 +00001030 return;
1031 }
Chris Forbes61d42ff2012-12-16 20:58:00 +13001032
1033 if (numSamples < 0)
1034 numSamples = texImg->NumSamples;
1035 else if (numSamples != texImg->NumSamples) {
1036 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001037 fbo_incomplete(ctx, "inconsistent sample count", -1);
Chris Forbes61d42ff2012-12-16 20:58:00 +13001038 return;
1039 }
1040
1041 if (fixedSampleLocations < 0)
1042 fixedSampleLocations = texImg->FixedSampleLocations;
1043 else if (fixedSampleLocations != texImg->FixedSampleLocations) {
1044 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001045 fbo_incomplete(ctx, "inconsistent fixed sample locations", -1);
Chris Forbes61d42ff2012-12-16 20:58:00 +13001046 return;
1047 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001048 }
1049 else if (att->Type == GL_RENDERBUFFER_EXT) {
Brian Paul989edea2009-01-22 15:05:13 -07001050 minWidth = MIN2(minWidth, att->Renderbuffer->Width);
1051 maxWidth = MAX2(minWidth, att->Renderbuffer->Width);
1052 minHeight = MIN2(minHeight, att->Renderbuffer->Height);
1053 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
Brian Paulf0bbbf62005-02-09 03:50:30 +00001054 f = att->Renderbuffer->InternalFormat;
Brian Paulca1b5512011-02-28 18:23:23 -07001055 attFormat = att->Renderbuffer->Format;
Brian Paulf0bbbf62005-02-09 03:50:30 +00001056 numImages++;
Chris Forbes61d42ff2012-12-16 20:58:00 +13001057
1058 if (numSamples < 0)
1059 numSamples = att->Renderbuffer->NumSamples;
1060 else if (numSamples != att->Renderbuffer->NumSamples) {
1061 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001062 fbo_incomplete(ctx, "inconsistent sample count", -1);
Chris Forbes61d42ff2012-12-16 20:58:00 +13001063 return;
1064 }
1065
1066 /* RENDERBUFFER has fixedSampleLocations implicitly true */
1067 if (fixedSampleLocations < 0)
1068 fixedSampleLocations = GL_TRUE;
1069 else if (fixedSampleLocations != GL_TRUE) {
1070 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001071 fbo_incomplete(ctx, "inconsistent fixed sample locations", -1);
Chris Forbes61d42ff2012-12-16 20:58:00 +13001072 return;
1073 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001074 }
1075 else {
1076 assert(att->Type == GL_NONE);
1077 continue;
1078 }
1079
Brian Paulc7d18372010-10-23 09:38:45 -06001080 /* check if integer color */
Brian Paulca1b5512011-02-28 18:23:23 -07001081 fb->_IntegerColor = _mesa_is_format_integer_color(attFormat);
Brian Paulc7d18372010-10-23 09:38:45 -06001082
Marek Olšák755648c2013-03-28 01:56:01 +01001083 /* Update _AllColorBuffersFixedPoint and _HasSNormOrFloatColorBuffer. */
Marek Olšák21d407c2013-03-28 01:50:21 +01001084 if (i >= 0) {
1085 GLenum type = _mesa_get_format_datatype(attFormat);
1086
1087 fb->_AllColorBuffersFixedPoint =
1088 fb->_AllColorBuffersFixedPoint &&
1089 (type == GL_UNSIGNED_NORMALIZED || type == GL_SIGNED_NORMALIZED);
Marek Olšák755648c2013-03-28 01:56:01 +01001090
1091 fb->_HasSNormOrFloatColorBuffer =
1092 fb->_HasSNormOrFloatColorBuffer ||
1093 type == GL_SIGNED_NORMALIZED || type == GL_FLOAT;
Marek Olšák21d407c2013-03-28 01:50:21 +01001094 }
1095
Chris Forbes61d42ff2012-12-16 20:58:00 +13001096 /* Error-check width, height, format */
Brian Paulf0bbbf62005-02-09 03:50:30 +00001097 if (numImages == 1) {
Chris Forbes61d42ff2012-12-16 20:58:00 +13001098 /* save format */
Brian Paul722d9762009-01-20 16:58:49 -07001099 if (i >= 0) {
Brian Paulf0bbbf62005-02-09 03:50:30 +00001100 intFormat = f;
Brian Paul722d9762009-01-20 16:58:49 -07001101 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001102 }
1103 else {
Brian Paul989edea2009-01-22 15:05:13 -07001104 if (!ctx->Extensions.ARB_framebuffer_object) {
1105 /* check that width, height, format are same */
1106 if (minWidth != maxWidth || minHeight != maxHeight) {
1107 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001108 fbo_incomplete(ctx, "width or height mismatch", -1);
Brian Paul989edea2009-01-22 15:05:13 -07001109 return;
1110 }
Brian Paul45bd5c42011-12-16 08:44:43 -07001111 /* check that all color buffers are the same format */
Brian Paul989edea2009-01-22 15:05:13 -07001112 if (intFormat != GL_NONE && f != intFormat) {
1113 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001114 fbo_incomplete(ctx, "format mismatch", -1);
Brian Paul989edea2009-01-22 15:05:13 -07001115 return;
1116 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001117 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001118 }
Marek Olšáka82227c2012-06-15 17:21:05 +02001119
1120 /* Check that the format is valid. (MESA_FORMAT_NONE means unsupported)
1121 */
1122 if (att->Type == GL_RENDERBUFFER &&
1123 att->Renderbuffer->Format == MESA_FORMAT_NONE) {
1124 fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001125 fbo_incomplete(ctx, "unsupported renderbuffer format", i);
Marek Olšáka82227c2012-06-15 17:21:05 +02001126 return;
1127 }
Jordan Justen5da82882013-04-18 10:20:05 -07001128
1129 /* Check that layered rendering is consistent. */
Paul Berry95140742013-11-19 15:55:51 -08001130 if (att->Layered) {
1131 if (att_tex_target == GL_TEXTURE_CUBE_MAP)
1132 att_layer_count = 6;
Kenneth Graunke5c399ca2014-05-07 14:35:42 -07001133 else if (att_tex_target == GL_TEXTURE_1D_ARRAY)
1134 att_layer_count = att->Renderbuffer->Height;
Paul Berry95140742013-11-19 15:55:51 -08001135 else
1136 att_layer_count = att->Renderbuffer->Depth;
1137 } else {
1138 att_layer_count = 0;
1139 }
Paul Berry28af1dc2013-11-19 19:01:37 -08001140 if (!layer_info_valid) {
Paul Berry532b1fe2014-01-07 06:29:47 -08001141 is_layered = att->Layered;
1142 max_layer_count = att_layer_count;
Paul Berry28af1dc2013-11-19 19:01:37 -08001143 layer_tex_target = att_tex_target;
1144 layer_info_valid = true;
Paul Berry532b1fe2014-01-07 06:29:47 -08001145 } else if (max_layer_count > 0 && layer_tex_target != att_tex_target) {
Paul Berry28af1dc2013-11-19 19:01:37 -08001146 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS;
1147 fbo_incomplete(ctx, "layered framebuffer has mismatched targets", i);
1148 return;
Paul Berry532b1fe2014-01-07 06:29:47 -08001149 } else if (is_layered != att->Layered) {
1150 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS;
Brian Paulc1377ed2014-03-22 10:31:58 -06001151 fbo_incomplete(ctx,
1152 "framebuffer attachment layer mode is inconsistent",
1153 i);
Jordan Justen5da82882013-04-18 10:20:05 -07001154 return;
Paul Berry532b1fe2014-01-07 06:29:47 -08001155 } else if (att_layer_count > max_layer_count) {
1156 max_layer_count = att_layer_count;
Jordan Justen5da82882013-04-18 10:20:05 -07001157 }
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001158
1159 /*
1160 * The extension GL_ARB_framebuffer_no_attachments places additional
1161 * requirement on each attachment. Those additional requirements are
1162 * tighter that those of previous versions of GL. In interest of better
1163 * compatibility, we will not enforce these restrictions. For the record
1164 * those additional restrictions are quoted below:
1165 *
1166 * "The width and height of image are greater than zero and less than or
1167 * equal to the values of the implementation-dependent limits
1168 * MAX_FRAMEBUFFER_WIDTH and MAX_FRAMEBUFFER_HEIGHT, respectively."
1169 *
1170 * "If <image> is a three-dimensional texture or a one- or two-dimensional
1171 * array texture and the attachment is layered, the depth or layer count
1172 * of the texture is less than or equal to the implementation-dependent
1173 * limit MAX_FRAMEBUFFER_LAYERS."
1174 *
1175 * "If image has multiple samples, its sample count is less than or equal
1176 * to the value of the implementation-dependent limit
1177 * MAX_FRAMEBUFFER_SAMPLES."
1178 *
1179 * The same requirements are also in place for GL 4.5,
1180 * Section 9.4.1 "Framebuffer Attachment Completeness", pg 310-311
1181 */
Brian Paulf0bbbf62005-02-09 03:50:30 +00001182 }
1183
Paul Berry532b1fe2014-01-07 06:29:47 -08001184 fb->MaxNumLayers = max_layer_count;
Jordan Justen5da82882013-04-18 10:20:05 -07001185
Chris Forbesa419a1c2014-03-23 22:41:28 +13001186 if (numImages == 0) {
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001187 fb->_HasAttachments = false;
1188
1189 if (!ctx->Extensions.ARB_framebuffer_no_attachments) {
1190 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT;
1191 fbo_incomplete(ctx, "no attachments", -1);
1192 return;
1193 }
1194
1195 if (fb->DefaultGeometry.Width == 0 || fb->DefaultGeometry.Height == 0) {
1196 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT;
1197 fbo_incomplete(ctx, "no attachments and default width or height is 0", -1);
1198 return;
1199 }
Chris Forbesa419a1c2014-03-23 22:41:28 +13001200 }
1201
Jordan Justen09714c02012-07-19 11:27:16 -07001202 if (_mesa_is_desktop_gl(ctx) && !ctx->Extensions.ARB_ES2_compatibility) {
Kristian Høgsberge88cef32010-05-24 16:56:12 -04001203 /* Check that all DrawBuffers are present */
1204 for (j = 0; j < ctx->Const.MaxDrawBuffers; j++) {
Martin Peres7bd8b482015-02-12 17:54:43 +02001205 if (fb->ColorDrawBuffer[j] != GL_NONE) {
1206 const struct gl_renderbuffer_attachment *att
1207 = get_attachment(ctx, fb, fb->ColorDrawBuffer[j]);
1208 assert(att);
1209 if (att->Type == GL_NONE) {
1210 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT;
1211 fbo_incomplete(ctx, "missing drawbuffer", j);
1212 return;
1213 }
1214 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001215 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001216
Kristian Høgsberge88cef32010-05-24 16:56:12 -04001217 /* Check that the ReadBuffer is present */
1218 if (fb->ColorReadBuffer != GL_NONE) {
Martin Peres7bd8b482015-02-12 17:54:43 +02001219 const struct gl_renderbuffer_attachment *att
1220 = get_attachment(ctx, fb, fb->ColorReadBuffer);
1221 assert(att);
1222 if (att->Type == GL_NONE) {
1223 fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT;
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001224 fbo_incomplete(ctx, "missing readbuffer", -1);
Martin Peres7bd8b482015-02-12 17:54:43 +02001225 return;
1226 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00001227 }
1228 }
1229
Iago Toral Quirogad42e0902014-12-12 15:14:32 +01001230 /* The OpenGL ES3 spec, in chapter 9.4. FRAMEBUFFER COMPLETENESS, says:
1231 *
1232 * "Depth and stencil attachments, if present, are the same image."
1233 *
1234 * This restriction is not present in the OpenGL ES2 spec.
1235 */
1236 if (_mesa_is_gles3(ctx) &&
1237 has_stencil_attachment && has_depth_attachment &&
1238 !_mesa_has_depthstencil_combined(fb)) {
1239 fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED;
1240 fbo_incomplete(ctx, "Depth and stencil attachments must be the same image", -1);
1241 return;
1242 }
1243
Brian Paul3528f692009-01-22 15:13:18 -07001244 /* Provisionally set status = COMPLETE ... */
Brian Paule4b23562005-05-04 20:11:35 +00001245 fb->_Status = GL_FRAMEBUFFER_COMPLETE_EXT;
Brian Paul3528f692009-01-22 15:13:18 -07001246
Brian Paul777a2ef2009-01-22 15:17:42 -07001247 /* ... but the driver may say the FB is incomplete.
1248 * Drivers will most likely set the status to GL_FRAMEBUFFER_UNSUPPORTED
1249 * if anything.
1250 */
Brian Paul3528f692009-01-22 15:13:18 -07001251 if (ctx->Driver.ValidateFramebuffer) {
1252 ctx->Driver.ValidateFramebuffer(ctx, fb);
Brian Paul1f32c412009-01-19 17:34:19 -07001253 if (fb->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
Eric Anholt3c21a7d2013-06-06 11:13:02 -07001254 fbo_incomplete(ctx, "driver marked FBO as incomplete", -1);
Erik Faye-Lund395b53d2015-12-16 17:09:50 +01001255 return;
Brian Paul1f32c412009-01-19 17:34:19 -07001256 }
Brian Paul3528f692009-01-22 15:13:18 -07001257 }
1258
Erik Faye-Lund395b53d2015-12-16 17:09:50 +01001259 /*
1260 * Note that if ARB_framebuffer_object is supported and the attached
1261 * renderbuffers/textures are different sizes, the framebuffer
1262 * width/height will be set to the smallest width/height.
1263 */
1264 if (numImages != 0) {
1265 fb->Width = minWidth;
1266 fb->Height = minHeight;
Brian Paul3528f692009-01-22 15:13:18 -07001267 }
Erik Faye-Lund395b53d2015-12-16 17:09:50 +01001268
1269 /* finally, update the visual info for the framebuffer */
1270 _mesa_update_framebuffer_visual(ctx, fb);
Brian Paule4b23562005-05-04 20:11:35 +00001271}
Brian Paulf0bbbf62005-02-09 03:50:30 +00001272
1273
Brian Paul1864c7d2005-02-08 03:46:37 +00001274GLboolean GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08001275_mesa_IsRenderbuffer(GLuint renderbuffer)
Brian Paulddc82ee2005-02-05 19:56:45 +00001276{
Brian Paulddc82ee2005-02-05 19:56:45 +00001277 GET_CURRENT_CONTEXT(ctx);
Brian Paulddc82ee2005-02-05 19:56:45 +00001278 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Brian Paulbc6cced2005-10-04 15:01:27 +00001279 if (renderbuffer) {
Brian Paulc1377ed2014-03-22 10:31:58 -06001280 struct gl_renderbuffer *rb =
1281 _mesa_lookup_renderbuffer(ctx, renderbuffer);
Brian Paulbc6cced2005-10-04 15:01:27 +00001282 if (rb != NULL && rb != &DummyRenderbuffer)
1283 return GL_TRUE;
1284 }
1285 return GL_FALSE;
Brian Paulddc82ee2005-02-05 19:56:45 +00001286}
1287
1288
Martin Peresa34669b2015-02-12 18:52:10 +02001289static struct gl_renderbuffer *
1290allocate_renderbuffer(struct gl_context *ctx, GLuint renderbuffer,
1291 const char *func)
1292{
1293 struct gl_renderbuffer *newRb;
1294
1295 /* create new renderbuffer object */
1296 newRb = ctx->Driver.NewRenderbuffer(ctx, renderbuffer);
1297 if (!newRb) {
1298 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s", func);
1299 return NULL;
1300 }
1301 assert(newRb->AllocStorage);
Martin Peres59af7ed2015-03-30 10:34:20 +03001302 mtx_lock(&ctx->Shared->Mutex);
Martin Peresa34669b2015-02-12 18:52:10 +02001303 _mesa_HashInsert(ctx->Shared->RenderBuffers, renderbuffer, newRb);
1304 newRb->RefCount = 1; /* referenced by hash table */
Martin Peres59af7ed2015-03-30 10:34:20 +03001305 mtx_unlock(&ctx->Shared->Mutex);
Martin Peresa34669b2015-02-12 18:52:10 +02001306
1307 return newRb;
1308}
1309
1310
Ian Romanick97965e82013-07-18 17:38:16 -07001311static void
1312bind_renderbuffer(GLenum target, GLuint renderbuffer, bool allow_user_names)
Brian Paulddc82ee2005-02-05 19:56:45 +00001313{
Brian42aaa542007-03-25 10:39:36 -06001314 struct gl_renderbuffer *newRb;
Brian Paulddc82ee2005-02-05 19:56:45 +00001315 GET_CURRENT_CONTEXT(ctx);
1316
Brian Paul3deaa012005-02-07 05:08:24 +00001317 if (target != GL_RENDERBUFFER_EXT) {
Brian Paul4de18fb2009-11-02 15:30:51 -07001318 _mesa_error(ctx, GL_INVALID_ENUM, "glBindRenderbufferEXT(target)");
Brian Paulddc82ee2005-02-05 19:56:45 +00001319 return;
1320 }
1321
Brian Paul800e5532009-11-02 15:39:39 -07001322 /* No need to flush here since the render buffer binding has no
1323 * effect on rendering state.
1324 */
Brian Paul474f28e2005-10-08 14:41:17 +00001325
Brian Paul3deaa012005-02-07 05:08:24 +00001326 if (renderbuffer) {
Brian Paulea4fe662006-03-26 05:22:17 +00001327 newRb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
Brian Paul1864c7d2005-02-08 03:46:37 +00001328 if (newRb == &DummyRenderbuffer) {
1329 /* ID was reserved, but no real renderbuffer object made yet */
1330 newRb = NULL;
1331 }
Ian Romanick97965e82013-07-18 17:38:16 -07001332 else if (!newRb && !allow_user_names) {
Brian Paul1bc59bf2009-01-22 15:07:34 -07001333 /* All RB IDs must be Gen'd */
1334 _mesa_error(ctx, GL_INVALID_OPERATION, "glBindRenderbuffer(buffer)");
1335 return;
1336 }
1337
Brian Paul3deaa012005-02-07 05:08:24 +00001338 if (!newRb) {
Martin Peresa34669b2015-02-12 18:52:10 +02001339 newRb = allocate_renderbuffer(ctx, renderbuffer, "glBindRenderbufferEXT");
Brian Paul3deaa012005-02-07 05:08:24 +00001340 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001341 }
Brian Paul463642c2005-02-08 02:06:00 +00001342 else {
1343 newRb = NULL;
1344 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001345
Matt Turnerbfcdb842015-02-20 20:18:47 -08001346 assert(newRb != &DummyRenderbuffer);
Brian Paul1864c7d2005-02-08 03:46:37 +00001347
Brian42aaa542007-03-25 10:39:36 -06001348 _mesa_reference_renderbuffer(&ctx->CurrentRenderbuffer, newRb);
Brian Paulddc82ee2005-02-05 19:56:45 +00001349}
1350
Ian Romanick97965e82013-07-18 17:38:16 -07001351void GLAPIENTRY
1352_mesa_BindRenderbuffer(GLenum target, GLuint renderbuffer)
1353{
1354 GET_CURRENT_CONTEXT(ctx);
1355
1356 /* OpenGL ES glBindRenderbuffer and glBindRenderbufferOES use this same
1357 * entry point, but they allow the use of user-generated names.
1358 */
1359 bind_renderbuffer(target, renderbuffer, _mesa_is_gles(ctx));
1360}
Brian Paulddc82ee2005-02-05 19:56:45 +00001361
Tomasz Lis9f07ca12013-07-16 20:57:26 +02001362void GLAPIENTRY
1363_mesa_BindRenderbufferEXT(GLenum target, GLuint renderbuffer)
1364{
Ian Romanick97965e82013-07-18 17:38:16 -07001365 /* This function should not be in the dispatch table for core profile /
1366 * OpenGL 3.1, so execution should never get here in those cases -- no
1367 * need for an explicit test.
1368 */
1369 bind_renderbuffer(target, renderbuffer, true);
Tomasz Lis9f07ca12013-07-16 20:57:26 +02001370}
1371
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001372static void
1373framebuffer_parameteri(struct gl_context *ctx, struct gl_framebuffer *fb,
1374 GLenum pname, GLint param, const char *func)
1375{
1376 switch (pname) {
1377 case GL_FRAMEBUFFER_DEFAULT_WIDTH:
1378 if (param < 0 || param > ctx->Const.MaxFramebufferWidth)
1379 _mesa_error(ctx, GL_INVALID_VALUE, "%s", func);
1380 else
1381 fb->DefaultGeometry.Width = param;
1382 break;
1383 case GL_FRAMEBUFFER_DEFAULT_HEIGHT:
1384 if (param < 0 || param > ctx->Const.MaxFramebufferHeight)
1385 _mesa_error(ctx, GL_INVALID_VALUE, "%s", func);
1386 else
1387 fb->DefaultGeometry.Height = param;
1388 break;
1389 case GL_FRAMEBUFFER_DEFAULT_LAYERS:
Marta Lofstedtf8a93882015-08-24 13:01:53 +02001390 /*
1391 * According to the OpenGL ES 3.1 specification section 9.2.1, the
1392 * GL_FRAMEBUFFER_DEFAULT_LAYERS parameter name is not supported.
1393 */
1394 if (_mesa_is_gles31(ctx)) {
1395 _mesa_error(ctx, GL_INVALID_ENUM, "%s(pname=0x%x)", func, pname);
1396 break;
1397 }
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001398 if (param < 0 || param > ctx->Const.MaxFramebufferLayers)
Marta Lofstedtf8a93882015-08-24 13:01:53 +02001399 _mesa_error(ctx, GL_INVALID_VALUE, "%s", func);
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001400 else
1401 fb->DefaultGeometry.Layers = param;
1402 break;
1403 case GL_FRAMEBUFFER_DEFAULT_SAMPLES:
1404 if (param < 0 || param > ctx->Const.MaxFramebufferSamples)
1405 _mesa_error(ctx, GL_INVALID_VALUE, "%s", func);
1406 else
1407 fb->DefaultGeometry.NumSamples = param;
1408 break;
1409 case GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS:
1410 fb->DefaultGeometry.FixedSampleLocations = param;
1411 break;
1412 default:
1413 _mesa_error(ctx, GL_INVALID_ENUM,
1414 "%s(pname=0x%x)", func, pname);
1415 }
Ilia Mirkin095da3b2016-01-23 09:27:22 -05001416
1417 invalidate_framebuffer(fb);
1418 ctx->NewState |= _NEW_BUFFERS;
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001419}
1420
Kevin Rogovinc9d26f22015-06-17 13:29:51 +03001421void GLAPIENTRY
1422_mesa_FramebufferParameteri(GLenum target, GLenum pname, GLint param)
1423{
1424 GET_CURRENT_CONTEXT(ctx);
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001425 struct gl_framebuffer *fb;
Kevin Rogovinc9d26f22015-06-17 13:29:51 +03001426
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001427 if (!ctx->Extensions.ARB_framebuffer_no_attachments) {
1428 _mesa_error(ctx, GL_INVALID_OPERATION,
1429 "glFramebufferParameteriv not supported "
1430 "(ARB_framebuffer_no_attachments not implemented)");
1431 return;
1432 }
Kevin Rogovinc9d26f22015-06-17 13:29:51 +03001433
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001434 fb = get_framebuffer_target(ctx, target);
1435 if (!fb) {
1436 _mesa_error(ctx, GL_INVALID_ENUM,
1437 "glFramebufferParameteri(target=0x%x)", target);
1438 return;
1439 }
1440
1441 /* check framebuffer binding */
1442 if (_mesa_is_winsys_fbo(fb)) {
1443 _mesa_error(ctx, GL_INVALID_OPERATION,
1444 "glFramebufferParameteri");
1445 return;
1446 }
1447
1448 framebuffer_parameteri(ctx, fb, pname, param, "glFramebufferParameteri");
1449}
1450
1451static void
1452get_framebuffer_parameteriv(struct gl_context *ctx, struct gl_framebuffer *fb,
1453 GLenum pname, GLint *params, const char *func)
1454{
1455 switch (pname) {
1456 case GL_FRAMEBUFFER_DEFAULT_WIDTH:
1457 *params = fb->DefaultGeometry.Width;
1458 break;
1459 case GL_FRAMEBUFFER_DEFAULT_HEIGHT:
1460 *params = fb->DefaultGeometry.Height;
1461 break;
1462 case GL_FRAMEBUFFER_DEFAULT_LAYERS:
Marta Lofstedtf8a93882015-08-24 13:01:53 +02001463 /*
1464 * According to the OpenGL ES 3.1 specification section 9.2.3, the
1465 * GL_FRAMEBUFFER_LAYERS parameter name is not supported.
1466 */
1467 if (_mesa_is_gles31(ctx)) {
1468 _mesa_error(ctx, GL_INVALID_ENUM, "%s(pname=0x%x)", func, pname);
1469 break;
1470 }
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001471 *params = fb->DefaultGeometry.Layers;
1472 break;
1473 case GL_FRAMEBUFFER_DEFAULT_SAMPLES:
1474 *params = fb->DefaultGeometry.NumSamples;
1475 break;
1476 case GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS:
1477 *params = fb->DefaultGeometry.FixedSampleLocations;
1478 break;
1479 default:
1480 _mesa_error(ctx, GL_INVALID_ENUM,
1481 "%s(pname=0x%x)", func, pname);
1482 }
Kevin Rogovinc9d26f22015-06-17 13:29:51 +03001483}
1484
1485void GLAPIENTRY
1486_mesa_GetFramebufferParameteriv(GLenum target, GLenum pname, GLint *params)
1487{
1488 GET_CURRENT_CONTEXT(ctx);
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001489 struct gl_framebuffer *fb;
Kevin Rogovinc9d26f22015-06-17 13:29:51 +03001490
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001491 if (!ctx->Extensions.ARB_framebuffer_no_attachments) {
1492 _mesa_error(ctx, GL_INVALID_OPERATION,
1493 "glGetFramebufferParameteriv not supported "
1494 "(ARB_framebuffer_no_attachments not implemented)");
1495 return;
1496 }
Kevin Rogovinc9d26f22015-06-17 13:29:51 +03001497
Kevin Rogovin6aa12992015-06-17 13:29:52 +03001498 fb = get_framebuffer_target(ctx, target);
1499 if (!fb) {
1500 _mesa_error(ctx, GL_INVALID_ENUM,
1501 "glGetFramebufferParameteriv(target=0x%x)", target);
1502 return;
1503 }
1504
1505 /* check framebuffer binding */
1506 if (_mesa_is_winsys_fbo(fb)) {
1507 _mesa_error(ctx, GL_INVALID_OPERATION,
1508 "glGetFramebufferParameteriv");
1509 return;
1510 }
1511
1512 get_framebuffer_parameteriv(ctx, fb, pname, params,
1513 "glGetFramebufferParameteriv");
Kevin Rogovinc9d26f22015-06-17 13:29:51 +03001514}
1515
Tomasz Lis9f07ca12013-07-16 20:57:26 +02001516
Brian Pauld0f13fa2009-01-21 11:17:45 -07001517/**
Ian Romanickef83bd22013-08-08 15:41:36 -07001518 * Remove the specified renderbuffer or texture from any attachment point in
1519 * the framebuffer.
Ian Romanick438cc6b2013-08-08 15:26:36 -07001520 *
1521 * \returns
1522 * \c true if the renderbuffer was detached from an attachment point. \c
1523 * false otherwise.
Brian Pauld0f13fa2009-01-21 11:17:45 -07001524 */
Ian Romanick438cc6b2013-08-08 15:26:36 -07001525bool
1526_mesa_detach_renderbuffer(struct gl_context *ctx,
1527 struct gl_framebuffer *fb,
1528 const void *att)
Brian Pauld0f13fa2009-01-21 11:17:45 -07001529{
Ian Romanick438cc6b2013-08-08 15:26:36 -07001530 unsigned i;
1531 bool progress = false;
1532
Brian Pauld0f13fa2009-01-21 11:17:45 -07001533 for (i = 0; i < BUFFER_COUNT; i++) {
Ian Romanickef83bd22013-08-08 15:41:36 -07001534 if (fb->Attachment[i].Texture == att
1535 || fb->Attachment[i].Renderbuffer == att) {
Brian Paul94512812014-02-01 08:58:43 -07001536 remove_attachment(ctx, &fb->Attachment[i]);
Ian Romanick438cc6b2013-08-08 15:26:36 -07001537 progress = true;
Brian Pauld0f13fa2009-01-21 11:17:45 -07001538 }
1539 }
Ian Romanick438cc6b2013-08-08 15:26:36 -07001540
1541 /* Section 4.4.4 (Framebuffer Completeness), subsection "Whole Framebuffer
1542 * Completeness," of the OpenGL 3.1 spec says:
1543 *
1544 * "Performing any of the following actions may change whether the
1545 * framebuffer is considered complete or incomplete:
1546 *
1547 * ...
1548 *
1549 * - Deleting, with DeleteTextures or DeleteRenderbuffers, an object
1550 * containing an image that is attached to a framebuffer object
1551 * that is bound to the framebuffer."
1552 */
1553 if (progress)
1554 invalidate_framebuffer(fb);
1555
1556 return progress;
Brian Pauld0f13fa2009-01-21 11:17:45 -07001557}
1558
1559
Brian Paul1864c7d2005-02-08 03:46:37 +00001560void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08001561_mesa_DeleteRenderbuffers(GLsizei n, const GLuint *renderbuffers)
Brian Paulddc82ee2005-02-05 19:56:45 +00001562{
1563 GLint i;
1564 GET_CURRENT_CONTEXT(ctx);
1565
Eduardo Lima Mitev2012f622014-12-11 23:34:18 +01001566 if (n < 0) {
1567 _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteRenderbuffers(n < 0)");
1568 return;
1569 }
1570
Brian Paul474f28e2005-10-08 14:41:17 +00001571 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Brian Paulddc82ee2005-02-05 19:56:45 +00001572
1573 for (i = 0; i < n; i++) {
Brian Paul2c6f9112005-02-24 05:47:06 +00001574 if (renderbuffers[i] > 0) {
Martin Peres7bd8b482015-02-12 17:54:43 +02001575 struct gl_renderbuffer *rb;
1576 rb = _mesa_lookup_renderbuffer(ctx, renderbuffers[i]);
1577 if (rb) {
Brian Paul91802fd2005-10-04 16:01:02 +00001578 /* check if deleting currently bound renderbuffer object */
1579 if (rb == ctx->CurrentRenderbuffer) {
1580 /* bind default */
Matt Turnerbfcdb842015-02-20 20:18:47 -08001581 assert(rb->RefCount >= 2);
Paul Berry1a1db172012-11-06 08:57:59 -08001582 _mesa_BindRenderbuffer(GL_RENDERBUFFER_EXT, 0);
Brian Paul91802fd2005-10-04 16:01:02 +00001583 }
1584
Ian Romanickef83bd22013-08-08 15:41:36 -07001585 /* Section 4.4.2 (Attaching Images to Framebuffer Objects),
Brian Paulc1377ed2014-03-22 10:31:58 -06001586 * subsection "Attaching Renderbuffer Images to a Framebuffer,"
1587 * of the OpenGL 3.1 spec says:
Ian Romanickef83bd22013-08-08 15:41:36 -07001588 *
1589 * "If a renderbuffer object is deleted while its image is
1590 * attached to one or more attachment points in the currently
1591 * bound framebuffer, then it is as if FramebufferRenderbuffer
1592 * had been called, with a renderbuffer of 0, for each
1593 * attachment point to which this image was attached in the
1594 * currently bound framebuffer. In other words, this
1595 * renderbuffer image is first detached from all attachment
1596 * points in the currently bound framebuffer. Note that the
1597 * renderbuffer image is specifically not detached from any
1598 * non-bound framebuffers. Detaching the image from any
1599 * non-bound framebuffers is the responsibility of the
1600 * application.
1601 */
Brian Paul36ede892012-01-12 09:17:23 -07001602 if (_mesa_is_user_fbo(ctx->DrawBuffer)) {
Ian Romanick438cc6b2013-08-08 15:26:36 -07001603 _mesa_detach_renderbuffer(ctx, ctx->DrawBuffer, rb);
Brian Pauld0f13fa2009-01-21 11:17:45 -07001604 }
Brian Paul36ede892012-01-12 09:17:23 -07001605 if (_mesa_is_user_fbo(ctx->ReadBuffer)
Brian Paulfc8c4a32011-06-16 07:31:58 -06001606 && ctx->ReadBuffer != ctx->DrawBuffer) {
Ian Romanick438cc6b2013-08-08 15:26:36 -07001607 _mesa_detach_renderbuffer(ctx, ctx->ReadBuffer, rb);
Brian Pauld0f13fa2009-01-21 11:17:45 -07001608 }
1609
Martin Peres7bd8b482015-02-12 17:54:43 +02001610 /* Remove from hash table immediately, to free the ID.
Brian42aaa542007-03-25 10:39:36 -06001611 * But the object will not be freed until it's no longer
1612 * referenced anywhere else.
1613 */
Martin Peres7bd8b482015-02-12 17:54:43 +02001614 _mesa_HashRemove(ctx->Shared->RenderBuffers, renderbuffers[i]);
Brian Paulddc82ee2005-02-05 19:56:45 +00001615
Brian Paul1864c7d2005-02-08 03:46:37 +00001616 if (rb != &DummyRenderbuffer) {
Brian42aaa542007-03-25 10:39:36 -06001617 /* no longer referenced by hash table */
1618 _mesa_reference_renderbuffer(&rb, NULL);
Martin Peres7bd8b482015-02-12 17:54:43 +02001619 }
1620 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001621 }
1622 }
1623}
1624
Martin Peresa34669b2015-02-12 18:52:10 +02001625static void
1626create_render_buffers(struct gl_context *ctx, GLsizei n, GLuint *renderbuffers,
1627 bool dsa)
Brian Paulddc82ee2005-02-05 19:56:45 +00001628{
Martin Peresa34669b2015-02-12 18:52:10 +02001629 const char *func = dsa ? "glCreateRenderbuffers" : "glGenRenderbuffers";
Brian Paulddc82ee2005-02-05 19:56:45 +00001630 GLuint first;
1631 GLint i;
1632
Brian Paulddc82ee2005-02-05 19:56:45 +00001633 if (n < 0) {
Martin Peresa34669b2015-02-12 18:52:10 +02001634 _mesa_error(ctx, GL_INVALID_VALUE, "%s(n<0)", func);
Brian Paulddc82ee2005-02-05 19:56:45 +00001635 return;
1636 }
1637
1638 if (!renderbuffers)
1639 return;
1640
1641 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->RenderBuffers, n);
1642
1643 for (i = 0; i < n; i++) {
Brian Paulddc82ee2005-02-05 19:56:45 +00001644 GLuint name = first + i;
Brian Paulf0bbbf62005-02-09 03:50:30 +00001645 renderbuffers[i] = name;
Martin Peresa34669b2015-02-12 18:52:10 +02001646
1647 if (dsa) {
Martin Peresfa383212015-03-25 16:28:03 +02001648 allocate_renderbuffer(ctx, name, func);
Martin Peresa34669b2015-02-12 18:52:10 +02001649 } else {
Martin Peresfa383212015-03-25 16:28:03 +02001650 /* insert a dummy renderbuffer into the hash table */
Martin Peresa34669b2015-02-12 18:52:10 +02001651 mtx_lock(&ctx->Shared->Mutex);
Martin Peresfa383212015-03-25 16:28:03 +02001652 _mesa_HashInsert(ctx->Shared->RenderBuffers, name, &DummyRenderbuffer);
Martin Peresa34669b2015-02-12 18:52:10 +02001653 mtx_unlock(&ctx->Shared->Mutex);
1654 }
Brian Paulddc82ee2005-02-05 19:56:45 +00001655 }
1656}
1657
1658
Martin Peresa34669b2015-02-12 18:52:10 +02001659void GLAPIENTRY
1660_mesa_GenRenderbuffers(GLsizei n, GLuint *renderbuffers)
1661{
1662 GET_CURRENT_CONTEXT(ctx);
1663 create_render_buffers(ctx, n, renderbuffers, false);
1664}
1665
1666
1667void GLAPIENTRY
1668_mesa_CreateRenderbuffers(GLsizei n, GLuint *renderbuffers)
1669{
1670 GET_CURRENT_CONTEXT(ctx);
1671 create_render_buffers(ctx, n, renderbuffers, true);
1672}
1673
1674
Brian Pauld9468c92005-02-10 16:08:07 +00001675/**
Brian Paulf41bbc72011-01-24 19:38:52 -07001676 * Given an internal format token for a render buffer, return the
Brian Paul976ea9d2011-01-24 19:38:52 -07001677 * corresponding base format (one of GL_RGB, GL_RGBA, GL_STENCIL_INDEX,
1678 * GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL_EXT, GL_ALPHA, GL_LUMINANCE,
1679 * GL_LUMINANCE_ALPHA, GL_INTENSITY, etc).
Brian Paulf41bbc72011-01-24 19:38:52 -07001680 *
Brian Paul976ea9d2011-01-24 19:38:52 -07001681 * This is similar to _mesa_base_tex_format() but the set of valid
1682 * internal formats is different.
Brian Paulf41bbc72011-01-24 19:38:52 -07001683 *
Brian Paul976ea9d2011-01-24 19:38:52 -07001684 * Note that even if a format is determined to be legal here, validation
Brian Paulb3cfcdf2011-01-28 20:25:26 -07001685 * of the FBO may fail if the format is not supported by the driver/GPU.
Brian Paul976ea9d2011-01-24 19:38:52 -07001686 *
1687 * \param internalFormat as passed to glRenderbufferStorage()
1688 * \return the base internal format, or 0 if internalFormat is illegal
Brian Pauld9468c92005-02-10 16:08:07 +00001689 */
Brian Paul59e0faa2006-03-15 17:48:00 +00001690GLenum
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04001691_mesa_base_fbo_format(struct gl_context *ctx, GLenum internalFormat)
Brian Paul463642c2005-02-08 02:06:00 +00001692{
Brian Paul976ea9d2011-01-24 19:38:52 -07001693 /*
1694 * Notes: some formats such as alpha, luminance, etc. were added
1695 * with GL_ARB_framebuffer_object.
1696 */
Brian Paul463642c2005-02-08 02:06:00 +00001697 switch (internalFormat) {
Brian Paulf41bbc72011-01-24 19:38:52 -07001698 case GL_ALPHA:
1699 case GL_ALPHA4:
1700 case GL_ALPHA8:
1701 case GL_ALPHA12:
1702 case GL_ALPHA16:
Brian Paulc1377ed2014-03-22 10:31:58 -06001703 return (ctx->API == API_OPENGL_COMPAT &&
1704 ctx->Extensions.ARB_framebuffer_object) ? GL_ALPHA : 0;
Brian Paul976ea9d2011-01-24 19:38:52 -07001705 case GL_LUMINANCE:
1706 case GL_LUMINANCE4:
1707 case GL_LUMINANCE8:
1708 case GL_LUMINANCE12:
1709 case GL_LUMINANCE16:
Brian Paulc1377ed2014-03-22 10:31:58 -06001710 return (ctx->API == API_OPENGL_COMPAT &&
1711 ctx->Extensions.ARB_framebuffer_object) ? GL_LUMINANCE : 0;
Brian Paul976ea9d2011-01-24 19:38:52 -07001712 case GL_LUMINANCE_ALPHA:
1713 case GL_LUMINANCE4_ALPHA4:
1714 case GL_LUMINANCE6_ALPHA2:
1715 case GL_LUMINANCE8_ALPHA8:
1716 case GL_LUMINANCE12_ALPHA4:
1717 case GL_LUMINANCE12_ALPHA12:
1718 case GL_LUMINANCE16_ALPHA16:
Brian Paulc1377ed2014-03-22 10:31:58 -06001719 return (ctx->API == API_OPENGL_COMPAT &&
1720 ctx->Extensions.ARB_framebuffer_object) ? GL_LUMINANCE_ALPHA : 0;
Brian Paul976ea9d2011-01-24 19:38:52 -07001721 case GL_INTENSITY:
1722 case GL_INTENSITY4:
1723 case GL_INTENSITY8:
1724 case GL_INTENSITY12:
1725 case GL_INTENSITY16:
Brian Paulc1377ed2014-03-22 10:31:58 -06001726 return (ctx->API == API_OPENGL_COMPAT &&
1727 ctx->Extensions.ARB_framebuffer_object) ? GL_INTENSITY : 0;
Ian Romanickf0c99d02012-07-27 08:31:12 -07001728 case GL_RGB8:
1729 return GL_RGB;
Brian Paulf41bbc72011-01-24 19:38:52 -07001730 case GL_RGB:
1731 case GL_R3_G3_B2:
1732 case GL_RGB4:
1733 case GL_RGB5:
Brian Paulf41bbc72011-01-24 19:38:52 -07001734 case GL_RGB10:
1735 case GL_RGB12:
1736 case GL_RGB16:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001737 return _mesa_is_desktop_gl(ctx) ? GL_RGB : 0;
Brian Paulf41bbc72011-01-24 19:38:52 -07001738 case GL_SRGB8_EXT:
Matt Turnercbef5372012-11-20 13:45:03 -08001739 return _mesa_is_desktop_gl(ctx) ? GL_RGB : 0;
Brian Paulf41bbc72011-01-24 19:38:52 -07001740 case GL_RGBA4:
1741 case GL_RGB5_A1:
1742 case GL_RGBA8:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001743 return GL_RGBA;
1744 case GL_RGBA:
1745 case GL_RGBA2:
Brian Paulf41bbc72011-01-24 19:38:52 -07001746 case GL_RGBA12:
1747 case GL_RGBA16:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001748 return _mesa_is_desktop_gl(ctx) ? GL_RGBA : 0;
1749 case GL_RGB10_A2:
Brian Paulf41bbc72011-01-24 19:38:52 -07001750 case GL_SRGB8_ALPHA8_EXT:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001751 return _mesa_is_desktop_gl(ctx) || _mesa_is_gles3(ctx) ? GL_RGBA : 0;
Brian Paulf0bbbf62005-02-09 03:50:30 +00001752 case GL_STENCIL_INDEX:
1753 case GL_STENCIL_INDEX1_EXT:
1754 case GL_STENCIL_INDEX4_EXT:
Brian Paulf0bbbf62005-02-09 03:50:30 +00001755 case GL_STENCIL_INDEX16_EXT:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001756 /* There are extensions for GL_STENCIL_INDEX1 and GL_STENCIL_INDEX4 in
1757 * OpenGL ES, but Mesa does not currently support them.
1758 */
1759 return _mesa_is_desktop_gl(ctx) ? GL_STENCIL_INDEX : 0;
1760 case GL_STENCIL_INDEX8_EXT:
Brian Paulf0bbbf62005-02-09 03:50:30 +00001761 return GL_STENCIL_INDEX;
1762 case GL_DEPTH_COMPONENT:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001763 case GL_DEPTH_COMPONENT32:
1764 return _mesa_is_desktop_gl(ctx) ? GL_DEPTH_COMPONENT : 0;
Brian Paul2c6f9112005-02-24 05:47:06 +00001765 case GL_DEPTH_COMPONENT16:
1766 case GL_DEPTH_COMPONENT24:
Brian Paulf0bbbf62005-02-09 03:50:30 +00001767 return GL_DEPTH_COMPONENT;
Ian Romanick49493222013-11-13 14:15:11 -08001768 case GL_DEPTH_STENCIL:
1769 return _mesa_is_desktop_gl(ctx) ? GL_DEPTH_STENCIL : 0;
1770 case GL_DEPTH24_STENCIL8:
1771 return GL_DEPTH_STENCIL;
Marek Olšák11652802011-06-01 15:48:51 +02001772 case GL_DEPTH_COMPONENT32F:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001773 return ctx->Version >= 30
Brian Paulc1377ed2014-03-22 10:31:58 -06001774 || (ctx->API == API_OPENGL_COMPAT &&
1775 ctx->Extensions.ARB_depth_buffer_float)
Ian Romanickf0c99d02012-07-27 08:31:12 -07001776 ? GL_DEPTH_COMPONENT : 0;
Marek Olšák11652802011-06-01 15:48:51 +02001777 case GL_DEPTH32F_STENCIL8:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001778 return ctx->Version >= 30
Brian Paulc1377ed2014-03-22 10:31:58 -06001779 || (ctx->API == API_OPENGL_COMPAT &&
1780 ctx->Extensions.ARB_depth_buffer_float)
Ian Romanickf0c99d02012-07-27 08:31:12 -07001781 ? GL_DEPTH_STENCIL : 0;
Brian Pauld3015652011-01-24 19:38:52 -07001782 case GL_RED:
Brian Pauld3015652011-01-24 19:38:52 -07001783 case GL_R16:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001784 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_rg
1785 ? GL_RED : 0;
1786 case GL_R8:
1787 return ctx->API != API_OPENGLES && ctx->Extensions.ARB_texture_rg
1788 ? GL_RED : 0;
Brian Pauld3015652011-01-24 19:38:52 -07001789 case GL_RG:
Brian Pauld3015652011-01-24 19:38:52 -07001790 case GL_RG16:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001791 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_rg
1792 ? GL_RG : 0;
1793 case GL_RG8:
1794 return ctx->API != API_OPENGLES && ctx->Extensions.ARB_texture_rg
1795 ? GL_RG : 0;
Marek Olšák0be36992011-03-18 13:44:51 +01001796 /* signed normalized texture formats */
Ian Romanickf0c99d02012-07-27 08:31:12 -07001797 case GL_RED_SNORM:
Ian Romanick2aae3ab2012-12-04 10:36:10 -08001798 case GL_R8_SNORM:
Marek Olšák0be36992011-03-18 13:44:51 +01001799 case GL_R16_SNORM:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001800 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_snorm
1801 ? GL_RED : 0;
Ian Romanickf0c99d02012-07-27 08:31:12 -07001802 case GL_RG_SNORM:
Ian Romanick2aae3ab2012-12-04 10:36:10 -08001803 case GL_RG8_SNORM:
Marek Olšák0be36992011-03-18 13:44:51 +01001804 case GL_RG16_SNORM:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001805 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_snorm
1806 ? GL_RG : 0;
Ian Romanickf0c99d02012-07-27 08:31:12 -07001807 case GL_RGB_SNORM:
Ian Romanick2aae3ab2012-12-04 10:36:10 -08001808 case GL_RGB8_SNORM:
Marek Olšák0be36992011-03-18 13:44:51 +01001809 case GL_RGB16_SNORM:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001810 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_snorm
1811 ? GL_RGB : 0;
Ian Romanickf0c99d02012-07-27 08:31:12 -07001812 case GL_RGBA_SNORM:
Ian Romanick2aae3ab2012-12-04 10:36:10 -08001813 case GL_RGBA8_SNORM:
Marek Olšák0be36992011-03-18 13:44:51 +01001814 case GL_RGBA16_SNORM:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001815 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_snorm
1816 ? GL_RGBA : 0;
Marek Olšák0be36992011-03-18 13:44:51 +01001817 case GL_ALPHA_SNORM:
1818 case GL_ALPHA8_SNORM:
1819 case GL_ALPHA16_SNORM:
Paul Berrydbd61352012-11-27 12:26:51 -08001820 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001821 ctx->Extensions.EXT_texture_snorm &&
Marek Olšák0be36992011-03-18 13:44:51 +01001822 ctx->Extensions.ARB_framebuffer_object ? GL_ALPHA : 0;
Brian Paul513a3242014-01-08 09:05:29 -07001823 case GL_LUMINANCE_SNORM:
1824 case GL_LUMINANCE8_SNORM:
1825 case GL_LUMINANCE16_SNORM:
1826 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_snorm
1827 ? GL_LUMINANCE : 0;
1828 case GL_LUMINANCE_ALPHA_SNORM:
1829 case GL_LUMINANCE8_ALPHA8_SNORM:
1830 case GL_LUMINANCE16_ALPHA16_SNORM:
1831 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_snorm
1832 ? GL_LUMINANCE_ALPHA : 0;
1833 case GL_INTENSITY_SNORM:
1834 case GL_INTENSITY8_SNORM:
1835 case GL_INTENSITY16_SNORM:
1836 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_snorm
1837 ? GL_INTENSITY : 0;
1838
Marek Olšák15f99d12011-02-16 00:35:44 +01001839 case GL_R16F:
1840 case GL_R32F:
Jordan Justen119002a2013-01-10 17:29:27 -08001841 return ((_mesa_is_desktop_gl(ctx) &&
1842 ctx->Extensions.ARB_texture_rg &&
1843 ctx->Extensions.ARB_texture_float) ||
1844 _mesa_is_gles3(ctx) /* EXT_color_buffer_float */ )
1845 ? GL_RED : 0;
Marek Olšák15f99d12011-02-16 00:35:44 +01001846 case GL_RG16F:
1847 case GL_RG32F:
Jordan Justen119002a2013-01-10 17:29:27 -08001848 return ((_mesa_is_desktop_gl(ctx) &&
1849 ctx->Extensions.ARB_texture_rg &&
1850 ctx->Extensions.ARB_texture_float) ||
1851 _mesa_is_gles3(ctx) /* EXT_color_buffer_float */ )
1852 ? GL_RG : 0;
Marek Olšák15f99d12011-02-16 00:35:44 +01001853 case GL_RGB16F:
1854 case GL_RGB32F:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001855 return (_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_float)
Ian Romanickf0c99d02012-07-27 08:31:12 -07001856 ? GL_RGB : 0;
Marek Olšák15f99d12011-02-16 00:35:44 +01001857 case GL_RGBA16F:
1858 case GL_RGBA32F:
Jordan Justen119002a2013-01-10 17:29:27 -08001859 return ((_mesa_is_desktop_gl(ctx) &&
1860 ctx->Extensions.ARB_texture_float) ||
1861 _mesa_is_gles3(ctx) /* EXT_color_buffer_float */ )
Ian Romanickf0c99d02012-07-27 08:31:12 -07001862 ? GL_RGBA : 0;
Marek Olšák15f99d12011-02-16 00:35:44 +01001863 case GL_ALPHA16F_ARB:
1864 case GL_ALPHA32F_ARB:
Paul Berrydbd61352012-11-27 12:26:51 -08001865 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001866 ctx->Extensions.ARB_texture_float &&
Marek Olšák15f99d12011-02-16 00:35:44 +01001867 ctx->Extensions.ARB_framebuffer_object ? GL_ALPHA : 0;
1868 case GL_LUMINANCE16F_ARB:
1869 case GL_LUMINANCE32F_ARB:
Paul Berrydbd61352012-11-27 12:26:51 -08001870 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001871 ctx->Extensions.ARB_texture_float &&
Marek Olšák15f99d12011-02-16 00:35:44 +01001872 ctx->Extensions.ARB_framebuffer_object ? GL_LUMINANCE : 0;
1873 case GL_LUMINANCE_ALPHA16F_ARB:
1874 case GL_LUMINANCE_ALPHA32F_ARB:
Paul Berrydbd61352012-11-27 12:26:51 -08001875 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001876 ctx->Extensions.ARB_texture_float &&
Marek Olšák15f99d12011-02-16 00:35:44 +01001877 ctx->Extensions.ARB_framebuffer_object ? GL_LUMINANCE_ALPHA : 0;
1878 case GL_INTENSITY16F_ARB:
1879 case GL_INTENSITY32F_ARB:
Paul Berrydbd61352012-11-27 12:26:51 -08001880 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001881 ctx->Extensions.ARB_texture_float &&
Marek Olšák15f99d12011-02-16 00:35:44 +01001882 ctx->Extensions.ARB_framebuffer_object ? GL_INTENSITY : 0;
Marek Olšák631d23d2011-04-26 02:27:25 +02001883 case GL_R11F_G11F_B10F:
Jordan Justen119002a2013-01-10 17:29:27 -08001884 return ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_packed_float) ||
1885 _mesa_is_gles3(ctx) /* EXT_color_buffer_float */ )
Matt Turnercbef5372012-11-20 13:45:03 -08001886 ? GL_RGB : 0;
Dave Airlie9c697a92011-10-04 20:59:40 +01001887
1888 case GL_RGBA8UI_EXT:
1889 case GL_RGBA16UI_EXT:
1890 case GL_RGBA32UI_EXT:
1891 case GL_RGBA8I_EXT:
1892 case GL_RGBA16I_EXT:
1893 case GL_RGBA32I_EXT:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001894 return ctx->Version >= 30
1895 || (_mesa_is_desktop_gl(ctx) &&
1896 ctx->Extensions.EXT_texture_integer) ? GL_RGBA : 0;
Dave Airlie9c697a92011-10-04 20:59:40 +01001897
1898 case GL_RGB8UI_EXT:
1899 case GL_RGB16UI_EXT:
1900 case GL_RGB32UI_EXT:
1901 case GL_RGB8I_EXT:
1902 case GL_RGB16I_EXT:
1903 case GL_RGB32I_EXT:
Ian Romanicka86d6292012-12-03 11:55:12 -08001904 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_integer
1905 ? GL_RGB : 0;
Dave Airlie9c697a92011-10-04 20:59:40 +01001906 case GL_R8UI:
1907 case GL_R8I:
1908 case GL_R16UI:
1909 case GL_R16I:
1910 case GL_R32UI:
1911 case GL_R32I:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001912 return ctx->Version >= 30
1913 || (_mesa_is_desktop_gl(ctx) &&
1914 ctx->Extensions.ARB_texture_rg &&
1915 ctx->Extensions.EXT_texture_integer) ? GL_RED : 0;
Dave Airlie9c697a92011-10-04 20:59:40 +01001916
1917 case GL_RG8UI:
1918 case GL_RG8I:
1919 case GL_RG16UI:
1920 case GL_RG16I:
1921 case GL_RG32UI:
1922 case GL_RG32I:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001923 return ctx->Version >= 30
1924 || (_mesa_is_desktop_gl(ctx) &&
1925 ctx->Extensions.ARB_texture_rg &&
1926 ctx->Extensions.EXT_texture_integer) ? GL_RG : 0;
Brian Paul45bd5c42011-12-16 08:44:43 -07001927
Dave Airlie9c697a92011-10-04 20:59:40 +01001928 case GL_INTENSITY8I_EXT:
1929 case GL_INTENSITY8UI_EXT:
1930 case GL_INTENSITY16I_EXT:
1931 case GL_INTENSITY16UI_EXT:
1932 case GL_INTENSITY32I_EXT:
1933 case GL_INTENSITY32UI_EXT:
Paul Berrydbd61352012-11-27 12:26:51 -08001934 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001935 ctx->Extensions.EXT_texture_integer &&
Dave Airlie9c697a92011-10-04 20:59:40 +01001936 ctx->Extensions.ARB_framebuffer_object ? GL_INTENSITY : 0;
1937
1938 case GL_LUMINANCE8I_EXT:
1939 case GL_LUMINANCE8UI_EXT:
1940 case GL_LUMINANCE16I_EXT:
1941 case GL_LUMINANCE16UI_EXT:
1942 case GL_LUMINANCE32I_EXT:
1943 case GL_LUMINANCE32UI_EXT:
Paul Berrydbd61352012-11-27 12:26:51 -08001944 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001945 ctx->Extensions.EXT_texture_integer &&
Dave Airlie9c697a92011-10-04 20:59:40 +01001946 ctx->Extensions.ARB_framebuffer_object ? GL_LUMINANCE : 0;
1947
1948 case GL_LUMINANCE_ALPHA8I_EXT:
1949 case GL_LUMINANCE_ALPHA8UI_EXT:
1950 case GL_LUMINANCE_ALPHA16I_EXT:
1951 case GL_LUMINANCE_ALPHA16UI_EXT:
1952 case GL_LUMINANCE_ALPHA32I_EXT:
1953 case GL_LUMINANCE_ALPHA32UI_EXT:
Paul Berrydbd61352012-11-27 12:26:51 -08001954 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001955 ctx->Extensions.EXT_texture_integer &&
Dave Airlie9c697a92011-10-04 20:59:40 +01001956 ctx->Extensions.ARB_framebuffer_object ? GL_LUMINANCE_ALPHA : 0;
Dave Airlief449be62011-11-27 16:21:02 +00001957
Marek Olšák636802f2012-01-22 20:21:36 +01001958 case GL_ALPHA8I_EXT:
1959 case GL_ALPHA8UI_EXT:
1960 case GL_ALPHA16I_EXT:
1961 case GL_ALPHA16UI_EXT:
1962 case GL_ALPHA32I_EXT:
1963 case GL_ALPHA32UI_EXT:
Paul Berrydbd61352012-11-27 12:26:51 -08001964 return ctx->API == API_OPENGL_COMPAT &&
Ian Romanickf0c99d02012-07-27 08:31:12 -07001965 ctx->Extensions.EXT_texture_integer &&
Marek Olšák636802f2012-01-22 20:21:36 +01001966 ctx->Extensions.ARB_framebuffer_object ? GL_ALPHA : 0;
1967
Dave Airlief449be62011-11-27 16:21:02 +00001968 case GL_RGB10_A2UI:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001969 return (_mesa_is_desktop_gl(ctx) &&
1970 ctx->Extensions.ARB_texture_rgb10_a2ui)
1971 || _mesa_is_gles3(ctx) ? GL_RGBA : 0;
Marek Olšák1a06e842012-07-12 14:07:41 +02001972
1973 case GL_RGB565:
Ian Romanickf0c99d02012-07-27 08:31:12 -07001974 return _mesa_is_gles(ctx) || ctx->Extensions.ARB_ES2_compatibility
1975 ? GL_RGB : 0;
Brian Paulf41bbc72011-01-24 19:38:52 -07001976 default:
Eric Anholt65c41d52011-01-13 10:05:50 -08001977 return 0;
Brian Paulf41bbc72011-01-24 19:38:52 -07001978 }
Brian Paul463642c2005-02-08 02:06:00 +00001979}
1980
1981
Marek Olšákdf818d52011-03-06 05:26:12 +01001982/**
1983 * Invalidate a renderbuffer attachment. Called from _mesa_HashWalk().
1984 */
1985static void
1986invalidate_rb(GLuint key, void *data, void *userData)
1987{
1988 struct gl_framebuffer *fb = (struct gl_framebuffer *) data;
1989 struct gl_renderbuffer *rb = (struct gl_renderbuffer *) userData;
1990
1991 /* If this is a user-created FBO */
Brian Paul36ede892012-01-12 09:17:23 -07001992 if (_mesa_is_user_fbo(fb)) {
Marek Olšákdf818d52011-03-06 05:26:12 +01001993 GLuint i;
1994 for (i = 0; i < BUFFER_COUNT; i++) {
1995 struct gl_renderbuffer_attachment *att = fb->Attachment + i;
1996 if (att->Type == GL_RENDERBUFFER &&
1997 att->Renderbuffer == rb) {
1998 /* Mark fb status as indeterminate to force re-validation */
1999 fb->_Status = 0;
Marek Olšáka674ef72011-03-07 23:33:36 +01002000 return;
Marek Olšákdf818d52011-03-06 05:26:12 +01002001 }
2002 }
2003 }
2004}
2005
2006
Brian Paul4f3514e2009-01-22 15:19:56 -07002007/** sentinal value, see below */
2008#define NO_SAMPLES 1000
2009
Ian Romanickeb5bc622015-11-12 09:11:20 -08002010void
2011_mesa_renderbuffer_storage(struct gl_context *ctx, struct gl_renderbuffer *rb,
2012 GLenum internalFormat, GLsizei width,
2013 GLsizei height, GLsizei samples)
2014{
2015 const GLenum baseFormat = _mesa_base_fbo_format(ctx, internalFormat);
2016
2017 assert(baseFormat != 0);
2018 assert(width >= 0 && width <= (GLsizei) ctx->Const.MaxRenderbufferSize);
2019 assert(height >= 0 && height <= (GLsizei) ctx->Const.MaxRenderbufferSize);
2020 assert(samples != NO_SAMPLES);
2021 if (samples != 0) {
2022 assert(samples > 0);
2023 assert(_mesa_check_sample_count(ctx, GL_RENDERBUFFER,
2024 internalFormat, samples) == GL_NO_ERROR);
2025 }
2026
2027 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
2028
2029 if (rb->InternalFormat == internalFormat &&
2030 rb->Width == (GLuint) width &&
2031 rb->Height == (GLuint) height &&
2032 rb->NumSamples == samples) {
2033 /* no change in allocation needed */
2034 return;
2035 }
2036
2037 /* These MUST get set by the AllocStorage func */
2038 rb->Format = MESA_FORMAT_NONE;
2039 rb->NumSamples = samples;
2040
2041 /* Now allocate the storage */
2042 assert(rb->AllocStorage);
2043 if (rb->AllocStorage(ctx, rb, internalFormat, width, height)) {
2044 /* No error - check/set fields now */
2045 /* If rb->Format == MESA_FORMAT_NONE, the format is unsupported. */
2046 assert(rb->Width == (GLuint) width);
2047 assert(rb->Height == (GLuint) height);
2048 rb->InternalFormat = internalFormat;
2049 rb->_BaseFormat = baseFormat;
2050 assert(rb->_BaseFormat != 0);
2051 }
2052 else {
2053 /* Probably ran out of memory - clear the fields */
2054 rb->Width = 0;
2055 rb->Height = 0;
2056 rb->Format = MESA_FORMAT_NONE;
2057 rb->InternalFormat = GL_NONE;
2058 rb->_BaseFormat = GL_NONE;
2059 rb->NumSamples = 0;
2060 }
2061
2062 /* Invalidate the framebuffers the renderbuffer is attached in. */
2063 if (rb->AttachedAnytime) {
2064 _mesa_HashWalk(ctx->Shared->FrameBuffers, invalidate_rb, rb);
2065 }
2066}
Brian Paul4f3514e2009-01-22 15:19:56 -07002067
2068/**
Martin Peresbf11c192015-02-13 15:35:48 +02002069 * Helper function used by renderbuffer_storage_direct() and
2070 * renderbuffer_storage_target().
2071 * samples will be NO_SAMPLES if called by a non-multisample function.
Brian Paul4f3514e2009-01-22 15:19:56 -07002072 */
2073static void
Martin Peresbf11c192015-02-13 15:35:48 +02002074renderbuffer_storage(struct gl_context *ctx, struct gl_renderbuffer *rb,
2075 GLenum internalFormat, GLsizei width,
2076 GLsizei height, GLsizei samples, const char *func)
Brian Paulddc82ee2005-02-05 19:56:45 +00002077{
Brian Paul463642c2005-02-08 02:06:00 +00002078 GLenum baseFormat;
Chris Forbes90b5a242013-02-06 20:42:53 +13002079 GLenum sample_count_error;
Brian Paulddc82ee2005-02-05 19:56:45 +00002080
Brian Paul59e0faa2006-03-15 17:48:00 +00002081 baseFormat = _mesa_base_fbo_format(ctx, internalFormat);
Brian Paul463642c2005-02-08 02:06:00 +00002082 if (baseFormat == 0) {
Jordan Justen119002a2013-01-10 17:29:27 -08002083 _mesa_error(ctx, GL_INVALID_ENUM, "%s(internalFormat=%s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002084 func, _mesa_enum_to_string(internalFormat));
Brian Paulddc82ee2005-02-05 19:56:45 +00002085 return;
2086 }
2087
Yuanhan Liu49f84472011-10-25 15:36:59 +08002088 if (width < 0 || width > (GLsizei) ctx->Const.MaxRenderbufferSize) {
Martin Peresbf11c192015-02-13 15:35:48 +02002089 _mesa_error(ctx, GL_INVALID_VALUE, "%s(invalid width %d)", func,
2090 width);
Brian Paulddc82ee2005-02-05 19:56:45 +00002091 return;
2092 }
2093
Yuanhan Liu49f84472011-10-25 15:36:59 +08002094 if (height < 0 || height > (GLsizei) ctx->Const.MaxRenderbufferSize) {
Martin Peresbf11c192015-02-13 15:35:48 +02002095 _mesa_error(ctx, GL_INVALID_VALUE, "%s(invalid height %d)", func,
2096 height);
Brian Paul4f3514e2009-01-22 15:19:56 -07002097 return;
2098 }
2099
2100 if (samples == NO_SAMPLES) {
2101 /* NumSamples == 0 indicates non-multisampling */
2102 samples = 0;
2103 }
Chris Forbes21a2dfa2013-03-25 23:19:07 +13002104 else {
2105 /* check the sample count;
2106 * note: driver may choose to use more samples than what's requested
2107 */
Martin Peresbf11c192015-02-13 15:35:48 +02002108 sample_count_error = _mesa_check_sample_count(ctx, GL_RENDERBUFFER,
Chris Forbes21a2dfa2013-03-25 23:19:07 +13002109 internalFormat, samples);
Timothy Arceri46684d32015-08-13 18:44:51 +10002110
2111 /* Section 2.5 (GL Errors) of OpenGL 3.0 specification, page 16:
2112 *
2113 * "If a negative number is provided where an argument of type sizei or
2114 * sizeiptr is specified, the error INVALID VALUE is generated."
2115 */
2116 if (samples < 0) {
2117 sample_count_error = GL_INVALID_VALUE;
2118 }
2119
Chris Forbes21a2dfa2013-03-25 23:19:07 +13002120 if (sample_count_error != GL_NO_ERROR) {
2121 _mesa_error(ctx, sample_count_error, "%s(samples)", func);
2122 return;
2123 }
Brian Paulddc82ee2005-02-05 19:56:45 +00002124 }
2125
Ian Romanickeb5bc622015-11-12 09:11:20 -08002126 _mesa_renderbuffer_storage(ctx, rb, internalFormat, width, height, samples);
Brian Paulddc82ee2005-02-05 19:56:45 +00002127}
2128
Martin Peresbf11c192015-02-13 15:35:48 +02002129/**
2130 * Helper function used by _mesa_NamedRenderbufferStorage*().
2131 * samples will be NO_SAMPLES if called by a non-multisample function.
2132 */
2133static void
2134renderbuffer_storage_named(GLuint renderbuffer, GLenum internalFormat,
2135 GLsizei width, GLsizei height, GLsizei samples,
2136 const char *func)
2137{
2138 GET_CURRENT_CONTEXT(ctx);
2139
2140 if (MESA_VERBOSE & VERBOSE_API) {
2141 if (samples == NO_SAMPLES)
2142 _mesa_debug(ctx, "%s(%u, %s, %d, %d)\n",
2143 func, renderbuffer,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002144 _mesa_enum_to_string(internalFormat),
Martin Peresbf11c192015-02-13 15:35:48 +02002145 width, height);
2146 else
2147 _mesa_debug(ctx, "%s(%u, %s, %d, %d, %d)\n",
2148 func, renderbuffer,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002149 _mesa_enum_to_string(internalFormat),
Martin Peresbf11c192015-02-13 15:35:48 +02002150 width, height, samples);
2151 }
2152
2153 struct gl_renderbuffer *rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
2154 if (!rb || rb == &DummyRenderbuffer) {
2155 /* ID was reserved, but no real renderbuffer object made yet */
2156 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid renderbuffer %u)",
2157 func, renderbuffer);
2158 return;
2159 }
2160
2161 renderbuffer_storage(ctx, rb, internalFormat, width, height, samples, func);
2162}
2163
2164/**
2165 * Helper function used by _mesa_RenderbufferStorage() and
2166 * _mesa_RenderbufferStorageMultisample().
2167 * samples will be NO_SAMPLES if called by _mesa_RenderbufferStorage().
2168 */
2169static void
2170renderbuffer_storage_target(GLenum target, GLenum internalFormat,
2171 GLsizei width, GLsizei height, GLsizei samples,
2172 const char *func)
2173{
2174 GET_CURRENT_CONTEXT(ctx);
2175
2176 if (MESA_VERBOSE & VERBOSE_API) {
2177 if (samples == NO_SAMPLES)
2178 _mesa_debug(ctx, "%s(%s, %s, %d, %d)\n",
2179 func,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002180 _mesa_enum_to_string(target),
2181 _mesa_enum_to_string(internalFormat),
Martin Peresbf11c192015-02-13 15:35:48 +02002182 width, height);
2183 else
2184 _mesa_debug(ctx, "%s(%s, %s, %d, %d, %d)\n",
2185 func,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002186 _mesa_enum_to_string(target),
2187 _mesa_enum_to_string(internalFormat),
Martin Peresbf11c192015-02-13 15:35:48 +02002188 width, height, samples);
2189 }
2190
2191 if (target != GL_RENDERBUFFER_EXT) {
2192 _mesa_error(ctx, GL_INVALID_ENUM, "%s(target)", func);
2193 return;
2194 }
2195
2196 if (!ctx->CurrentRenderbuffer) {
2197 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(no renderbuffer bound)",
2198 func);
2199 return;
2200 }
2201
2202 renderbuffer_storage(ctx, ctx->CurrentRenderbuffer, internalFormat, width,
2203 height, samples, func);
2204}
2205
Brian Paul23c5b212010-05-28 13:33:03 -06002206
Kristian Høgsbergd1dc5b12010-02-11 17:42:30 -05002207void GLAPIENTRY
Brian Paul23c5b212010-05-28 13:33:03 -06002208_mesa_EGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image)
Kristian Høgsbergd1dc5b12010-02-11 17:42:30 -05002209{
Brian Paul51b79922010-02-24 11:57:26 -07002210 struct gl_renderbuffer *rb;
Kristian Høgsbergd1dc5b12010-02-11 17:42:30 -05002211 GET_CURRENT_CONTEXT(ctx);
Kristian Høgsbergd1dc5b12010-02-11 17:42:30 -05002212
Chia-I Wu2002e4d02010-04-06 17:46:17 +08002213 if (!ctx->Extensions.OES_EGL_image) {
2214 _mesa_error(ctx, GL_INVALID_OPERATION,
2215 "glEGLImageTargetRenderbufferStorageOES(unsupported)");
2216 return;
2217 }
2218
Kristian Høgsbergd1dc5b12010-02-11 17:42:30 -05002219 if (target != GL_RENDERBUFFER) {
Brian Paul23c5b212010-05-28 13:33:03 -06002220 _mesa_error(ctx, GL_INVALID_ENUM,
2221 "EGLImageTargetRenderbufferStorageOES");
Kristian Høgsbergd1dc5b12010-02-11 17:42:30 -05002222 return;
2223 }
2224
2225 rb = ctx->CurrentRenderbuffer;
2226 if (!rb) {
Brian Paul23c5b212010-05-28 13:33:03 -06002227 _mesa_error(ctx, GL_INVALID_OPERATION,
2228 "EGLImageTargetRenderbufferStorageOES");
Kristian Høgsbergd1dc5b12010-02-11 17:42:30 -05002229 return;
2230 }
2231
2232 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
2233
2234 ctx->Driver.EGLImageTargetRenderbufferStorage(ctx, rb, image);
2235}
Brian Paulddc82ee2005-02-05 19:56:45 +00002236
Brian Paul23c5b212010-05-28 13:33:03 -06002237
Brian Paul45e76d22009-10-08 20:27:27 -06002238/**
Paul Berry1a1db172012-11-06 08:57:59 -08002239 * Helper function for _mesa_GetRenderbufferParameteriv() and
2240 * _mesa_GetFramebufferAttachmentParameteriv()
Brian Paul45e76d22009-10-08 20:27:27 -06002241 * We have to be careful to respect the base format. For example, if a
2242 * renderbuffer/texture was created with internalFormat=GL_RGB but the
2243 * driver actually chose a GL_RGBA format, when the user queries ALPHA_SIZE
2244 * we need to return zero.
2245 */
2246static GLint
Mark Mueller71fe9432014-01-04 14:11:43 -08002247get_component_bits(GLenum pname, GLenum baseFormat, mesa_format format)
Brian Paul45e76d22009-10-08 20:27:27 -06002248{
Brian Paulf0b6e9a2011-11-23 15:33:45 -07002249 if (_mesa_base_format_has_channel(baseFormat, pname))
2250 return _mesa_get_format_bits(format, pname);
2251 else
Brian Paul45e76d22009-10-08 20:27:27 -06002252 return 0;
Brian Paul45e76d22009-10-08 20:27:27 -06002253}
2254
2255
2256
Brian Paul1864c7d2005-02-08 03:46:37 +00002257void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08002258_mesa_RenderbufferStorage(GLenum target, GLenum internalFormat,
Brian Paul4f3514e2009-01-22 15:19:56 -07002259 GLsizei width, GLsizei height)
2260{
Brian Paul722d9762009-01-20 16:58:49 -07002261 /* GL_ARB_fbo says calling this function is equivalent to calling
2262 * glRenderbufferStorageMultisample() with samples=0. We pass in
2263 * a token value here just for error reporting purposes.
2264 */
Martin Peresbf11c192015-02-13 15:35:48 +02002265 renderbuffer_storage_target(target, internalFormat, width, height,
2266 NO_SAMPLES, "glRenderbufferStorage");
Brian Paul4f3514e2009-01-22 15:19:56 -07002267}
2268
2269
2270void GLAPIENTRY
Brian Paul777a2ef2009-01-22 15:17:42 -07002271_mesa_RenderbufferStorageMultisample(GLenum target, GLsizei samples,
Brian Paul4f3514e2009-01-22 15:19:56 -07002272 GLenum internalFormat,
Brian Paul777a2ef2009-01-22 15:17:42 -07002273 GLsizei width, GLsizei height)
2274{
Martin Peresbf11c192015-02-13 15:35:48 +02002275 renderbuffer_storage_target(target, internalFormat, width, height,
2276 samples, "glRenderbufferStorageMultisample");
Brian Paul777a2ef2009-01-22 15:17:42 -07002277}
2278
Brian Paul23c5b212010-05-28 13:33:03 -06002279
2280/**
2281 * OpenGL ES version of glRenderBufferStorage.
2282 */
Kristian Høgsberg61d94dd2010-04-22 21:11:56 -04002283void GLAPIENTRY
2284_es_RenderbufferStorageEXT(GLenum target, GLenum internalFormat,
Martin Peres7bd8b482015-02-12 17:54:43 +02002285 GLsizei width, GLsizei height)
Kristian Høgsberg61d94dd2010-04-22 21:11:56 -04002286{
2287 switch (internalFormat) {
2288 case GL_RGB565:
2289 /* XXX this confuses GL_RENDERBUFFER_INTERNAL_FORMAT_OES */
2290 /* choose a closest format */
2291 internalFormat = GL_RGB5;
2292 break;
2293 default:
2294 break;
2295 }
Brian Paul777a2ef2009-01-22 15:17:42 -07002296
Martin Peresbf11c192015-02-13 15:35:48 +02002297 renderbuffer_storage_target(target, internalFormat, width, height, 0,
2298 "glRenderbufferStorageEXT");
2299}
2300
2301void GLAPIENTRY
2302_mesa_NamedRenderbufferStorage(GLuint renderbuffer, GLenum internalformat,
2303 GLsizei width, GLsizei height)
2304{
2305 /* GL_ARB_fbo says calling this function is equivalent to calling
2306 * glRenderbufferStorageMultisample() with samples=0. We pass in
2307 * a token value here just for error reporting purposes.
2308 */
2309 renderbuffer_storage_named(renderbuffer, internalformat, width, height,
2310 NO_SAMPLES, "glNamedRenderbufferStorage");
2311}
2312
2313void GLAPIENTRY
2314_mesa_NamedRenderbufferStorageMultisample(GLuint renderbuffer, GLsizei samples,
2315 GLenum internalformat,
2316 GLsizei width, GLsizei height)
2317{
2318 renderbuffer_storage_named(renderbuffer, internalformat, width, height,
2319 samples,
2320 "glNamedRenderbufferStorageMultisample");
Kristian Høgsberg61d94dd2010-04-22 21:11:56 -04002321}
Brian Paul777a2ef2009-01-22 15:17:42 -07002322
Brian Paul23c5b212010-05-28 13:33:03 -06002323
Martin Peres245e5c42015-02-13 15:46:55 +02002324static void
2325get_render_buffer_parameteriv(struct gl_context *ctx,
2326 struct gl_renderbuffer *rb, GLenum pname,
2327 GLint *params, const char *func)
Brian Paulddc82ee2005-02-05 19:56:45 +00002328{
Brian Paul800e5532009-11-02 15:39:39 -07002329 /* No need to flush here since we're just quering state which is
2330 * not effected by rendering.
2331 */
Brian Paul474f28e2005-10-08 14:41:17 +00002332
Brian Paul463642c2005-02-08 02:06:00 +00002333 switch (pname) {
2334 case GL_RENDERBUFFER_WIDTH_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07002335 *params = rb->Width;
Brian Paul463642c2005-02-08 02:06:00 +00002336 return;
2337 case GL_RENDERBUFFER_HEIGHT_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07002338 *params = rb->Height;
Brian Paul463642c2005-02-08 02:06:00 +00002339 return;
2340 case GL_RENDERBUFFER_INTERNAL_FORMAT_EXT:
Brian Paul722d9762009-01-20 16:58:49 -07002341 *params = rb->InternalFormat;
Brian Paul463642c2005-02-08 02:06:00 +00002342 return;
Brian Paul1b939532005-05-31 23:55:21 +00002343 case GL_RENDERBUFFER_RED_SIZE_EXT:
Brian Paul1b939532005-05-31 23:55:21 +00002344 case GL_RENDERBUFFER_GREEN_SIZE_EXT:
Brian Paul1b939532005-05-31 23:55:21 +00002345 case GL_RENDERBUFFER_BLUE_SIZE_EXT:
Brian Paul1b939532005-05-31 23:55:21 +00002346 case GL_RENDERBUFFER_ALPHA_SIZE_EXT:
Brian Paul1b939532005-05-31 23:55:21 +00002347 case GL_RENDERBUFFER_DEPTH_SIZE_EXT:
Brian Paul1b939532005-05-31 23:55:21 +00002348 case GL_RENDERBUFFER_STENCIL_SIZE_EXT:
Brian Paul45e76d22009-10-08 20:27:27 -06002349 *params = get_component_bits(pname, rb->_BaseFormat, rb->Format);
Brian Paul1b939532005-05-31 23:55:21 +00002350 break;
Brian Paul722d9762009-01-20 16:58:49 -07002351 case GL_RENDERBUFFER_SAMPLES:
Ian Romanickae86ebf2012-07-27 07:49:49 -07002352 if ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_framebuffer_object)
2353 || _mesa_is_gles3(ctx)) {
Brian Paul722d9762009-01-20 16:58:49 -07002354 *params = rb->NumSamples;
2355 break;
2356 }
2357 /* fallthrough */
Brian Paul463642c2005-02-08 02:06:00 +00002358 default:
Martin Peres245e5c42015-02-13 15:46:55 +02002359 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid pname=%s)", func,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002360 _mesa_enum_to_string(pname));
Martin Peres245e5c42015-02-13 15:46:55 +02002361 return;
2362 }
2363}
2364
2365
2366void GLAPIENTRY
2367_mesa_GetRenderbufferParameteriv(GLenum target, GLenum pname, GLint *params)
2368{
2369 GET_CURRENT_CONTEXT(ctx);
2370
2371 if (target != GL_RENDERBUFFER_EXT) {
Brian Paul463642c2005-02-08 02:06:00 +00002372 _mesa_error(ctx, GL_INVALID_ENUM,
2373 "glGetRenderbufferParameterivEXT(target)");
2374 return;
2375 }
Martin Peres245e5c42015-02-13 15:46:55 +02002376
2377 if (!ctx->CurrentRenderbuffer) {
2378 _mesa_error(ctx, GL_INVALID_OPERATION, "glGetRenderbufferParameterivEXT"
2379 "(no renderbuffer bound)");
2380 return;
2381 }
2382
2383 get_render_buffer_parameteriv(ctx, ctx->CurrentRenderbuffer, pname,
2384 params, "glGetRenderbufferParameteriv");
2385}
2386
2387
2388void GLAPIENTRY
2389_mesa_GetNamedRenderbufferParameteriv(GLuint renderbuffer, GLenum pname,
2390 GLint *params)
2391{
2392 GET_CURRENT_CONTEXT(ctx);
2393
2394 struct gl_renderbuffer *rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
2395 if (!rb || rb == &DummyRenderbuffer) {
2396 /* ID was reserved, but no real renderbuffer object made yet */
2397 _mesa_error(ctx, GL_INVALID_OPERATION, "glGetNamedRenderbufferParameteriv"
2398 "(invalid renderbuffer %i)", renderbuffer);
2399 return;
2400 }
2401
2402 get_render_buffer_parameteriv(ctx, rb, pname, params,
2403 "glGetNamedRenderbufferParameteriv");
Brian Paulddc82ee2005-02-05 19:56:45 +00002404}
2405
2406
Brian Paul1864c7d2005-02-08 03:46:37 +00002407GLboolean GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08002408_mesa_IsFramebuffer(GLuint framebuffer)
Brian Paulddc82ee2005-02-05 19:56:45 +00002409{
Brian Paulddc82ee2005-02-05 19:56:45 +00002410 GET_CURRENT_CONTEXT(ctx);
Brian Paulddc82ee2005-02-05 19:56:45 +00002411 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Brian Paulbc6cced2005-10-04 15:01:27 +00002412 if (framebuffer) {
Brian Paulea4fe662006-03-26 05:22:17 +00002413 struct gl_framebuffer *rb = _mesa_lookup_framebuffer(ctx, framebuffer);
Brian Paulbc6cced2005-10-04 15:01:27 +00002414 if (rb != NULL && rb != &DummyFramebuffer)
2415 return GL_TRUE;
2416 }
2417 return GL_FALSE;
Brian Paulddc82ee2005-02-05 19:56:45 +00002418}
2419
2420
briana492ab72009-11-10 15:33:31 -07002421/**
2422 * Check if any of the attachments of the given framebuffer are textures
2423 * (render to texture). Call ctx->Driver.RenderTexture() for such
2424 * attachments.
2425 */
Brian Paulea4fe662006-03-26 05:22:17 +00002426static void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04002427check_begin_texture_render(struct gl_context *ctx, struct gl_framebuffer *fb)
Brian Paulea4fe662006-03-26 05:22:17 +00002428{
2429 GLuint i;
Matt Turnerbfcdb842015-02-20 20:18:47 -08002430 assert(ctx->Driver.RenderTexture);
briana65b84d2009-11-10 18:02:03 -07002431
Brian Paul36ede892012-01-12 09:17:23 -07002432 if (_mesa_is_winsys_fbo(fb))
briana65b84d2009-11-10 18:02:03 -07002433 return; /* can't render to texture with winsys framebuffers */
2434
Brian Paulea4fe662006-03-26 05:22:17 +00002435 for (i = 0; i < BUFFER_COUNT; i++) {
2436 struct gl_renderbuffer_attachment *att = fb->Attachment + i;
Ian Romanickfb497132013-07-27 12:04:20 -07002437 if (att->Texture && att->Renderbuffer->TexImage
2438 && driver_RenderTexture_is_safe(att)) {
Brian Paulea4fe662006-03-26 05:22:17 +00002439 ctx->Driver.RenderTexture(ctx, fb, att);
2440 }
2441 }
2442}
2443
2444
Brian Paul0e31e022005-12-01 00:25:00 +00002445/**
2446 * Examine all the framebuffer's attachments to see if any are textures.
2447 * If so, call ctx->Driver.FinishRenderTexture() for each texture to
2448 * notify the device driver that the texture image may have changed.
2449 */
2450static void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04002451check_end_texture_render(struct gl_context *ctx, struct gl_framebuffer *fb)
Brian Paul0e31e022005-12-01 00:25:00 +00002452{
Eric Anholt7ccb26f2014-03-03 09:16:48 -08002453 /* Skip if we know NeedsFinishRenderTexture won't be set. */
2454 if (_mesa_is_winsys_fbo(fb) && !ctx->Driver.BindRenderbufferTexImage)
2455 return;
briana65b84d2009-11-10 18:02:03 -07002456
Brian Paul0e31e022005-12-01 00:25:00 +00002457 if (ctx->Driver.FinishRenderTexture) {
2458 GLuint i;
2459 for (i = 0; i < BUFFER_COUNT; i++) {
2460 struct gl_renderbuffer_attachment *att = fb->Attachment + i;
Eric Anholtc810e672013-05-10 12:36:43 -07002461 struct gl_renderbuffer *rb = att->Renderbuffer;
2462 if (rb && rb->NeedsFinishRenderTexture) {
Eric Anholta5b04522013-05-10 12:17:52 -07002463 ctx->Driver.FinishRenderTexture(ctx, rb);
Brian Paul0e31e022005-12-01 00:25:00 +00002464 }
2465 }
2466 }
2467}
2468
2469
Ian Romanick4a9522a2013-07-18 17:39:22 -07002470static void
2471bind_framebuffer(GLenum target, GLuint framebuffer, bool allow_user_names)
Brian Paulddc82ee2005-02-05 19:56:45 +00002472{
briane6f60d32009-11-10 15:47:34 -07002473 struct gl_framebuffer *newDrawFb, *newReadFb;
Brian Paul0bffb112005-11-08 14:45:48 +00002474 GLboolean bindReadBuf, bindDrawBuf;
Brian Paulddc82ee2005-02-05 19:56:45 +00002475 GET_CURRENT_CONTEXT(ctx);
2476
Brian Paul0bffb112005-11-08 14:45:48 +00002477 switch (target) {
Brian Paul0bffb112005-11-08 14:45:48 +00002478 case GL_DRAW_FRAMEBUFFER_EXT:
Brian Paul0bffb112005-11-08 14:45:48 +00002479 bindDrawBuf = GL_TRUE;
2480 bindReadBuf = GL_FALSE;
2481 break;
2482 case GL_READ_FRAMEBUFFER_EXT:
Brian Paul0bffb112005-11-08 14:45:48 +00002483 bindDrawBuf = GL_FALSE;
2484 bindReadBuf = GL_TRUE;
2485 break;
Brian Paul0bffb112005-11-08 14:45:48 +00002486 case GL_FRAMEBUFFER_EXT:
2487 bindDrawBuf = GL_TRUE;
2488 bindReadBuf = GL_TRUE;
2489 break;
2490 default:
Brian Pauleba4ff62005-09-06 21:22:16 +00002491 _mesa_error(ctx, GL_INVALID_ENUM, "glBindFramebufferEXT(target)");
Brian Paulddc82ee2005-02-05 19:56:45 +00002492 return;
2493 }
2494
Brian Paul3deaa012005-02-07 05:08:24 +00002495 if (framebuffer) {
Brian Paule4b23562005-05-04 20:11:35 +00002496 /* Binding a user-created framebuffer object */
briane6f60d32009-11-10 15:47:34 -07002497 newDrawFb = _mesa_lookup_framebuffer(ctx, framebuffer);
2498 if (newDrawFb == &DummyFramebuffer) {
Brian Paul923b6fc2005-02-08 04:08:56 +00002499 /* ID was reserved, but no real framebuffer object made yet */
briane6f60d32009-11-10 15:47:34 -07002500 newDrawFb = NULL;
Brian Paul1864c7d2005-02-08 03:46:37 +00002501 }
Ian Romanick4a9522a2013-07-18 17:39:22 -07002502 else if (!newDrawFb && !allow_user_names) {
Brian Paul1bc59bf2009-01-22 15:07:34 -07002503 /* All FBO IDs must be Gen'd */
2504 _mesa_error(ctx, GL_INVALID_OPERATION, "glBindFramebuffer(buffer)");
2505 return;
2506 }
2507
briane6f60d32009-11-10 15:47:34 -07002508 if (!newDrawFb) {
Martin Peres7bd8b482015-02-12 17:54:43 +02002509 /* create new framebuffer object */
2510 newDrawFb = ctx->Driver.NewFramebuffer(ctx, framebuffer);
2511 if (!newDrawFb) {
2512 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindFramebufferEXT");
2513 return;
2514 }
briane6f60d32009-11-10 15:47:34 -07002515 _mesa_HashInsert(ctx->Shared->FrameBuffers, framebuffer, newDrawFb);
Brian Paul3deaa012005-02-07 05:08:24 +00002516 }
briane6f60d32009-11-10 15:47:34 -07002517 newReadFb = newDrawFb;
Brian Paul3deaa012005-02-07 05:08:24 +00002518 }
Brian Paul463642c2005-02-08 02:06:00 +00002519 else {
Brian Paule4b23562005-05-04 20:11:35 +00002520 /* Binding the window system framebuffer (which was originally set
2521 * with MakeCurrent).
2522 */
briane6f60d32009-11-10 15:47:34 -07002523 newDrawFb = ctx->WinSysDrawBuffer;
2524 newReadFb = ctx->WinSysReadBuffer;
Brian Paul3deaa012005-02-07 05:08:24 +00002525 }
2526
Ian Romanickfed9b0e2015-11-13 10:46:40 -08002527 _mesa_bind_framebuffers(ctx,
2528 bindDrawBuf ? newDrawFb : ctx->DrawBuffer,
2529 bindReadBuf ? newReadFb : ctx->ReadBuffer);
2530}
2531
2532void
2533_mesa_bind_framebuffers(struct gl_context *ctx,
2534 struct gl_framebuffer *newDrawFb,
2535 struct gl_framebuffer *newReadFb)
2536{
2537 struct gl_framebuffer *const oldDrawFb = ctx->DrawBuffer;
2538 struct gl_framebuffer *const oldReadFb = ctx->ReadBuffer;
2539 const bool bindDrawBuf = oldDrawFb != newDrawFb;
2540 const bool bindReadBuf = oldReadFb != newReadFb;
2541
Matt Turnerbfcdb842015-02-20 20:18:47 -08002542 assert(newDrawFb);
2543 assert(newDrawFb != &DummyFramebuffer);
Brian Paul1864c7d2005-02-08 03:46:37 +00002544
Brian Paulea4fe662006-03-26 05:22:17 +00002545 /*
Brian Paul16144632009-02-26 14:49:24 -07002546 * OK, now bind the new Draw/Read framebuffers, if they're changing.
briana65b84d2009-11-10 18:02:03 -07002547 *
2548 * We also check if we're beginning and/or ending render-to-texture.
2549 * When a framebuffer with texture attachments is unbound, call
2550 * ctx->Driver.FinishRenderTexture().
2551 * When a framebuffer with texture attachments is bound, call
2552 * ctx->Driver.RenderTexture().
2553 *
2554 * Note that if the ReadBuffer has texture attachments we don't consider
2555 * that a render-to-texture case.
Brian Paulea4fe662006-03-26 05:22:17 +00002556 */
Brian Paul0bffb112005-11-08 14:45:48 +00002557 if (bindReadBuf) {
briana65b84d2009-11-10 18:02:03 -07002558 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
brianbc569cd2009-11-10 16:00:35 -07002559
briana65b84d2009-11-10 18:02:03 -07002560 /* check if old readbuffer was render-to-texture */
2561 check_end_texture_render(ctx, oldReadFb);
2562
2563 _mesa_reference_framebuffer(&ctx->ReadBuffer, newReadFb);
Brian Paul0bffb112005-11-08 14:45:48 +00002564 }
2565
2566 if (bindDrawBuf) {
briana65b84d2009-11-10 18:02:03 -07002567 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Brian32d86eb2007-08-16 18:52:48 +01002568
Eric Anholta1fd13f2012-02-10 12:05:16 -08002569 /* check if old framebuffer had any texture attachments */
2570 if (oldDrawFb)
briana65b84d2009-11-10 18:02:03 -07002571 check_end_texture_render(ctx, oldDrawFb);
brianbc569cd2009-11-10 16:00:35 -07002572
briana65b84d2009-11-10 18:02:03 -07002573 /* check if newly bound framebuffer has any texture attachments */
2574 check_begin_texture_render(ctx, newDrawFb);
2575
2576 _mesa_reference_framebuffer(&ctx->DrawBuffer, newDrawFb);
Brian Paul0bffb112005-11-08 14:45:48 +00002577 }
Brian Paul59e0faa2006-03-15 17:48:00 +00002578
Brian Paul16144632009-02-26 14:49:24 -07002579 if ((bindDrawBuf || bindReadBuf) && ctx->Driver.BindFramebuffer) {
Ian Romanickfed9b0e2015-11-13 10:46:40 -08002580 /* The few classic drivers that actually hook this function really only
2581 * want to know if the draw framebuffer changed.
2582 */
2583 ctx->Driver.BindFramebuffer(ctx,
2584 bindDrawBuf ? GL_FRAMEBUFFER : GL_READ_FRAMEBUFFER,
2585 newDrawFb, newReadFb);
Brian Paul59e0faa2006-03-15 17:48:00 +00002586 }
Brian Paulddc82ee2005-02-05 19:56:45 +00002587}
2588
Tomasz Lis9f07ca12013-07-16 20:57:26 +02002589void GLAPIENTRY
Ian Romanick4a9522a2013-07-18 17:39:22 -07002590_mesa_BindFramebuffer(GLenum target, GLuint framebuffer)
Tomasz Lis9f07ca12013-07-16 20:57:26 +02002591{
Ian Romanick4a9522a2013-07-18 17:39:22 -07002592 GET_CURRENT_CONTEXT(ctx);
2593
2594 /* OpenGL ES glBindFramebuffer and glBindFramebufferOES use this same entry
2595 * point, but they allow the use of user-generated names.
2596 */
2597 bind_framebuffer(target, framebuffer, _mesa_is_gles(ctx));
Tomasz Lis9f07ca12013-07-16 20:57:26 +02002598}
2599
Brian Paulc1377ed2014-03-22 10:31:58 -06002600
Ian Romanick4a9522a2013-07-18 17:39:22 -07002601void GLAPIENTRY
2602_mesa_BindFramebufferEXT(GLenum target, GLuint framebuffer)
2603{
2604 /* This function should not be in the dispatch table for core profile /
2605 * OpenGL 3.1, so execution should never get here in those cases -- no
2606 * need for an explicit test.
2607 */
2608 bind_framebuffer(target, framebuffer, true);
2609}
Brian Paulddc82ee2005-02-05 19:56:45 +00002610
Brian Paulc1377ed2014-03-22 10:31:58 -06002611
Brian Paul1864c7d2005-02-08 03:46:37 +00002612void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08002613_mesa_DeleteFramebuffers(GLsizei n, const GLuint *framebuffers)
Brian Paulddc82ee2005-02-05 19:56:45 +00002614{
2615 GLint i;
2616 GET_CURRENT_CONTEXT(ctx);
2617
Eduardo Lima Mitevf77a4732014-12-11 23:34:17 +01002618 if (n < 0) {
2619 _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteFramebuffers(n < 0)");
2620 return;
2621 }
2622
Brian Paul800e5532009-11-02 15:39:39 -07002623 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Brian Paulddc82ee2005-02-05 19:56:45 +00002624
2625 for (i = 0; i < n; i++) {
Brian Paul2c6f9112005-02-24 05:47:06 +00002626 if (framebuffers[i] > 0) {
Martin Peres7bd8b482015-02-12 17:54:43 +02002627 struct gl_framebuffer *fb;
2628 fb = _mesa_lookup_framebuffer(ctx, framebuffers[i]);
2629 if (fb) {
Matt Turnerbfcdb842015-02-20 20:18:47 -08002630 assert(fb == &DummyFramebuffer || fb->Name == framebuffers[i]);
Brian Paul91802fd2005-10-04 16:01:02 +00002631
2632 /* check if deleting currently bound framebuffer object */
Ian Romanick764be9f2013-11-13 14:00:06 -08002633 if (fb == ctx->DrawBuffer) {
2634 /* bind default */
Matt Turnerbfcdb842015-02-20 20:18:47 -08002635 assert(fb->RefCount >= 2);
Ian Romanick764be9f2013-11-13 14:00:06 -08002636 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, 0);
2637 }
2638 if (fb == ctx->ReadBuffer) {
2639 /* bind default */
Matt Turnerbfcdb842015-02-20 20:18:47 -08002640 assert(fb->RefCount >= 2);
Ian Romanick764be9f2013-11-13 14:00:06 -08002641 _mesa_BindFramebuffer(GL_READ_FRAMEBUFFER, 0);
2642 }
Brian Paul91802fd2005-10-04 16:01:02 +00002643
Martin Peres7bd8b482015-02-12 17:54:43 +02002644 /* remove from hash table immediately, to free the ID */
2645 _mesa_HashRemove(ctx->Shared->FrameBuffers, framebuffers[i]);
Brian Paulddc82ee2005-02-05 19:56:45 +00002646
Brian Paul1864c7d2005-02-08 03:46:37 +00002647 if (fb != &DummyFramebuffer) {
2648 /* But the object will not be freed until it's no longer
2649 * bound in any context.
2650 */
Brian Pauld5229442009-02-09 08:30:55 -07002651 _mesa_reference_framebuffer(&fb, NULL);
Martin Peres7bd8b482015-02-12 17:54:43 +02002652 }
2653 }
Brian Paulddc82ee2005-02-05 19:56:45 +00002654 }
2655 }
2656}
2657
2658
Laura Ekstrandf868de72015-01-23 14:54:48 -08002659/**
2660 * This is the implementation for glGenFramebuffers and glCreateFramebuffers.
2661 * It is not exposed to the rest of Mesa to encourage the use of
2662 * nameless buffers in driver internals.
2663 */
2664static void
2665create_framebuffers(GLsizei n, GLuint *framebuffers, bool dsa)
Brian Paulddc82ee2005-02-05 19:56:45 +00002666{
2667 GET_CURRENT_CONTEXT(ctx);
2668 GLuint first;
2669 GLint i;
Laura Ekstrandf868de72015-01-23 14:54:48 -08002670 struct gl_framebuffer *fb;
2671
2672 const char *func = dsa ? "glCreateFramebuffers" : "glGenFramebuffers";
Brian Paulddc82ee2005-02-05 19:56:45 +00002673
Brian Paulddc82ee2005-02-05 19:56:45 +00002674 if (n < 0) {
Laura Ekstrandf868de72015-01-23 14:54:48 -08002675 _mesa_error(ctx, GL_INVALID_VALUE, "%s(n < 0)", func);
Brian Paulddc82ee2005-02-05 19:56:45 +00002676 return;
2677 }
2678
2679 if (!framebuffers)
2680 return;
2681
2682 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->FrameBuffers, n);
2683
2684 for (i = 0; i < n; i++) {
Brian Paulddc82ee2005-02-05 19:56:45 +00002685 GLuint name = first + i;
Brian Paulf0bbbf62005-02-09 03:50:30 +00002686 framebuffers[i] = name;
Laura Ekstrandf868de72015-01-23 14:54:48 -08002687
2688 if (dsa) {
2689 fb = ctx->Driver.NewFramebuffer(ctx, framebuffers[i]);
2690 if (!fb) {
2691 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s", func);
2692 return;
2693 }
2694 }
2695 else
2696 fb = &DummyFramebuffer;
2697
Brian Pauld129ea72014-03-01 10:21:07 -07002698 mtx_lock(&ctx->Shared->Mutex);
Laura Ekstrandf868de72015-01-23 14:54:48 -08002699 _mesa_HashInsert(ctx->Shared->FrameBuffers, name, fb);
Brian Pauld129ea72014-03-01 10:21:07 -07002700 mtx_unlock(&ctx->Shared->Mutex);
Brian Paulddc82ee2005-02-05 19:56:45 +00002701 }
2702}
2703
2704
Laura Ekstrandf868de72015-01-23 14:54:48 -08002705void GLAPIENTRY
2706_mesa_GenFramebuffers(GLsizei n, GLuint *framebuffers)
2707{
2708 create_framebuffers(n, framebuffers, false);
2709}
2710
2711
2712void GLAPIENTRY
2713_mesa_CreateFramebuffers(GLsizei n, GLuint *framebuffers)
2714{
2715 create_framebuffers(n, framebuffers, true);
2716}
2717
2718
Laura Ekstrandf93f9592015-01-29 13:15:37 -08002719GLenum
2720_mesa_check_framebuffer_status(struct gl_context *ctx,
2721 struct gl_framebuffer *buffer)
Brian Paulddc82ee2005-02-05 19:56:45 +00002722{
Brian Paule4b23562005-05-04 20:11:35 +00002723 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);
Brian Paulddc82ee2005-02-05 19:56:45 +00002724
Brian Paul36ede892012-01-12 09:17:23 -07002725 if (_mesa_is_winsys_fbo(buffer)) {
Matt Turner8dd15e62013-07-26 16:36:19 -07002726 /* EGL_KHR_surfaceless_context allows the winsys FBO to be incomplete. */
2727 if (buffer != &IncompleteFramebuffer) {
2728 return GL_FRAMEBUFFER_COMPLETE_EXT;
2729 } else {
2730 return GL_FRAMEBUFFER_UNDEFINED;
2731 }
Brian Paulf0bbbf62005-02-09 03:50:30 +00002732 }
2733
Brian Paul800e5532009-11-02 15:39:39 -07002734 /* No need to flush here */
Brian Paul474f28e2005-10-08 14:41:17 +00002735
Brian Paul72966362009-01-21 16:28:38 -07002736 if (buffer->_Status != GL_FRAMEBUFFER_COMPLETE) {
2737 _mesa_test_framebuffer_completeness(ctx, buffer);
2738 }
2739
Brian Paul0bffb112005-11-08 14:45:48 +00002740 return buffer->_Status;
Brian Paulddc82ee2005-02-05 19:56:45 +00002741}
2742
Brian Paul45bd5c42011-12-16 08:44:43 -07002743
Laura Ekstrandf93f9592015-01-29 13:15:37 -08002744GLenum GLAPIENTRY
2745_mesa_CheckFramebufferStatus(GLenum target)
2746{
2747 struct gl_framebuffer *fb;
2748 GET_CURRENT_CONTEXT(ctx);
2749
2750 if (MESA_VERBOSE & VERBOSE_API)
2751 _mesa_debug(ctx, "glCheckFramebufferStatus(%s)\n",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002752 _mesa_enum_to_string(target));
Laura Ekstrandf93f9592015-01-29 13:15:37 -08002753
2754 fb = get_framebuffer_target(ctx, target);
2755 if (!fb) {
2756 _mesa_error(ctx, GL_INVALID_ENUM,
2757 "glCheckFramebufferStatus(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002758 _mesa_enum_to_string(target));
Laura Ekstrandf93f9592015-01-29 13:15:37 -08002759 return 0;
2760 }
2761
2762 return _mesa_check_framebuffer_status(ctx, fb);
2763}
2764
2765
2766GLenum GLAPIENTRY
2767_mesa_CheckNamedFramebufferStatus(GLuint framebuffer, GLenum target)
2768{
2769 struct gl_framebuffer *fb;
2770 GET_CURRENT_CONTEXT(ctx);
2771
2772 /* Validate the target (for conformance's sake) and grab a reference to the
2773 * default framebuffer in case framebuffer = 0.
2774 * Section 9.4 Framebuffer Completeness of the OpenGL 4.5 core spec
2775 * (30.10.2014, PDF page 336) says:
2776 * "If framebuffer is zero, then the status of the default read or
2777 * draw framebuffer (as determined by target) is returned."
2778 */
2779 switch (target) {
2780 case GL_DRAW_FRAMEBUFFER:
2781 case GL_FRAMEBUFFER:
2782 fb = ctx->WinSysDrawBuffer;
2783 break;
2784 case GL_READ_FRAMEBUFFER:
2785 fb = ctx->WinSysReadBuffer;
2786 break;
2787 default:
2788 _mesa_error(ctx, GL_INVALID_ENUM,
2789 "glCheckNamedFramebufferStatus(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002790 _mesa_enum_to_string(target));
Laura Ekstrandf93f9592015-01-29 13:15:37 -08002791 return 0;
2792 }
2793
2794 if (framebuffer) {
2795 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer,
2796 "glCheckNamedFramebufferStatus");
2797 if (!fb)
2798 return 0;
2799 }
2800
2801 return _mesa_check_framebuffer_status(ctx, fb);
2802}
2803
2804
Chad Versacebf8ad172011-11-10 10:19:20 -08002805/**
2806 * Replicate the src attachment point. Used by framebuffer_texture() when
2807 * the same texture is attached at GL_DEPTH_ATTACHMENT and
2808 * GL_STENCIL_ATTACHMENT.
2809 */
2810static void
2811reuse_framebuffer_texture_attachment(struct gl_framebuffer *fb,
2812 gl_buffer_index dst,
2813 gl_buffer_index src)
2814{
2815 struct gl_renderbuffer_attachment *dst_att = &fb->Attachment[dst];
2816 struct gl_renderbuffer_attachment *src_att = &fb->Attachment[src];
Brian Paulddc82ee2005-02-05 19:56:45 +00002817
Chad Versacebf8ad172011-11-10 10:19:20 -08002818 assert(src_att->Texture != NULL);
Brian Paul45bd5c42011-12-16 08:44:43 -07002819 assert(src_att->Renderbuffer != NULL);
Chad Versacebf8ad172011-11-10 10:19:20 -08002820
2821 _mesa_reference_texobj(&dst_att->Texture, src_att->Texture);
2822 _mesa_reference_renderbuffer(&dst_att->Renderbuffer, src_att->Renderbuffer);
2823 dst_att->Type = src_att->Type;
2824 dst_att->Complete = src_att->Complete;
2825 dst_att->TextureLevel = src_att->TextureLevel;
2826 dst_att->Zoffset = src_att->Zoffset;
Dave Airlie35859d52016-02-29 17:16:10 +10002827 dst_att->Layered = src_att->Layered;
Chad Versacebf8ad172011-11-10 10:19:20 -08002828}
Brian Paulddc82ee2005-02-05 19:56:45 +00002829
Brian Paul45bd5c42011-12-16 08:44:43 -07002830
Brian Paulddc82ee2005-02-05 19:56:45 +00002831/**
Laura Ekstranda245e3b2015-01-27 16:11:52 -08002832 * Common code called by gl*FramebufferTexture*() to retrieve the correct
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002833 * texture object pointer.
Laura Ekstranda245e3b2015-01-27 16:11:52 -08002834 *
2835 * \param texObj where the pointer to the texture object is returned. Note
2836 * that a successful call may return texObj = NULL.
2837 *
2838 * \return true if no errors, false if errors
Brian Paulddc82ee2005-02-05 19:56:45 +00002839 */
Laura Ekstranda245e3b2015-01-27 16:11:52 -08002840static bool
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002841get_texture_for_framebuffer(struct gl_context *ctx, GLuint texture,
2842 bool layered, const char *caller,
Laura Ekstranda245e3b2015-01-27 16:11:52 -08002843 struct gl_texture_object **texObj)
Brian Paulddc82ee2005-02-05 19:56:45 +00002844{
Laura Ekstranda245e3b2015-01-27 16:11:52 -08002845 *texObj = NULL; /* This will get returned if texture = 0. */
Brian Paulea4fe662006-03-26 05:22:17 +00002846
Laura Ekstranda9f73f72015-03-02 13:41:13 -08002847 if (!texture)
2848 return true;
Ian Romanickb0fe0d82007-05-15 13:42:25 -07002849
Laura Ekstranda9f73f72015-03-02 13:41:13 -08002850 *texObj = _mesa_lookup_texture(ctx, texture);
2851 if (*texObj == NULL || (*texObj)->Target == 0) {
2852 /* Can't render to a non-existent texture object.
2853 *
2854 * The OpenGL 4.5 core spec (02.02.2015) in Section 9.2 Binding and
2855 * Managing Framebuffer Objects specifies a different error
2856 * depending upon the calling function (PDF pages 325-328).
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002857 * *FramebufferTexture (where layered = GL_TRUE) throws invalid
Laura Ekstranda9f73f72015-03-02 13:41:13 -08002858 * value, while the other commands throw invalid operation (where
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002859 * layered = GL_FALSE).
Laura Ekstranda9f73f72015-03-02 13:41:13 -08002860 */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002861 const GLenum error = layered ? GL_INVALID_VALUE :
Laura Ekstranda9f73f72015-03-02 13:41:13 -08002862 GL_INVALID_OPERATION;
2863 _mesa_error(ctx, error,
2864 "%s(non-existent texture %u)", caller, texture);
2865 return false;
2866 }
2867
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002868 return true;
2869}
2870
2871
2872/**
2873 * Common code called by gl*FramebufferTexture() to verify the texture target
2874 * and decide whether or not the attachment should truly be considered
2875 * layered.
2876 *
2877 * \param layered true if attachment should be considered layered, false if
2878 * not
2879 *
2880 * \return true if no errors, false if errors
2881 */
2882static bool
2883check_layered_texture_target(struct gl_context *ctx, GLenum target,
2884 const char *caller, GLboolean *layered)
2885{
2886 *layered = GL_TRUE;
2887
Laura Ekstrand80e9bf22015-03-02 16:52:55 -08002888 switch (target) {
2889 case GL_TEXTURE_3D:
2890 case GL_TEXTURE_1D_ARRAY_EXT:
2891 case GL_TEXTURE_2D_ARRAY_EXT:
2892 case GL_TEXTURE_CUBE_MAP:
2893 case GL_TEXTURE_CUBE_MAP_ARRAY:
2894 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
2895 return true;
2896 case GL_TEXTURE_1D:
2897 case GL_TEXTURE_2D:
2898 case GL_TEXTURE_RECTANGLE:
2899 case GL_TEXTURE_2D_MULTISAMPLE:
2900 /* These texture types are valid to pass to
2901 * glFramebufferTexture(), but since they aren't layered, it
2902 * is equivalent to calling glFramebufferTexture{1D,2D}().
2903 */
2904 *layered = GL_FALSE;
2905 return true;
2906 }
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002907
Laura Ekstrand80e9bf22015-03-02 16:52:55 -08002908 _mesa_error(ctx, GL_INVALID_OPERATION,
2909 "%s(invalid texture target %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002910 _mesa_enum_to_string(target));
Laura Ekstrand80e9bf22015-03-02 16:52:55 -08002911 return false;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002912}
2913
2914
2915/**
2916 * Common code called by gl*FramebufferTextureLayer() to verify the texture
2917 * target.
2918 *
2919 * \return true if no errors, false if errors
2920 */
2921static bool
2922check_texture_target(struct gl_context *ctx, GLenum target,
2923 const char *caller)
2924{
Fredrik Höglund03420ea2015-04-29 19:44:06 +02002925 /* We're being called by glFramebufferTextureLayer().
2926 * The only legal texture types for that function are 3D,
2927 * cube-map, and 1D/2D/cube-map array textures.
Ian Romanick832ea232015-05-20 17:19:29 -07002928 *
2929 * We don't need to check for GL_ARB_texture_cube_map_array because the
2930 * application wouldn't have been able to create a texture with a
2931 * GL_TEXTURE_CUBE_MAP_ARRAY target if the extension were not enabled.
Laura Ekstrand80e9bf22015-03-02 16:52:55 -08002932 */
2933 switch (target) {
2934 case GL_TEXTURE_3D:
2935 case GL_TEXTURE_1D_ARRAY:
2936 case GL_TEXTURE_2D_ARRAY:
2937 case GL_TEXTURE_CUBE_MAP_ARRAY:
2938 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
2939 return true;
Fredrik Höglund03420ea2015-04-29 19:44:06 +02002940 case GL_TEXTURE_CUBE_MAP:
Ian Romanick832ea232015-05-20 17:19:29 -07002941 /* We don't need to check the extension (GL_ARB_direct_state_access) or
2942 * GL version (4.5) for GL_TEXTURE_CUBE_MAP because DSA is always
2943 * enabled in core profile. This can be called from
2944 * _mesa_FramebufferTextureLayer in compatibility profile (OpenGL 3.0),
2945 * so we do have to check the profile.
Fredrik Höglund03420ea2015-04-29 19:44:06 +02002946 */
Ian Romanick832ea232015-05-20 17:19:29 -07002947 return ctx->API == API_OPENGL_CORE;
Laura Ekstrand80e9bf22015-03-02 16:52:55 -08002948 }
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002949
Laura Ekstrand80e9bf22015-03-02 16:52:55 -08002950 _mesa_error(ctx, GL_INVALID_OPERATION,
2951 "%s(invalid texture target %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07002952 _mesa_enum_to_string(target));
Laura Ekstrand80e9bf22015-03-02 16:52:55 -08002953 return false;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002954}
2955
2956
2957/**
2958 * Common code called by glFramebufferTexture*D() to verify the texture
2959 * target.
2960 *
2961 * \return true if no errors, false if errors
2962 */
2963static bool
2964check_textarget(struct gl_context *ctx, int dims, GLenum target,
2965 GLenum textarget, const char *caller)
2966{
2967 bool err = false;
2968
2969 switch (dims) {
2970 case 1:
2971 switch (textarget) {
2972 case GL_TEXTURE_1D:
2973 break;
2974 case GL_TEXTURE_1D_ARRAY:
2975 err = !ctx->Extensions.EXT_texture_array;
2976 break;
2977 default:
2978 err = true;
Brian Paulea4fe662006-03-26 05:22:17 +00002979 }
Laura Ekstrand085c67d2015-03-02 16:48:59 -08002980 break;
2981 case 2:
2982 switch (textarget) {
2983 case GL_TEXTURE_2D:
2984 break;
2985 case GL_TEXTURE_RECTANGLE:
2986 err = _mesa_is_gles(ctx)
2987 || !ctx->Extensions.NV_texture_rectangle;
2988 break;
2989 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
2990 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
2991 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
2992 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
2993 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
2994 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
2995 err = !ctx->Extensions.ARB_texture_cube_map;
2996 break;
2997 case GL_TEXTURE_2D_ARRAY:
2998 err = (_mesa_is_gles(ctx) && ctx->Version < 30)
2999 || !ctx->Extensions.EXT_texture_array;
3000 break;
3001 case GL_TEXTURE_2D_MULTISAMPLE:
3002 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
Marta Lofstedt08f2dfe2015-08-10 13:48:11 +03003003 err = (_mesa_is_gles(ctx) ||
3004 !ctx->Extensions.ARB_texture_multisample) &&
3005 !_mesa_is_gles31(ctx);
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003006 break;
3007 default:
3008 err = true;
3009 }
3010 break;
3011 case 3:
3012 if (textarget != GL_TEXTURE_3D)
3013 err = true;
3014 break;
3015 default:
3016 err = true;
Laura Ekstranda602b212015-03-02 13:43:09 -08003017 }
Ian Romanickb0fe0d82007-05-15 13:42:25 -07003018
Laura Ekstranda602b212015-03-02 13:43:09 -08003019 if (err) {
3020 _mesa_error(ctx, GL_INVALID_OPERATION,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003021 "%s(invalid textarget %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003022 caller, _mesa_enum_to_string(textarget));
Laura Ekstranda602b212015-03-02 13:43:09 -08003023 return false;
3024 }
3025
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003026 /* Make sure textarget is consistent with the texture's type */
3027 err = (target == GL_TEXTURE_CUBE_MAP) ?
3028 !_mesa_is_cube_face(textarget): (target != textarget);
3029
3030 if (err) {
3031 _mesa_error(ctx, GL_INVALID_OPERATION,
3032 "%s(mismatched texture target)", caller);
3033 return false;
3034 }
3035
3036 return true;
3037}
3038
3039
3040/**
3041 * Common code called by gl*FramebufferTextureLayer() and
3042 * glFramebufferTexture3D() to validate the layer.
3043 *
3044 * \return true if no errors, false if errors
3045 */
3046static bool
3047check_layer(struct gl_context *ctx, GLenum target, GLint layer,
3048 const char *caller)
3049{
Laura Ekstranda602b212015-03-02 13:43:09 -08003050 /* Page 306 (page 328 of the PDF) of the OpenGL 4.5 (Core Profile)
3051 * spec says:
3052 *
3053 * "An INVALID_VALUE error is generated if texture is non-zero
3054 * and layer is negative."
3055 */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003056 if (layer < 0) {
Laura Ekstranda602b212015-03-02 13:43:09 -08003057 _mesa_error(ctx, GL_INVALID_VALUE,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003058 "%s(layer %u < 0)", caller, layer);
Laura Ekstranda602b212015-03-02 13:43:09 -08003059 return false;
3060 }
3061
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003062 if (target == GL_TEXTURE_3D) {
Laura Ekstranda602b212015-03-02 13:43:09 -08003063 const GLuint maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1);
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003064 if (layer >= maxSize) {
Fredrik Höglund8ba7ad82015-05-09 15:31:45 +02003065 _mesa_error(ctx, GL_INVALID_VALUE,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003066 "%s(invalid layer %u)", caller, layer);
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003067 return false;
Fredrik Höglund8ba7ad82015-05-09 15:31:45 +02003068 }
Laura Ekstranda602b212015-03-02 13:43:09 -08003069 }
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003070 else if ((target == GL_TEXTURE_1D_ARRAY) ||
3071 (target == GL_TEXTURE_2D_ARRAY) ||
3072 (target == GL_TEXTURE_CUBE_MAP_ARRAY) ||
3073 (target == GL_TEXTURE_2D_MULTISAMPLE_ARRAY)) {
3074 if (layer >= ctx->Const.MaxArrayTextureLayers) {
Ian Romanickb0fe0d82007-05-15 13:42:25 -07003075 _mesa_error(ctx, GL_INVALID_VALUE,
Laura Ekstranda602b212015-03-02 13:43:09 -08003076 "%s(layer %u >= GL_MAX_ARRAY_TEXTURE_LAYERS)",
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003077 caller, layer);
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003078 return false;
Ian Romanickb0fe0d82007-05-15 13:42:25 -07003079 }
Laura Ekstranda602b212015-03-02 13:43:09 -08003080 }
Fredrik Höglund03420ea2015-04-29 19:44:06 +02003081 else if (target == GL_TEXTURE_CUBE_MAP) {
3082 if (layer >= 6) {
3083 _mesa_error(ctx, GL_INVALID_VALUE,
3084 "%s(layer %u >= 6)", caller, layer);
3085 return false;
3086 }
3087 }
Laura Ekstranda602b212015-03-02 13:43:09 -08003088
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003089 return true;
3090}
3091
3092
3093/**
3094 * Common code called by all gl*FramebufferTexture*() entry points to verify
3095 * the level.
3096 *
3097 * \return true if no errors, false if errors
3098 */
3099static bool
3100check_level(struct gl_context *ctx, GLenum target, GLint level,
3101 const char *caller)
3102{
Laura Ekstranda602b212015-03-02 13:43:09 -08003103 if ((level < 0) ||
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003104 (level >= _mesa_max_texture_levels(ctx, target))) {
Laura Ekstranda602b212015-03-02 13:43:09 -08003105 _mesa_error(ctx, GL_INVALID_VALUE,
3106 "%s(invalid level %d)", caller, level);
3107 return false;
3108 }
Brian Paulea4fe662006-03-26 05:22:17 +00003109
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003110 return true;
3111}
3112
3113
3114void
3115_mesa_framebuffer_texture(struct gl_context *ctx, struct gl_framebuffer *fb,
3116 GLenum attachment,
3117 struct gl_texture_object *texObj, GLenum textarget,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003118 GLint level, GLuint layer, GLboolean layered,
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003119 const char *caller)
3120{
3121 struct gl_renderbuffer_attachment *att;
3122
3123 /* The window-system framebuffer object is immutable */
3124 if (_mesa_is_winsys_fbo(fb)) {
3125 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(window-system framebuffer)",
3126 caller);
3127 return;
3128 }
3129
3130 /* Not a hash lookup, so we can afford to get the attachment here. */
Brian Paul94512812014-02-01 08:58:43 -07003131 att = get_attachment(ctx, fb, attachment);
Brian Paul3deaa012005-02-07 05:08:24 +00003132 if (att == NULL) {
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003133 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid attachment %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003134 _mesa_enum_to_string(attachment));
Brian Paul3deaa012005-02-07 05:08:24 +00003135 return;
3136 }
3137
Brian Paul800e5532009-11-02 15:39:39 -07003138 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
Brian Paul474f28e2005-10-08 14:41:17 +00003139
Brian Pauld129ea72014-03-01 10:21:07 -07003140 mtx_lock(&fb->Mutex);
Brian Paulea4fe662006-03-26 05:22:17 +00003141 if (texObj) {
Chad Versacebf8ad172011-11-10 10:19:20 -08003142 if (attachment == GL_DEPTH_ATTACHMENT &&
Paul Berryb9819a02012-04-13 21:50:08 -07003143 texObj == fb->Attachment[BUFFER_STENCIL].Texture &&
3144 level == fb->Attachment[BUFFER_STENCIL].TextureLevel &&
3145 _mesa_tex_target_to_face(textarget) ==
3146 fb->Attachment[BUFFER_STENCIL].CubeMapFace &&
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003147 layer == fb->Attachment[BUFFER_STENCIL].Zoffset) {
Martin Peres7bd8b482015-02-12 17:54:43 +02003148 /* The texture object is already attached to the stencil attachment
3149 * point. Don't create a new renderbuffer; just reuse the stencil
3150 * attachment's. This is required to prevent a GL error in
3151 * glGetFramebufferAttachmentParameteriv(GL_DEPTH_STENCIL).
3152 */
3153 reuse_framebuffer_texture_attachment(fb, BUFFER_DEPTH,
3154 BUFFER_STENCIL);
Chad Versacebf8ad172011-11-10 10:19:20 -08003155 } else if (attachment == GL_STENCIL_ATTACHMENT &&
Martin Peres7bd8b482015-02-12 17:54:43 +02003156 texObj == fb->Attachment[BUFFER_DEPTH].Texture &&
Paul Berryb9819a02012-04-13 21:50:08 -07003157 level == fb->Attachment[BUFFER_DEPTH].TextureLevel &&
3158 _mesa_tex_target_to_face(textarget) ==
3159 fb->Attachment[BUFFER_DEPTH].CubeMapFace &&
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003160 layer == fb->Attachment[BUFFER_DEPTH].Zoffset) {
Martin Peres7bd8b482015-02-12 17:54:43 +02003161 /* As above, but with depth and stencil transposed. */
3162 reuse_framebuffer_texture_attachment(fb, BUFFER_STENCIL,
3163 BUFFER_DEPTH);
Chad Versacebf8ad172011-11-10 10:19:20 -08003164 } else {
Martin Peres7bd8b482015-02-12 17:54:43 +02003165 set_texture_attachment(ctx, fb, att, texObj, textarget,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003166 level, layer, layered);
Laura Ekstrand8f78c682015-01-27 14:11:13 -08003167
Martin Peres7bd8b482015-02-12 17:54:43 +02003168 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
3169 /* Above we created a new renderbuffer and attached it to the
3170 * depth attachment point. Now attach it to the stencil attachment
3171 * point too.
3172 */
3173 assert(att == &fb->Attachment[BUFFER_DEPTH]);
3174 reuse_framebuffer_texture_attachment(fb,BUFFER_STENCIL,
3175 BUFFER_DEPTH);
3176 }
Chad Versacebf8ad172011-11-10 10:19:20 -08003177 }
3178
Brian Paul2897cee2009-01-29 09:20:18 -07003179 /* Set the render-to-texture flag. We'll check this flag in
3180 * glTexImage() and friends to determine if we need to revalidate
3181 * any FBOs that might be rendering into this texture.
3182 * This flag never gets cleared since it's non-trivial to determine
3183 * when all FBOs might be done rendering to this texture. That's OK
3184 * though since it's uncommon to render to a texture then repeatedly
3185 * call glTexImage() to change images in the texture.
3186 */
3187 texObj->_RenderToTexture = GL_TRUE;
Brian Paul3deaa012005-02-07 05:08:24 +00003188 }
3189 else {
Brian Paul94512812014-02-01 08:58:43 -07003190 remove_attachment(ctx, att);
Chad Versacebf8ad172011-11-10 10:19:20 -08003191 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
Martin Peres7bd8b482015-02-12 17:54:43 +02003192 assert(att == &fb->Attachment[BUFFER_DEPTH]);
3193 remove_attachment(ctx, &fb->Attachment[BUFFER_STENCIL]);
Chad Versacebf8ad172011-11-10 10:19:20 -08003194 }
Brian Paul3deaa012005-02-07 05:08:24 +00003195 }
Brian Paul72966362009-01-21 16:28:38 -07003196
3197 invalidate_framebuffer(fb);
3198
Brian Pauld129ea72014-03-01 10:21:07 -07003199 mtx_unlock(&fb->Mutex);
Brian Paulea4fe662006-03-26 05:22:17 +00003200}
3201
3202
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003203static void
3204framebuffer_texture_with_dims(int dims, GLenum target,
3205 GLenum attachment, GLenum textarget,
3206 GLuint texture, GLint level, GLint layer,
3207 const char *caller)
Brian Paulea4fe662006-03-26 05:22:17 +00003208{
Ian Romanickb0fe0d82007-05-15 13:42:25 -07003209 GET_CURRENT_CONTEXT(ctx);
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003210 struct gl_framebuffer *fb;
3211 struct gl_texture_object *texObj;
Ian Romanickb0fe0d82007-05-15 13:42:25 -07003212
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003213 /* Get the framebuffer object */
3214 fb = get_framebuffer_target(ctx, target);
3215 if (!fb) {
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003216 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003217 _mesa_enum_to_string(target));
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003218 return;
3219 }
3220
3221 /* Get the texture object */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003222 if (!get_texture_for_framebuffer(ctx, texture, false, caller, &texObj))
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003223 return;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003224
3225 if (texObj) {
3226 if (!check_textarget(ctx, dims, texObj->Target, textarget, caller))
3227 return;
3228
3229 if ((dims == 3) && !check_layer(ctx, texObj->Target, layer, caller))
3230 return;
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003231 }
3232
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003233 if (!check_level(ctx, textarget, level, caller))
3234 return;
3235
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003236 _mesa_framebuffer_texture(ctx, fb, attachment, texObj, textarget, level,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003237 layer, GL_FALSE, caller);
3238}
3239
3240
3241void GLAPIENTRY
3242_mesa_FramebufferTexture1D(GLenum target, GLenum attachment,
3243 GLenum textarget, GLuint texture, GLint level)
3244{
3245 framebuffer_texture_with_dims(1, target, attachment, textarget, texture,
3246 level, 0, "glFramebufferTexture1D");
Brian Paulddc82ee2005-02-05 19:56:45 +00003247}
3248
3249
Brian Paul1864c7d2005-02-08 03:46:37 +00003250void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08003251_mesa_FramebufferTexture2D(GLenum target, GLenum attachment,
Brian Paulc1377ed2014-03-22 10:31:58 -06003252 GLenum textarget, GLuint texture, GLint level)
Brian Paulddc82ee2005-02-05 19:56:45 +00003253{
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003254 framebuffer_texture_with_dims(2, target, attachment, textarget, texture,
3255 level, 0, "glFramebufferTexture2D");
Brian Paulddc82ee2005-02-05 19:56:45 +00003256}
3257
3258
Brian Paul1864c7d2005-02-08 03:46:37 +00003259void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08003260_mesa_FramebufferTexture3D(GLenum target, GLenum attachment,
Brian Paulc1377ed2014-03-22 10:31:58 -06003261 GLenum textarget, GLuint texture,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003262 GLint level, GLint layer)
Brian Paulddc82ee2005-02-05 19:56:45 +00003263{
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003264 framebuffer_texture_with_dims(3, target, attachment, textarget, texture,
3265 level, layer, "glFramebufferTexture3D");
Brian Paulddc82ee2005-02-05 19:56:45 +00003266}
3267
3268
Brian Paul1864c7d2005-02-08 03:46:37 +00003269void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08003270_mesa_FramebufferTextureLayer(GLenum target, GLenum attachment,
Brian Paulc1377ed2014-03-22 10:31:58 -06003271 GLuint texture, GLint level, GLint layer)
Ian Romanickbb372f12007-05-16 15:34:22 -07003272{
3273 GET_CURRENT_CONTEXT(ctx);
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003274 struct gl_framebuffer *fb;
3275 struct gl_texture_object *texObj;
Fredrik Höglund03420ea2015-04-29 19:44:06 +02003276 GLenum textarget = 0;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003277
3278 const char *func = "glFramebufferTextureLayer";
Ian Romanickbb372f12007-05-16 15:34:22 -07003279
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003280 /* Get the framebuffer object */
3281 fb = get_framebuffer_target(ctx, target);
3282 if (!fb) {
3283 _mesa_error(ctx, GL_INVALID_ENUM,
3284 "glFramebufferTextureLayer(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003285 _mesa_enum_to_string(target));
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003286 return;
3287 }
3288
3289 /* Get the texture object */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003290 if (!get_texture_for_framebuffer(ctx, texture, false, func, &texObj))
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003291 return;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003292
3293 if (texObj) {
3294 if (!check_texture_target(ctx, texObj->Target, func))
3295 return;
3296
3297 if (!check_layer(ctx, texObj->Target, layer, func))
3298 return;
3299
3300 if (!check_level(ctx, texObj->Target, level, func))
3301 return;
Fredrik Höglund03420ea2015-04-29 19:44:06 +02003302
3303 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
3304 assert(layer >= 0 && layer < 6);
3305 textarget = GL_TEXTURE_CUBE_MAP_POSITIVE_X + layer;
3306 layer = 0;
3307 }
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003308 }
3309
Fredrik Höglund03420ea2015-04-29 19:44:06 +02003310 _mesa_framebuffer_texture(ctx, fb, attachment, texObj, textarget, level,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003311 layer, GL_FALSE, func);
Ian Romanickbb372f12007-05-16 15:34:22 -07003312}
3313
3314
3315void GLAPIENTRY
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003316_mesa_NamedFramebufferTextureLayer(GLuint framebuffer, GLenum attachment,
3317 GLuint texture, GLint level, GLint layer)
3318{
3319 GET_CURRENT_CONTEXT(ctx);
3320 struct gl_framebuffer *fb;
3321 struct gl_texture_object *texObj;
Fredrik Höglund03420ea2015-04-29 19:44:06 +02003322 GLenum textarget = 0;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003323
3324 const char *func = "glNamedFramebufferTextureLayer";
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003325
3326 /* Get the framebuffer object */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003327 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer, func);
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003328 if (!fb)
3329 return;
3330
3331 /* Get the texture object */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003332 if (!get_texture_for_framebuffer(ctx, texture, false, func, &texObj))
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003333 return;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003334
3335 if (texObj) {
3336 if (!check_texture_target(ctx, texObj->Target, func))
3337 return;
3338
3339 if (!check_layer(ctx, texObj->Target, layer, func))
3340 return;
3341
3342 if (!check_level(ctx, texObj->Target, level, func))
3343 return;
Fredrik Höglund03420ea2015-04-29 19:44:06 +02003344
3345 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
3346 assert(layer >= 0 && layer < 6);
3347 textarget = GL_TEXTURE_CUBE_MAP_POSITIVE_X + layer;
3348 layer = 0;
3349 }
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003350 }
3351
Fredrik Höglund03420ea2015-04-29 19:44:06 +02003352 _mesa_framebuffer_texture(ctx, fb, attachment, texObj, textarget, level,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003353 layer, GL_FALSE, func);
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003354}
3355
3356
3357void GLAPIENTRY
Jordan Justen02f2bce2013-04-18 10:46:12 -07003358_mesa_FramebufferTexture(GLenum target, GLenum attachment,
3359 GLuint texture, GLint level)
3360{
3361 GET_CURRENT_CONTEXT(ctx);
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003362 struct gl_framebuffer *fb;
3363 struct gl_texture_object *texObj;
Brian Pauldbefffa2015-07-21 18:42:41 -06003364 GLboolean layered = GL_FALSE;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003365
3366 const char *func = "FramebufferTexture";
Jordan Justen02f2bce2013-04-18 10:46:12 -07003367
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003368 if (!_mesa_has_geometry_shaders(ctx)) {
Jordan Justen02f2bce2013-04-18 10:46:12 -07003369 _mesa_error(ctx, GL_INVALID_OPERATION,
3370 "unsupported function (glFramebufferTexture) called");
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003371 return;
Jordan Justen02f2bce2013-04-18 10:46:12 -07003372 }
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003373
3374 /* Get the framebuffer object */
3375 fb = get_framebuffer_target(ctx, target);
3376 if (!fb) {
3377 _mesa_error(ctx, GL_INVALID_ENUM,
3378 "glFramebufferTexture(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003379 _mesa_enum_to_string(target));
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003380 return;
3381 }
3382
3383 /* Get the texture object */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003384 if (!get_texture_for_framebuffer(ctx, texture, true, func, &texObj))
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003385 return;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003386
3387 if (texObj) {
3388 if (!check_layered_texture_target(ctx, texObj->Target, func, &layered))
3389 return;
3390
3391 if (!check_level(ctx, texObj->Target, level, func))
3392 return;
Laura Ekstranda245e3b2015-01-27 16:11:52 -08003393 }
3394
3395 _mesa_framebuffer_texture(ctx, fb, attachment, texObj, 0, level,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003396 0, layered, func);
Jordan Justen02f2bce2013-04-18 10:46:12 -07003397}
3398
3399
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003400void GLAPIENTRY
3401_mesa_NamedFramebufferTexture(GLuint framebuffer, GLenum attachment,
3402 GLuint texture, GLint level)
3403{
3404 GET_CURRENT_CONTEXT(ctx);
3405 struct gl_framebuffer *fb;
3406 struct gl_texture_object *texObj;
Brian Pauldbefffa2015-07-21 18:42:41 -06003407 GLboolean layered = GL_FALSE;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003408
3409 const char *func = "glNamedFramebufferTexture";
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003410
3411 if (!_mesa_has_geometry_shaders(ctx)) {
3412 _mesa_error(ctx, GL_INVALID_OPERATION,
3413 "unsupported function (glNamedFramebufferTexture) called");
3414 return;
3415 }
3416
3417 /* Get the framebuffer object */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003418 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer, func);
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003419 if (!fb)
3420 return;
3421
3422 /* Get the texture object */
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003423 if (!get_texture_for_framebuffer(ctx, texture, true, func, &texObj))
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003424 return;
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003425
3426 if (texObj) {
3427 if (!check_layered_texture_target(ctx, texObj->Target, func,
3428 &layered))
3429 return;
3430
3431 if (!check_level(ctx, texObj->Target, level, func))
3432 return;
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003433 }
3434
3435 _mesa_framebuffer_texture(ctx, fb, attachment, texObj, 0, level,
Laura Ekstrand085c67d2015-03-02 16:48:59 -08003436 0, layered, func);
Laura Ekstrandd78c8312015-01-28 13:19:57 -08003437}
3438
3439
Laura Ekstranda29318b2015-02-27 17:27:30 -08003440void
3441_mesa_framebuffer_renderbuffer(struct gl_context *ctx,
3442 struct gl_framebuffer *fb,
3443 GLenum attachment,
Ian Romanick9ae42ab2015-11-11 16:30:41 -08003444 struct gl_renderbuffer *rb)
3445{
3446 assert(!_mesa_is_winsys_fbo(fb));
3447
3448 FLUSH_VERTICES(ctx, _NEW_BUFFERS);
3449
3450 assert(ctx->Driver.FramebufferRenderbuffer);
3451 ctx->Driver.FramebufferRenderbuffer(ctx, fb, attachment, rb);
3452
3453 /* Some subsequent GL commands may depend on the framebuffer's visual
3454 * after the binding is updated. Update visual info now.
3455 */
3456 _mesa_update_framebuffer_visual(ctx, fb);
3457}
3458
3459static void
3460framebuffer_renderbuffer(struct gl_context *ctx,
3461 struct gl_framebuffer *fb,
3462 GLenum attachment,
3463 struct gl_renderbuffer *rb,
3464 const char *func)
Brian Paulddc82ee2005-02-05 19:56:45 +00003465{
Brian Paul2c6f9112005-02-24 05:47:06 +00003466 struct gl_renderbuffer_attachment *att;
Brian Paul3deaa012005-02-07 05:08:24 +00003467
Brian Paul36ede892012-01-12 09:17:23 -07003468 if (_mesa_is_winsys_fbo(fb)) {
Brian Paulab8ef282005-09-07 23:21:59 +00003469 /* Can't attach new renderbuffers to a window system framebuffer */
Laura Ekstranda29318b2015-02-27 17:27:30 -08003470 _mesa_error(ctx, GL_INVALID_OPERATION,
3471 "%s(window-system framebuffer)", func);
Brian Paul3deaa012005-02-07 05:08:24 +00003472 return;
3473 }
3474
Brian Paul94512812014-02-01 08:58:43 -07003475 att = get_attachment(ctx, fb, attachment);
Brian Paul3deaa012005-02-07 05:08:24 +00003476 if (att == NULL) {
Brian Paulddc82ee2005-02-05 19:56:45 +00003477 _mesa_error(ctx, GL_INVALID_ENUM,
Laura Ekstranda29318b2015-02-27 17:27:30 -08003478 "%s(invalid attachment %s)", func,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003479 _mesa_enum_to_string(attachment));
Brian Paulddc82ee2005-02-05 19:56:45 +00003480 return;
3481 }
3482
Brian Paula504f232010-05-27 13:05:23 -06003483 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT &&
3484 rb && rb->Format != MESA_FORMAT_NONE) {
Brian Paul30590072009-01-21 11:06:11 -07003485 /* make sure the renderbuffer is a depth/stencil format */
Brian Paula504f232010-05-27 13:05:23 -06003486 const GLenum baseFormat = _mesa_get_format_base_format(rb->Format);
Brian Paul45e76d22009-10-08 20:27:27 -06003487 if (baseFormat != GL_DEPTH_STENCIL) {
Brian Paul30590072009-01-21 11:06:11 -07003488 _mesa_error(ctx, GL_INVALID_OPERATION,
Laura Ekstranda29318b2015-02-27 17:27:30 -08003489 "%s(renderbuffer is not DEPTH_STENCIL format)", func);
Brian Paul30590072009-01-21 11:06:11 -07003490 return;
3491 }
3492 }
3493
Ian Romanick9ae42ab2015-11-11 16:30:41 -08003494 _mesa_framebuffer_renderbuffer(ctx, fb, attachment, rb);
Brian Paulddc82ee2005-02-05 19:56:45 +00003495}
3496
Brian Paul1864c7d2005-02-08 03:46:37 +00003497void GLAPIENTRY
Laura Ekstranda29318b2015-02-27 17:27:30 -08003498_mesa_FramebufferRenderbuffer(GLenum target, GLenum attachment,
3499 GLenum renderbuffertarget,
3500 GLuint renderbuffer)
3501{
3502 struct gl_framebuffer *fb;
3503 struct gl_renderbuffer *rb;
3504 GET_CURRENT_CONTEXT(ctx);
3505
3506 fb = get_framebuffer_target(ctx, target);
3507 if (!fb) {
3508 _mesa_error(ctx, GL_INVALID_ENUM,
3509 "glFramebufferRenderbuffer(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003510 _mesa_enum_to_string(target));
Laura Ekstranda29318b2015-02-27 17:27:30 -08003511 return;
3512 }
3513
3514 if (renderbuffertarget != GL_RENDERBUFFER) {
3515 _mesa_error(ctx, GL_INVALID_ENUM,
3516 "glFramebufferRenderbuffer(renderbuffertarget is not "
3517 "GL_RENDERBUFFER)");
3518 return;
3519 }
3520
3521 if (renderbuffer) {
3522 rb = _mesa_lookup_renderbuffer_err(ctx, renderbuffer,
3523 "glFramebufferRenderbuffer");
3524 if (!rb)
3525 return;
3526 }
3527 else {
3528 /* remove renderbuffer attachment */
3529 rb = NULL;
3530 }
3531
Ian Romanick9ae42ab2015-11-11 16:30:41 -08003532 framebuffer_renderbuffer(ctx, fb, attachment, rb,
3533 "glFramebufferRenderbuffer");
Laura Ekstranda29318b2015-02-27 17:27:30 -08003534}
3535
3536
3537void GLAPIENTRY
3538_mesa_NamedFramebufferRenderbuffer(GLuint framebuffer, GLenum attachment,
3539 GLenum renderbuffertarget,
3540 GLuint renderbuffer)
3541{
3542 struct gl_framebuffer *fb;
3543 struct gl_renderbuffer *rb;
3544 GET_CURRENT_CONTEXT(ctx);
3545
3546 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer,
3547 "glNamedFramebufferRenderbuffer");
Fredrik Höglund5a55f682015-05-16 19:43:39 +02003548 if (!fb)
3549 return;
Laura Ekstranda29318b2015-02-27 17:27:30 -08003550
3551 if (renderbuffertarget != GL_RENDERBUFFER) {
3552 _mesa_error(ctx, GL_INVALID_ENUM,
3553 "glNamedFramebufferRenderbuffer(renderbuffertarget is not "
3554 "GL_RENDERBUFFER)");
3555 return;
3556 }
3557
3558 if (renderbuffer) {
3559 rb = _mesa_lookup_renderbuffer_err(ctx, renderbuffer,
3560 "glNamedFramebufferRenderbuffer");
3561 if (!rb)
3562 return;
3563 }
3564 else {
3565 /* remove renderbuffer attachment */
3566 rb = NULL;
3567 }
3568
Ian Romanick9ae42ab2015-11-11 16:30:41 -08003569 framebuffer_renderbuffer(ctx, fb, attachment, rb,
3570 "glNamedFramebufferRenderbuffer");
Laura Ekstranda29318b2015-02-27 17:27:30 -08003571}
3572
3573
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003574void
3575_mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
3576 struct gl_framebuffer *buffer,
3577 GLenum attachment, GLenum pname,
3578 GLint *params, const char *caller)
Brian Paulddc82ee2005-02-05 19:56:45 +00003579{
Brian Paul2c6f9112005-02-24 05:47:06 +00003580 const struct gl_renderbuffer_attachment *att;
Marek Olšák000896c2011-07-19 03:05:07 +02003581 GLenum err;
Brian Paulddc82ee2005-02-05 19:56:45 +00003582
Kenneth Graunke19f13b22016-03-07 16:43:35 -08003583 /* The error code for an attachment type of GL_NONE differs between APIs.
3584 *
3585 * From the ES 2.0.25 specification, page 127:
3586 * "If the value of FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE is NONE, then
3587 * querying any other pname will generate INVALID_ENUM."
3588 *
3589 * From the OpenGL 3.0 specification, page 337, or identically,
3590 * the OpenGL ES 3.0.4 specification, page 240:
3591 *
3592 * "If the value of FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE is NONE, no
3593 * framebuffer is bound to target. In this case querying pname
3594 * FRAMEBUFFER_ATTACHMENT_OBJECT_NAME will return zero, and all other
3595 * queries will generate an INVALID_OPERATION error."
3596 */
3597 err = ctx->API == API_OPENGLES2 && ctx->Version < 30 ?
3598 GL_INVALID_ENUM : GL_INVALID_OPERATION;
Marek Olšák000896c2011-07-19 03:05:07 +02003599
Brian Paul36ede892012-01-12 09:17:23 -07003600 if (_mesa_is_winsys_fbo(buffer)) {
Ian Romanickda2e41c2011-10-03 12:04:09 -07003601 /* Page 126 (page 136 of the PDF) of the OpenGL ES 2.0.25 spec
3602 * says:
3603 *
3604 * "If the framebuffer currently bound to target is zero, then
3605 * INVALID_OPERATION is generated."
3606 *
3607 * The EXT_framebuffer_object spec has the same wording, and the
3608 * OES_framebuffer_object spec refers to the EXT_framebuffer_object
3609 * spec.
3610 */
Brian Paulc1377ed2014-03-22 10:31:58 -06003611 if ((!_mesa_is_desktop_gl(ctx) ||
3612 !ctx->Extensions.ARB_framebuffer_object)
Anuj Phogat2f2801f2012-12-11 20:08:13 -08003613 && !_mesa_is_gles3(ctx)) {
Martin Peres7bd8b482015-02-12 17:54:43 +02003614 _mesa_error(ctx, GL_INVALID_OPERATION,
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003615 "%s(window-system framebuffer)", caller);
Martin Peres7bd8b482015-02-12 17:54:43 +02003616 return;
Ian Romanickda2e41c2011-10-03 12:04:09 -07003617 }
Anuj Phogat2f2801f2012-12-11 20:08:13 -08003618
3619 if (_mesa_is_gles3(ctx) && attachment != GL_BACK &&
3620 attachment != GL_DEPTH && attachment != GL_STENCIL) {
Samuel Iglesias Gonsalvez284bd1e2015-01-16 16:00:13 +01003621 _mesa_error(ctx, GL_INVALID_ENUM,
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003622 "%s(invalid attachment %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003623 _mesa_enum_to_string(attachment));
Anuj Phogat2f2801f2012-12-11 20:08:13 -08003624 return;
3625 }
Brian Paul61ec2052010-06-22 08:37:44 -06003626 /* the default / window-system FBO */
3627 att = _mesa_get_fb0_attachment(ctx, buffer, attachment);
3628 }
3629 else {
3630 /* user-created framebuffer FBO */
Brian Paul94512812014-02-01 08:58:43 -07003631 att = get_attachment(ctx, buffer, attachment);
Brian Paul61ec2052010-06-22 08:37:44 -06003632 }
3633
Brian Paul3deaa012005-02-07 05:08:24 +00003634 if (att == NULL) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003635 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid attachment %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003636 _mesa_enum_to_string(attachment));
Brian Paulddc82ee2005-02-05 19:56:45 +00003637 return;
3638 }
3639
Brian Paul30590072009-01-21 11:06:11 -07003640 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
Brian Paule9592742014-04-21 13:24:25 -06003641 const struct gl_renderbuffer_attachment *depthAtt, *stencilAtt;
Anuj Phogatbd1880d2014-03-11 17:04:11 -07003642 if (pname == GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE) {
3643 /* This behavior is first specified in OpenGL 4.4 specification.
3644 *
3645 * From the OpenGL 4.4 spec page 275:
3646 * "This query cannot be performed for a combined depth+stencil
3647 * attachment, since it does not have a single format."
3648 */
3649 _mesa_error(ctx, GL_INVALID_OPERATION,
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003650 "%s(GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE"
3651 " is invalid for depth+stencil attachment)", caller);
Anuj Phogatbd1880d2014-03-11 17:04:11 -07003652 return;
3653 }
Brian Paul30590072009-01-21 11:06:11 -07003654 /* the depth and stencil attachments must point to the same buffer */
Brian Paul94512812014-02-01 08:58:43 -07003655 depthAtt = get_attachment(ctx, buffer, GL_DEPTH_ATTACHMENT);
3656 stencilAtt = get_attachment(ctx, buffer, GL_STENCIL_ATTACHMENT);
Brian Paul30590072009-01-21 11:06:11 -07003657 if (depthAtt->Renderbuffer != stencilAtt->Renderbuffer) {
3658 _mesa_error(ctx, GL_INVALID_OPERATION,
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003659 "%s(DEPTH/STENCIL attachments differ)", caller);
Brian Paul30590072009-01-21 11:06:11 -07003660 return;
3661 }
3662 }
3663
Brian Paul800e5532009-11-02 15:39:39 -07003664 /* No need to flush here */
Brian Paul474f28e2005-10-08 14:41:17 +00003665
Brian Paulddc82ee2005-02-05 19:56:45 +00003666 switch (pname) {
3667 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT:
Iago Toral Quirogacf439952015-02-24 19:02:56 +01003668 /* From the OpenGL spec, 9.2. Binding and Managing Framebuffer Objects:
3669 *
3670 * "If the value of FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE is NONE, then
3671 * either no framebuffer is bound to target; or the default framebuffer
3672 * is bound, attachment is DEPTH or STENCIL, and the number of depth or
3673 * stencil bits, respectively, is zero."
3674 */
3675 *params = (_mesa_is_winsys_fbo(buffer) &&
3676 ((attachment != GL_DEPTH && attachment != GL_STENCIL) ||
3677 (att->Type != GL_NONE)))
Brian Paul36ede892012-01-12 09:17:23 -07003678 ? GL_FRAMEBUFFER_DEFAULT : att->Type;
Brian Paul3deaa012005-02-07 05:08:24 +00003679 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00003680 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00003681 if (att->Type == GL_RENDERBUFFER_EXT) {
Martin Peres7bd8b482015-02-12 17:54:43 +02003682 *params = att->Renderbuffer->Name;
Brian Paul3deaa012005-02-07 05:08:24 +00003683 }
3684 else if (att->Type == GL_TEXTURE) {
Martin Peres7bd8b482015-02-12 17:54:43 +02003685 *params = att->Texture->Name;
Brian Paul3deaa012005-02-07 05:08:24 +00003686 }
3687 else {
Brian Paul20cf1852010-12-03 08:23:31 -07003688 assert(att->Type == GL_NONE);
Ian Romanick0cdaa472012-07-27 07:47:28 -07003689 if (_mesa_is_desktop_gl(ctx) || _mesa_is_gles3(ctx)) {
Marek Olšák000896c2011-07-19 03:05:07 +02003690 *params = 0;
3691 } else {
Ian Romanick0cdaa472012-07-27 07:47:28 -07003692 goto invalid_pname_enum;
Marek Olšák000896c2011-07-19 03:05:07 +02003693 }
Brian Paul3deaa012005-02-07 05:08:24 +00003694 }
3695 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00003696 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00003697 if (att->Type == GL_TEXTURE) {
Martin Peres7bd8b482015-02-12 17:54:43 +02003698 *params = att->TextureLevel;
Brian Paul3deaa012005-02-07 05:08:24 +00003699 }
Marek Olšákb9e9df72011-05-31 20:36:07 +02003700 else if (att->Type == GL_NONE) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003701 _mesa_error(ctx, err, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003702 _mesa_enum_to_string(pname));
Marek Olšákb9e9df72011-05-31 20:36:07 +02003703 }
Brian Paul3deaa012005-02-07 05:08:24 +00003704 else {
Ian Romanick0cdaa472012-07-27 07:47:28 -07003705 goto invalid_pname_enum;
Brian Paul3deaa012005-02-07 05:08:24 +00003706 }
3707 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00003708 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT:
Brian Paul3deaa012005-02-07 05:08:24 +00003709 if (att->Type == GL_TEXTURE) {
Brian Paulf1e4ca72008-08-06 08:39:54 -06003710 if (att->Texture && att->Texture->Target == GL_TEXTURE_CUBE_MAP) {
3711 *params = GL_TEXTURE_CUBE_MAP_POSITIVE_X + att->CubeMapFace;
3712 }
3713 else {
3714 *params = 0;
3715 }
Brian Paul3deaa012005-02-07 05:08:24 +00003716 }
Marek Olšákb9e9df72011-05-31 20:36:07 +02003717 else if (att->Type == GL_NONE) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003718 _mesa_error(ctx, err, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003719 _mesa_enum_to_string(pname));
Marek Olšákb9e9df72011-05-31 20:36:07 +02003720 }
Brian Paul3deaa012005-02-07 05:08:24 +00003721 else {
Ian Romanick0cdaa472012-07-27 07:47:28 -07003722 goto invalid_pname_enum;
Brian Paul3deaa012005-02-07 05:08:24 +00003723 }
3724 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00003725 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT:
Ian Romanick0cdaa472012-07-27 07:47:28 -07003726 if (ctx->API == API_OPENGLES) {
3727 goto invalid_pname_enum;
3728 } else if (att->Type == GL_NONE) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003729 _mesa_error(ctx, err, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003730 _mesa_enum_to_string(pname));
Ian Romanick0cdaa472012-07-27 07:47:28 -07003731 } else if (att->Type == GL_TEXTURE) {
Samuel Iglesias Gonsalvez8e49a3e2014-12-11 23:34:13 +01003732 if (att->Texture && (att->Texture->Target == GL_TEXTURE_3D ||
3733 att->Texture->Target == GL_TEXTURE_2D_ARRAY)) {
Brian Paulf1e4ca72008-08-06 08:39:54 -06003734 *params = att->Zoffset;
3735 }
3736 else {
3737 *params = 0;
3738 }
Brian Paul3deaa012005-02-07 05:08:24 +00003739 }
3740 else {
Ian Romanick0cdaa472012-07-27 07:47:28 -07003741 goto invalid_pname_enum;
Brian Paul3deaa012005-02-07 05:08:24 +00003742 }
3743 return;
Brian Paul1bc59bf2009-01-22 15:07:34 -07003744 case GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:
Brian Paulc1377ed2014-03-22 10:31:58 -06003745 if ((!_mesa_is_desktop_gl(ctx) ||
3746 !ctx->Extensions.ARB_framebuffer_object)
Ian Romanick0cdaa472012-07-27 07:47:28 -07003747 && !_mesa_is_gles3(ctx)) {
3748 goto invalid_pname_enum;
Brian Paul1bc59bf2009-01-22 15:07:34 -07003749 }
Marek Olšákb9e9df72011-05-31 20:36:07 +02003750 else if (att->Type == GL_NONE) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003751 _mesa_error(ctx, err, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003752 _mesa_enum_to_string(pname));
Marek Olšákb9e9df72011-05-31 20:36:07 +02003753 }
Brian Paul1bc59bf2009-01-22 15:07:34 -07003754 else {
Marek Olšák69c8f462012-01-24 23:39:31 +01003755 if (ctx->Extensions.EXT_framebuffer_sRGB) {
Brian Paulc1377ed2014-03-22 10:31:58 -06003756 *params =
3757 _mesa_get_format_color_encoding(att->Renderbuffer->Format);
Marek Olšák81ae8c62011-01-23 13:26:43 +01003758 }
3759 else {
3760 /* According to ARB_framebuffer_sRGB, we should return LINEAR
3761 * if the sRGB conversion is unsupported. */
3762 *params = GL_LINEAR;
3763 }
Brian Paul1bc59bf2009-01-22 15:07:34 -07003764 }
3765 return;
3766 case GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:
Brian Paulc1377ed2014-03-22 10:31:58 -06003767 if ((ctx->API != API_OPENGL_COMPAT ||
3768 !ctx->Extensions.ARB_framebuffer_object)
Ian Romanick0cdaa472012-07-27 07:47:28 -07003769 && ctx->API != API_OPENGL_CORE
3770 && !_mesa_is_gles3(ctx)) {
3771 goto invalid_pname_enum;
Brian Paul1bc59bf2009-01-22 15:07:34 -07003772 }
Marek Olšákb9e9df72011-05-31 20:36:07 +02003773 else if (att->Type == GL_NONE) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003774 _mesa_error(ctx, err, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003775 _mesa_enum_to_string(pname));
Marek Olšákb9e9df72011-05-31 20:36:07 +02003776 }
Brian Paul1bc59bf2009-01-22 15:07:34 -07003777 else {
Mark Mueller71fe9432014-01-04 14:11:43 -08003778 mesa_format format = att->Renderbuffer->Format;
Ian Romanickd7475c72013-01-18 17:25:57 -08003779
3780 /* Page 235 (page 247 of the PDF) in section 6.1.13 of the OpenGL ES
3781 * 3.0.1 spec says:
3782 *
3783 * "If pname is FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE.... If
3784 * attachment is DEPTH_STENCIL_ATTACHMENT the query will fail and
3785 * generate an INVALID_OPERATION error.
3786 */
Brian Paulc1377ed2014-03-22 10:31:58 -06003787 if (_mesa_is_gles3(ctx) &&
3788 attachment == GL_DEPTH_STENCIL_ATTACHMENT) {
Ian Romanickd7475c72013-01-18 17:25:57 -08003789 _mesa_error(ctx, GL_INVALID_OPERATION,
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003790 "%s(cannot query "
Ian Romanickd7475c72013-01-18 17:25:57 -08003791 "GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE of "
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003792 "GL_DEPTH_STENCIL_ATTACHMENT)", caller);
Ian Romanickd7475c72013-01-18 17:25:57 -08003793 return;
3794 }
3795
Mark Mueller50a01d22014-01-20 19:08:54 -08003796 if (format == MESA_FORMAT_S_UINT8) {
Brian Paul45e76d22009-10-08 20:27:27 -06003797 /* special cases */
3798 *params = GL_INDEX;
3799 }
Mark Muellereeed49f2014-01-26 15:12:56 -08003800 else if (format == MESA_FORMAT_Z32_FLOAT_S8X24_UINT) {
Marek Olšák11652802011-06-01 15:48:51 +02003801 /* depends on the attachment parameter */
3802 if (attachment == GL_STENCIL_ATTACHMENT) {
3803 *params = GL_INDEX;
3804 }
3805 else {
3806 *params = GL_FLOAT;
3807 }
3808 }
Brian Paul45e76d22009-10-08 20:27:27 -06003809 else {
3810 *params = _mesa_get_format_datatype(format);
3811 }
Brian Paul1bc59bf2009-01-22 15:07:34 -07003812 }
3813 return;
3814 case GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE:
Brian Paul1bc59bf2009-01-22 15:07:34 -07003815 case GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:
Brian Paul1bc59bf2009-01-22 15:07:34 -07003816 case GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:
Brian Paul1bc59bf2009-01-22 15:07:34 -07003817 case GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:
Brian Paul1bc59bf2009-01-22 15:07:34 -07003818 case GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:
Brian Paul1bc59bf2009-01-22 15:07:34 -07003819 case GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:
Brian Paulc1377ed2014-03-22 10:31:58 -06003820 if ((!_mesa_is_desktop_gl(ctx) ||
3821 !ctx->Extensions.ARB_framebuffer_object)
Ian Romanick0cdaa472012-07-27 07:47:28 -07003822 && !_mesa_is_gles3(ctx)) {
3823 goto invalid_pname_enum;
Brian Paul1bc59bf2009-01-22 15:07:34 -07003824 }
Marek Olšákb9e9df72011-05-31 20:36:07 +02003825 else if (att->Type == GL_NONE) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003826 _mesa_error(ctx, err, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003827 _mesa_enum_to_string(pname));
Marek Olšákb9e9df72011-05-31 20:36:07 +02003828 }
Brian Paul45e76d22009-10-08 20:27:27 -06003829 else if (att->Texture) {
3830 const struct gl_texture_image *texImage =
Brian Paulf262ed62015-01-02 16:56:12 -07003831 _mesa_select_tex_image(att->Texture, att->Texture->Target,
Brian Paul45e76d22009-10-08 20:27:27 -06003832 att->TextureLevel);
3833 if (texImage) {
3834 *params = get_component_bits(pname, texImage->_BaseFormat,
3835 texImage->TexFormat);
3836 }
3837 else {
3838 *params = 0;
3839 }
3840 }
3841 else if (att->Renderbuffer) {
3842 *params = get_component_bits(pname, att->Renderbuffer->_BaseFormat,
3843 att->Renderbuffer->Format);
3844 }
Brian Paul1bc59bf2009-01-22 15:07:34 -07003845 else {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003846 _mesa_problem(ctx, "%s: invalid FBO attachment structure", caller);
Brian Paul1bc59bf2009-01-22 15:07:34 -07003847 }
3848 return;
Paul Berryec79c052013-11-19 21:17:19 -08003849 case GL_FRAMEBUFFER_ATTACHMENT_LAYERED:
3850 if (!_mesa_has_geometry_shaders(ctx)) {
3851 goto invalid_pname_enum;
3852 } else if (att->Type == GL_TEXTURE) {
3853 *params = att->Layered;
3854 } else if (att->Type == GL_NONE) {
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003855 _mesa_error(ctx, err, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003856 _mesa_enum_to_string(pname));
Paul Berryec79c052013-11-19 21:17:19 -08003857 } else {
3858 goto invalid_pname_enum;
3859 }
3860 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00003861 default:
Ian Romanick0cdaa472012-07-27 07:47:28 -07003862 goto invalid_pname_enum;
Brian Paulddc82ee2005-02-05 19:56:45 +00003863 }
Ian Romanick0cdaa472012-07-27 07:47:28 -07003864
3865 return;
3866
3867invalid_pname_enum:
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003868 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid pname %s)", caller,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003869 _mesa_enum_to_string(pname));
Ian Romanick0cdaa472012-07-27 07:47:28 -07003870 return;
Brian Paulddc82ee2005-02-05 19:56:45 +00003871}
3872
3873
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003874void GLAPIENTRY
3875_mesa_GetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment,
3876 GLenum pname, GLint *params)
3877{
3878 GET_CURRENT_CONTEXT(ctx);
3879 struct gl_framebuffer *buffer;
3880
3881 buffer = get_framebuffer_target(ctx, target);
3882 if (!buffer) {
3883 _mesa_error(ctx, GL_INVALID_ENUM,
3884 "glGetFramebufferAttachmentParameteriv(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07003885 _mesa_enum_to_string(target));
Laura Ekstrandf22fa302015-01-29 17:11:37 -08003886 return;
3887 }
3888
3889 _mesa_get_framebuffer_attachment_parameter(ctx, buffer, attachment, pname,
3890 params,
3891 "glGetFramebufferAttachmentParameteriv");
3892}
3893
3894
3895void GLAPIENTRY
3896_mesa_GetNamedFramebufferAttachmentParameteriv(GLuint framebuffer,
3897 GLenum attachment,
3898 GLenum pname, GLint *params)
3899{
3900 GET_CURRENT_CONTEXT(ctx);
3901 struct gl_framebuffer *buffer;
3902
3903 if (framebuffer) {
3904 buffer = _mesa_lookup_framebuffer_err(ctx, framebuffer,
3905 "glGetNamedFramebufferAttachmentParameteriv");
3906 if (!buffer)
3907 return;
3908 }
3909 else {
3910 /*
3911 * Section 9.2 Binding and Managing Framebuffer Objects of the OpenGL
3912 * 4.5 core spec (30.10.2014, PDF page 314):
3913 * "If framebuffer is zero, then the default draw framebuffer is
3914 * queried."
3915 */
3916 buffer = ctx->WinSysDrawBuffer;
3917 }
3918
3919 _mesa_get_framebuffer_attachment_parameter(ctx, buffer, attachment, pname,
3920 params,
3921 "glGetNamedFramebufferAttachmentParameteriv");
3922}
3923
3924
Laura Ekstrand9f1db782015-02-05 16:38:11 -08003925void GLAPIENTRY
3926_mesa_NamedFramebufferParameteri(GLuint framebuffer, GLenum pname,
3927 GLint param)
3928{
3929 GET_CURRENT_CONTEXT(ctx);
Kevin Rogovin6aa12992015-06-17 13:29:52 +03003930 struct gl_framebuffer *fb = NULL;
Laura Ekstrand9f1db782015-02-05 16:38:11 -08003931
Kevin Rogovin6aa12992015-06-17 13:29:52 +03003932 if (!ctx->Extensions.ARB_framebuffer_no_attachments) {
3933 _mesa_error(ctx, GL_INVALID_OPERATION,
3934 "glNamedFramebufferParameteri("
3935 "ARB_framebuffer_no_attachments not implemented)");
3936 return;
3937 }
Laura Ekstrand9f1db782015-02-05 16:38:11 -08003938
Kevin Rogovin6aa12992015-06-17 13:29:52 +03003939 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer,
3940 "glNamedFramebufferParameteri");
3941
3942 if (fb) {
3943 framebuffer_parameteri(ctx, fb, pname, param,
3944 "glNamedFramebufferParameteriv");
3945 }
Laura Ekstrand9f1db782015-02-05 16:38:11 -08003946}
3947
3948
3949void GLAPIENTRY
3950_mesa_GetNamedFramebufferParameteriv(GLuint framebuffer, GLenum pname,
3951 GLint *param)
3952{
3953 GET_CURRENT_CONTEXT(ctx);
Kevin Rogovin6aa12992015-06-17 13:29:52 +03003954 struct gl_framebuffer *fb;
Laura Ekstrand9f1db782015-02-05 16:38:11 -08003955
Kevin Rogovin6aa12992015-06-17 13:29:52 +03003956 if (!ctx->Extensions.ARB_framebuffer_no_attachments) {
3957 _mesa_error(ctx, GL_INVALID_OPERATION,
3958 "glNamedFramebufferParameteriv("
3959 "ARB_framebuffer_no_attachments not implemented)");
3960 return;
3961 }
Laura Ekstrand9f1db782015-02-05 16:38:11 -08003962
Kevin Rogovin6aa12992015-06-17 13:29:52 +03003963 if (framebuffer) {
3964 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer,
3965 "glGetNamedFramebufferParameteriv");
3966 } else {
3967 fb = ctx->WinSysDrawBuffer;
3968 }
3969
3970 if (fb) {
3971 get_framebuffer_parameteriv(ctx, fb, pname, param,
3972 "glGetNamedFramebufferParameteriv");
3973 }
Laura Ekstrand9f1db782015-02-05 16:38:11 -08003974}
3975
3976
Ian Romanick342be8a2012-08-13 09:27:00 -07003977static void
Laura Ekstrand65d4a202015-02-04 09:49:58 -08003978invalidate_framebuffer_storage(struct gl_context *ctx,
3979 struct gl_framebuffer *fb,
3980 GLsizei numAttachments,
Ian Romanick342be8a2012-08-13 09:27:00 -07003981 const GLenum *attachments, GLint x, GLint y,
3982 GLsizei width, GLsizei height, const char *name)
3983{
3984 int i;
Ian Romanick342be8a2012-08-13 09:27:00 -07003985
Laura Ekstrandb4368ac2015-02-04 14:21:17 -08003986 /* Section 17.4 Whole Framebuffer Operations of the OpenGL 4.5 Core
3987 * Spec (2.2.2015, PDF page 522) says:
3988 * "An INVALID_VALUE error is generated if numAttachments, width, or
3989 * height is negative."
3990 */
Ian Romanick342be8a2012-08-13 09:27:00 -07003991 if (numAttachments < 0) {
3992 _mesa_error(ctx, GL_INVALID_VALUE,
3993 "%s(numAttachments < 0)", name);
3994 return;
3995 }
3996
Laura Ekstrandb4368ac2015-02-04 14:21:17 -08003997 if (width < 0) {
3998 _mesa_error(ctx, GL_INVALID_VALUE,
3999 "%s(width < 0)", name);
4000 return;
4001 }
4002
4003 if (height < 0) {
4004 _mesa_error(ctx, GL_INVALID_VALUE,
4005 "%s(height < 0)", name);
4006 return;
4007 }
4008
Ian Romanick342be8a2012-08-13 09:27:00 -07004009 /* The GL_ARB_invalidate_subdata spec says:
4010 *
4011 * "If an attachment is specified that does not exist in the
4012 * framebuffer bound to <target>, it is ignored."
4013 *
4014 * It also says:
4015 *
4016 * "If <attachments> contains COLOR_ATTACHMENTm and m is greater than
4017 * or equal to the value of MAX_COLOR_ATTACHMENTS, then the error
4018 * INVALID_OPERATION is generated."
4019 *
4020 * No mention is made of GL_AUXi being out of range. Therefore, we allow
4021 * any enum that can be allowed by the API (OpenGL ES 3.0 has a different
4022 * set of retrictions).
4023 */
4024 for (i = 0; i < numAttachments; i++) {
4025 if (_mesa_is_winsys_fbo(fb)) {
4026 switch (attachments[i]) {
4027 case GL_ACCUM:
4028 case GL_AUX0:
4029 case GL_AUX1:
4030 case GL_AUX2:
4031 case GL_AUX3:
4032 /* Accumulation buffers and auxilary buffers were removed in
4033 * OpenGL 3.1, and they never existed in OpenGL ES.
4034 */
Paul Berrydbd61352012-11-27 12:26:51 -08004035 if (ctx->API != API_OPENGL_COMPAT)
Ian Romanick342be8a2012-08-13 09:27:00 -07004036 goto invalid_enum;
4037 break;
4038 case GL_COLOR:
4039 case GL_DEPTH:
4040 case GL_STENCIL:
4041 break;
4042 case GL_BACK_LEFT:
4043 case GL_BACK_RIGHT:
4044 case GL_FRONT_LEFT:
4045 case GL_FRONT_RIGHT:
4046 if (!_mesa_is_desktop_gl(ctx))
4047 goto invalid_enum;
4048 break;
4049 default:
4050 goto invalid_enum;
4051 }
4052 } else {
4053 switch (attachments[i]) {
4054 case GL_DEPTH_ATTACHMENT:
4055 case GL_STENCIL_ATTACHMENT:
4056 break;
Eduardo Lima Mitev242ad322014-11-18 16:28:18 +01004057 case GL_DEPTH_STENCIL_ATTACHMENT:
4058 /* GL_DEPTH_STENCIL_ATTACHMENT is a valid attachment point only
4059 * in desktop and ES 3.0 profiles. Note that OES_packed_depth_stencil
4060 * extension does not make this attachment point valid on ES 2.0.
4061 */
4062 if (_mesa_is_desktop_gl(ctx) || _mesa_is_gles3(ctx))
4063 break;
4064 /* fallthrough */
Ian Romanick342be8a2012-08-13 09:27:00 -07004065 case GL_COLOR_ATTACHMENT0:
4066 case GL_COLOR_ATTACHMENT1:
4067 case GL_COLOR_ATTACHMENT2:
4068 case GL_COLOR_ATTACHMENT3:
4069 case GL_COLOR_ATTACHMENT4:
4070 case GL_COLOR_ATTACHMENT5:
4071 case GL_COLOR_ATTACHMENT6:
4072 case GL_COLOR_ATTACHMENT7:
4073 case GL_COLOR_ATTACHMENT8:
4074 case GL_COLOR_ATTACHMENT9:
4075 case GL_COLOR_ATTACHMENT10:
4076 case GL_COLOR_ATTACHMENT11:
4077 case GL_COLOR_ATTACHMENT12:
4078 case GL_COLOR_ATTACHMENT13:
4079 case GL_COLOR_ATTACHMENT14:
4080 case GL_COLOR_ATTACHMENT15: {
Brian Paul859c3872012-11-04 16:43:44 -07004081 unsigned k = attachments[i] - GL_COLOR_ATTACHMENT0;
Ian Romanick342be8a2012-08-13 09:27:00 -07004082 if (k >= ctx->Const.MaxColorAttachments) {
4083 _mesa_error(ctx, GL_INVALID_OPERATION,
4084 "%s(attachment >= max. color attachments)", name);
4085 return;
4086 }
Constantin Baranov53904c62013-10-13 01:17:15 +03004087 break;
Ian Romanick342be8a2012-08-13 09:27:00 -07004088 }
4089 default:
4090 goto invalid_enum;
4091 }
4092 }
4093 }
4094
4095 /* We don't actually do anything for this yet. Just return after
4096 * validating the parameters and generating the required errors.
4097 */
4098 return;
4099
4100invalid_enum:
Laura Ekstrandb4368ac2015-02-04 14:21:17 -08004101 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid attachment %s)", name,
Kenneth Graunke2f11e922015-07-18 01:22:00 -07004102 _mesa_enum_to_string(attachments[i]));
Ian Romanick342be8a2012-08-13 09:27:00 -07004103 return;
4104}
4105
Brian Paulc1377ed2014-03-22 10:31:58 -06004106
Ian Romanick342be8a2012-08-13 09:27:00 -07004107void GLAPIENTRY
4108_mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments,
4109 const GLenum *attachments, GLint x, GLint y,
4110 GLsizei width, GLsizei height)
4111{
Laura Ekstrand65d4a202015-02-04 09:49:58 -08004112 struct gl_framebuffer *fb;
4113 GET_CURRENT_CONTEXT(ctx);
4114
4115 fb = get_framebuffer_target(ctx, target);
4116 if (!fb) {
4117 _mesa_error(ctx, GL_INVALID_ENUM,
4118 "glInvalidateSubFramebuffer(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07004119 _mesa_enum_to_string(target));
Laura Ekstrand65d4a202015-02-04 09:49:58 -08004120 return;
4121 }
4122
4123 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments,
Ian Romanick342be8a2012-08-13 09:27:00 -07004124 x, y, width, height,
4125 "glInvalidateSubFramebuffer");
4126}
4127
Brian Paulc1377ed2014-03-22 10:31:58 -06004128
Ian Romanick342be8a2012-08-13 09:27:00 -07004129void GLAPIENTRY
Laura Ekstrandd890fc72015-02-04 14:21:48 -08004130_mesa_InvalidateNamedFramebufferSubData(GLuint framebuffer,
4131 GLsizei numAttachments,
4132 const GLenum *attachments,
4133 GLint x, GLint y,
4134 GLsizei width, GLsizei height)
4135{
4136 struct gl_framebuffer *fb;
4137 GET_CURRENT_CONTEXT(ctx);
4138
4139 /* The OpenGL 4.5 core spec (02.02.2015) says (in Section 17.4 Whole
4140 * Framebuffer Operations, PDF page 522): "If framebuffer is zero, the
4141 * default draw framebuffer is affected."
4142 */
4143 if (framebuffer) {
4144 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer,
4145 "glInvalidateNamedFramebufferSubData");
4146 if (!fb)
4147 return;
4148 }
4149 else
4150 fb = ctx->WinSysDrawBuffer;
4151
4152 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments,
4153 x, y, width, height,
4154 "glInvalidateNamedFramebufferSubData");
4155}
4156
4157
4158void GLAPIENTRY
Ian Romanick342be8a2012-08-13 09:27:00 -07004159_mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments,
4160 const GLenum *attachments)
4161{
Laura Ekstrand65d4a202015-02-04 09:49:58 -08004162 struct gl_framebuffer *fb;
4163 GET_CURRENT_CONTEXT(ctx);
4164
4165 fb = get_framebuffer_target(ctx, target);
4166 if (!fb) {
4167 _mesa_error(ctx, GL_INVALID_ENUM,
4168 "glInvalidateFramebuffer(invalid target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07004169 _mesa_enum_to_string(target));
Laura Ekstrand65d4a202015-02-04 09:49:58 -08004170 return;
4171 }
4172
Ian Romanick342be8a2012-08-13 09:27:00 -07004173 /* The GL_ARB_invalidate_subdata spec says:
4174 *
4175 * "The command
4176 *
4177 * void InvalidateFramebuffer(enum target,
4178 * sizei numAttachments,
4179 * const enum *attachments);
4180 *
4181 * is equivalent to the command InvalidateSubFramebuffer with <x>, <y>,
4182 * <width>, <height> equal to 0, 0, <MAX_VIEWPORT_DIMS[0]>,
4183 * <MAX_VIEWPORT_DIMS[1]> respectively."
4184 */
Laura Ekstrand65d4a202015-02-04 09:49:58 -08004185 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments,
Brian Paulc1377ed2014-03-22 10:31:58 -06004186 0, 0,
Samuel Iglesias Gonsálvezaa849d92016-03-01 12:02:27 +01004187 ctx->Const.MaxViewportWidth,
4188 ctx->Const.MaxViewportHeight,
Ian Romanick342be8a2012-08-13 09:27:00 -07004189 "glInvalidateFramebuffer");
4190}
Tapani Pälli413941e2013-02-18 09:12:27 +02004191
Brian Paulc1377ed2014-03-22 10:31:58 -06004192
Tapani Pälli413941e2013-02-18 09:12:27 +02004193void GLAPIENTRY
Laura Ekstrandd890fc72015-02-04 14:21:48 -08004194_mesa_InvalidateNamedFramebufferData(GLuint framebuffer,
4195 GLsizei numAttachments,
4196 const GLenum *attachments)
4197{
4198 struct gl_framebuffer *fb;
4199 GET_CURRENT_CONTEXT(ctx);
4200
4201 /* The OpenGL 4.5 core spec (02.02.2015) says (in Section 17.4 Whole
4202 * Framebuffer Operations, PDF page 522): "If framebuffer is zero, the
4203 * default draw framebuffer is affected."
4204 */
4205 if (framebuffer) {
4206 fb = _mesa_lookup_framebuffer_err(ctx, framebuffer,
4207 "glInvalidateNamedFramebufferData");
4208 if (!fb)
4209 return;
4210 }
4211 else
4212 fb = ctx->WinSysDrawBuffer;
4213
4214 /* The GL_ARB_invalidate_subdata spec says:
4215 *
4216 * "The command
4217 *
4218 * void InvalidateFramebuffer(enum target,
4219 * sizei numAttachments,
4220 * const enum *attachments);
4221 *
4222 * is equivalent to the command InvalidateSubFramebuffer with <x>, <y>,
4223 * <width>, <height> equal to 0, 0, <MAX_VIEWPORT_DIMS[0]>,
4224 * <MAX_VIEWPORT_DIMS[1]> respectively."
4225 */
4226 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments,
4227 0, 0,
Samuel Iglesias Gonsálvezaa849d92016-03-01 12:02:27 +01004228 ctx->Const.MaxViewportWidth,
4229 ctx->Const.MaxViewportHeight,
Laura Ekstrandd890fc72015-02-04 14:21:48 -08004230 "glInvalidateNamedFramebufferData");
4231}
4232
4233
4234void GLAPIENTRY
Tapani Pälli413941e2013-02-18 09:12:27 +02004235_mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments,
4236 const GLenum *attachments)
4237{
4238 struct gl_framebuffer *fb;
4239 GLint i;
4240
4241 GET_CURRENT_CONTEXT(ctx);
4242
4243 fb = get_framebuffer_target(ctx, target);
4244 if (!fb) {
4245 _mesa_error(ctx, GL_INVALID_ENUM,
4246 "glDiscardFramebufferEXT(target %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07004247 _mesa_enum_to_string(target));
Tapani Pälli413941e2013-02-18 09:12:27 +02004248 return;
4249 }
4250
4251 if (numAttachments < 0) {
4252 _mesa_error(ctx, GL_INVALID_VALUE,
4253 "glDiscardFramebufferEXT(numAttachments < 0)");
4254 return;
4255 }
4256
4257 for (i = 0; i < numAttachments; i++) {
4258 switch (attachments[i]) {
4259 case GL_COLOR:
4260 case GL_DEPTH:
4261 case GL_STENCIL:
4262 if (_mesa_is_user_fbo(fb))
4263 goto invalid_enum;
4264 break;
4265 case GL_COLOR_ATTACHMENT0:
4266 case GL_DEPTH_ATTACHMENT:
4267 case GL_STENCIL_ATTACHMENT:
4268 if (_mesa_is_winsys_fbo(fb))
4269 goto invalid_enum;
4270 break;
4271 default:
4272 goto invalid_enum;
4273 }
4274 }
4275
4276 if (ctx->Driver.DiscardFramebuffer)
4277 ctx->Driver.DiscardFramebuffer(ctx, target, numAttachments, attachments);
4278
4279 return;
4280
4281invalid_enum:
4282 _mesa_error(ctx, GL_INVALID_ENUM,
4283 "glDiscardFramebufferEXT(attachment %s)",
Kenneth Graunke2f11e922015-07-18 01:22:00 -07004284 _mesa_enum_to_string(attachments[i]));
Tapani Pälli413941e2013-02-18 09:12:27 +02004285}