3adbe381854b3c6f6afd49d212f013d8f0d3a83c
[mesa.git] / src / mesa / main / clear.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 /**
27 * \file clear.c
28 * glClearColor, glClearIndex, glClear() functions.
29 */
30
31
32
33 #include "glheader.h"
34 #include "clear.h"
35 #include "context.h"
36 #include "enums.h"
37 #include "fbobject.h"
38 #include "get.h"
39 #include "macros.h"
40 #include "mtypes.h"
41 #include "state.h"
42
43
44
45 void GLAPIENTRY
46 _mesa_ClearIndex( GLfloat c )
47 {
48 GET_CURRENT_CONTEXT(ctx);
49
50 ctx->Color.ClearIndex = (GLuint) c;
51 }
52
53
54 /**
55 * Specify the clear values for the color buffers.
56 *
57 * \param red red color component.
58 * \param green green color component.
59 * \param blue blue color component.
60 * \param alpha alpha component.
61 *
62 * \sa glClearColor().
63 */
64 void GLAPIENTRY
65 _mesa_ClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
66 {
67 GET_CURRENT_CONTEXT(ctx);
68
69 ctx->Color.ClearColor.f[0] = red;
70 ctx->Color.ClearColor.f[1] = green;
71 ctx->Color.ClearColor.f[2] = blue;
72 ctx->Color.ClearColor.f[3] = alpha;
73 }
74
75
76 /**
77 * GL_EXT_texture_integer
78 */
79 void GLAPIENTRY
80 _mesa_ClearColorIiEXT(GLint r, GLint g, GLint b, GLint a)
81 {
82 GET_CURRENT_CONTEXT(ctx);
83
84 ctx->Color.ClearColor.i[0] = r;
85 ctx->Color.ClearColor.i[1] = g;
86 ctx->Color.ClearColor.i[2] = b;
87 ctx->Color.ClearColor.i[3] = a;
88 }
89
90
91 /**
92 * GL_EXT_texture_integer
93 */
94 void GLAPIENTRY
95 _mesa_ClearColorIuiEXT(GLuint r, GLuint g, GLuint b, GLuint a)
96 {
97 GET_CURRENT_CONTEXT(ctx);
98
99 ctx->Color.ClearColor.ui[0] = r;
100 ctx->Color.ClearColor.ui[1] = g;
101 ctx->Color.ClearColor.ui[2] = b;
102 ctx->Color.ClearColor.ui[3] = a;
103 }
104
105
106 /**
107 * Returns true if color writes are enabled for the given color attachment.
108 *
109 * Beyond checking ColorMask, this uses _mesa_format_has_color_component to
110 * ignore components that don't actually exist in the format (such as X in
111 * XRGB).
112 */
113 static bool
114 color_buffer_writes_enabled(const struct gl_context *ctx, unsigned idx)
115 {
116 struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[idx];
117 GLuint c;
118
119 if (rb) {
120 for (c = 0; c < 4; c++) {
121 if (ctx->Color.ColorMask[idx][c] &&
122 _mesa_format_has_color_component(rb->Format, c)) {
123 return true;
124 }
125 }
126 }
127
128 return false;
129 }
130
131
132 /**
133 * Clear buffers.
134 *
135 * \param mask bit-mask indicating the buffers to be cleared.
136 *
137 * Flushes the vertices and verifies the parameter.
138 * If __struct gl_contextRec::NewState is set then calls _mesa_update_state()
139 * to update gl_frame_buffer::_Xmin, etc. If the rasterization mode is set to
140 * GL_RENDER then requests the driver to clear the buffers, via the
141 * dd_function_table::Clear callback.
142 */
143 static ALWAYS_INLINE void
144 clear(struct gl_context *ctx, GLbitfield mask, bool no_error)
145 {
146 FLUSH_VERTICES(ctx, 0);
147 FLUSH_CURRENT(ctx, 0);
148
149 if (!no_error) {
150 if (mask & ~(GL_COLOR_BUFFER_BIT |
151 GL_DEPTH_BUFFER_BIT |
152 GL_STENCIL_BUFFER_BIT |
153 GL_ACCUM_BUFFER_BIT)) {
154 _mesa_error( ctx, GL_INVALID_VALUE, "glClear(0x%x)", mask);
155 return;
156 }
157
158 /* Accumulation buffers were removed in core contexts, and they never
159 * existed in OpenGL ES.
160 */
161 if ((mask & GL_ACCUM_BUFFER_BIT) != 0
162 && (ctx->API == API_OPENGL_CORE || _mesa_is_gles(ctx))) {
163 _mesa_error( ctx, GL_INVALID_VALUE, "glClear(GL_ACCUM_BUFFER_BIT)");
164 return;
165 }
166 }
167
168 if (ctx->NewState) {
169 _mesa_update_state( ctx ); /* update _Xmin, etc */
170 }
171
172 if (!no_error && ctx->DrawBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
173 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
174 "glClear(incomplete framebuffer)");
175 return;
176 }
177
178 if (ctx->RasterDiscard)
179 return;
180
181 if (ctx->RenderMode == GL_RENDER) {
182 GLbitfield bufferMask;
183
184 /* don't clear depth buffer if depth writing disabled */
185 if (!ctx->Depth.Mask)
186 mask &= ~GL_DEPTH_BUFFER_BIT;
187
188 /* Build the bitmask to send to device driver's Clear function.
189 * Note that the GL_COLOR_BUFFER_BIT flag will expand to 0, 1, 2 or 4
190 * of the BUFFER_BIT_FRONT/BACK_LEFT/RIGHT flags, or one of the
191 * BUFFER_BIT_COLORn flags.
192 */
193 bufferMask = 0;
194 if (mask & GL_COLOR_BUFFER_BIT) {
195 GLuint i;
196 for (i = 0; i < ctx->DrawBuffer->_NumColorDrawBuffers; i++) {
197 GLint buf = ctx->DrawBuffer->_ColorDrawBufferIndexes[i];
198
199 if (buf >= 0 && color_buffer_writes_enabled(ctx, i)) {
200 bufferMask |= 1 << buf;
201 }
202 }
203 }
204
205 if ((mask & GL_DEPTH_BUFFER_BIT)
206 && ctx->DrawBuffer->Visual.haveDepthBuffer) {
207 bufferMask |= BUFFER_BIT_DEPTH;
208 }
209
210 if ((mask & GL_STENCIL_BUFFER_BIT)
211 && ctx->DrawBuffer->Visual.haveStencilBuffer) {
212 bufferMask |= BUFFER_BIT_STENCIL;
213 }
214
215 if ((mask & GL_ACCUM_BUFFER_BIT)
216 && ctx->DrawBuffer->Visual.haveAccumBuffer) {
217 bufferMask |= BUFFER_BIT_ACCUM;
218 }
219
220 assert(ctx->Driver.Clear);
221 ctx->Driver.Clear(ctx, bufferMask);
222 }
223 }
224
225
226 void GLAPIENTRY
227 _mesa_Clear_no_error(GLbitfield mask)
228 {
229 GET_CURRENT_CONTEXT(ctx);
230 clear(ctx, mask, true);
231 }
232
233
234 void GLAPIENTRY
235 _mesa_Clear(GLbitfield mask)
236 {
237 GET_CURRENT_CONTEXT(ctx);
238
239 if (MESA_VERBOSE & VERBOSE_API)
240 _mesa_debug(ctx, "glClear 0x%x\n", mask);
241
242 clear(ctx, mask, false);
243 }
244
245
246 /** Returned by make_color_buffer_mask() for errors */
247 #define INVALID_MASK ~0x0U
248
249
250 /**
251 * Convert the glClearBuffer 'drawbuffer' parameter into a bitmask of
252 * BUFFER_BIT_x values.
253 * Return INVALID_MASK if the drawbuffer value is invalid.
254 */
255 static GLbitfield
256 make_color_buffer_mask(struct gl_context *ctx, GLint drawbuffer)
257 {
258 const struct gl_renderbuffer_attachment *att = ctx->DrawBuffer->Attachment;
259 GLbitfield mask = 0x0;
260
261 /* From the GL 4.0 specification:
262 * If buffer is COLOR, a particular draw buffer DRAW_BUFFERi is
263 * specified by passing i as the parameter drawbuffer, and value
264 * points to a four-element vector specifying the R, G, B, and A
265 * color to clear that draw buffer to. If the draw buffer is one
266 * of FRONT, BACK, LEFT, RIGHT, or FRONT_AND_BACK, identifying
267 * multiple buffers, each selected buffer is cleared to the same
268 * value.
269 *
270 * Note that "drawbuffer" and "draw buffer" have different meaning.
271 * "drawbuffer" specifies DRAW_BUFFERi, while "draw buffer" is what's
272 * assigned to DRAW_BUFFERi. It could be COLOR_ATTACHMENT0, FRONT, BACK,
273 * etc.
274 */
275 if (drawbuffer < 0 || drawbuffer >= (GLint)ctx->Const.MaxDrawBuffers) {
276 return INVALID_MASK;
277 }
278
279 switch (ctx->DrawBuffer->ColorDrawBuffer[drawbuffer]) {
280 case GL_FRONT:
281 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
282 mask |= BUFFER_BIT_FRONT_LEFT;
283 if (att[BUFFER_FRONT_RIGHT].Renderbuffer)
284 mask |= BUFFER_BIT_FRONT_RIGHT;
285 break;
286 case GL_BACK:
287 /* For GLES contexts with a single buffered configuration, we actually
288 * only have a front renderbuffer, so any clear calls to GL_BACK should
289 * affect that buffer. See draw_buffer_enum_to_bitmask for details.
290 */
291 if (_mesa_is_gles(ctx))
292 if (!ctx->DrawBuffer->Visual.doubleBufferMode)
293 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
294 mask |= BUFFER_BIT_FRONT_LEFT;
295 if (att[BUFFER_BACK_LEFT].Renderbuffer)
296 mask |= BUFFER_BIT_BACK_LEFT;
297 if (att[BUFFER_BACK_RIGHT].Renderbuffer)
298 mask |= BUFFER_BIT_BACK_RIGHT;
299 break;
300 case GL_LEFT:
301 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
302 mask |= BUFFER_BIT_FRONT_LEFT;
303 if (att[BUFFER_BACK_LEFT].Renderbuffer)
304 mask |= BUFFER_BIT_BACK_LEFT;
305 break;
306 case GL_RIGHT:
307 if (att[BUFFER_FRONT_RIGHT].Renderbuffer)
308 mask |= BUFFER_BIT_FRONT_RIGHT;
309 if (att[BUFFER_BACK_RIGHT].Renderbuffer)
310 mask |= BUFFER_BIT_BACK_RIGHT;
311 break;
312 case GL_FRONT_AND_BACK:
313 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
314 mask |= BUFFER_BIT_FRONT_LEFT;
315 if (att[BUFFER_BACK_LEFT].Renderbuffer)
316 mask |= BUFFER_BIT_BACK_LEFT;
317 if (att[BUFFER_FRONT_RIGHT].Renderbuffer)
318 mask |= BUFFER_BIT_FRONT_RIGHT;
319 if (att[BUFFER_BACK_RIGHT].Renderbuffer)
320 mask |= BUFFER_BIT_BACK_RIGHT;
321 break;
322 default:
323 {
324 GLint buf = ctx->DrawBuffer->_ColorDrawBufferIndexes[drawbuffer];
325
326 if (buf >= 0 && att[buf].Renderbuffer) {
327 mask |= 1 << buf;
328 }
329 }
330 }
331
332 return mask;
333 }
334
335
336
337 /**
338 * New in GL 3.0
339 * Clear signed integer color buffer or stencil buffer (not depth).
340 */
341 void GLAPIENTRY
342 _mesa_ClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value)
343 {
344 GET_CURRENT_CONTEXT(ctx);
345 FLUSH_VERTICES(ctx, 0);
346
347 FLUSH_CURRENT(ctx, 0);
348
349 if (ctx->NewState) {
350 _mesa_update_state( ctx );
351 }
352
353 switch (buffer) {
354 case GL_STENCIL:
355 /* Page 264 (page 280 of the PDF) of the OpenGL 3.0 spec says:
356 *
357 * "ClearBuffer generates an INVALID VALUE error if buffer is
358 * COLOR and drawbuffer is less than zero, or greater than the
359 * value of MAX DRAW BUFFERS minus one; or if buffer is DEPTH,
360 * STENCIL, or DEPTH STENCIL and drawbuffer is not zero."
361 */
362 if (drawbuffer != 0) {
363 _mesa_error(ctx, GL_INVALID_VALUE, "glClearBufferiv(drawbuffer=%d)",
364 drawbuffer);
365 return;
366 }
367 else if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer
368 && !ctx->RasterDiscard) {
369 /* Save current stencil clear value, set to 'value', do the
370 * stencil clear and restore the clear value.
371 * XXX in the future we may have a new ctx->Driver.ClearBuffer()
372 * hook instead.
373 */
374 const GLuint clearSave = ctx->Stencil.Clear;
375 ctx->Stencil.Clear = *value;
376 ctx->Driver.Clear(ctx, BUFFER_BIT_STENCIL);
377 ctx->Stencil.Clear = clearSave;
378 }
379 break;
380 case GL_COLOR:
381 {
382 const GLbitfield mask = make_color_buffer_mask(ctx, drawbuffer);
383 if (mask == INVALID_MASK) {
384 _mesa_error(ctx, GL_INVALID_VALUE, "glClearBufferiv(drawbuffer=%d)",
385 drawbuffer);
386 return;
387 }
388 else if (mask && !ctx->RasterDiscard) {
389 union gl_color_union clearSave;
390
391 /* save color */
392 clearSave = ctx->Color.ClearColor;
393 /* set color */
394 COPY_4V(ctx->Color.ClearColor.i, value);
395 /* clear buffer(s) */
396 ctx->Driver.Clear(ctx, mask);
397 /* restore color */
398 ctx->Color.ClearColor = clearSave;
399 }
400 }
401 break;
402 default:
403 /* Page 498 of the PDF, section '17.4.3.1 Clearing Individual Buffers'
404 * of the OpenGL 4.5 spec states:
405 *
406 * "An INVALID_ENUM error is generated by ClearBufferiv and
407 * ClearNamedFramebufferiv if buffer is not COLOR or STENCIL."
408 */
409 _mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferiv(buffer=%s)",
410 _mesa_enum_to_string(buffer));
411 return;
412 }
413 }
414
415
416 /**
417 * The ClearBuffer framework is so complicated and so riddled with the
418 * assumption that the framebuffer is bound that, for now, we will just fake
419 * direct state access clearing for the user.
420 */
421 void GLAPIENTRY
422 _mesa_ClearNamedFramebufferiv(GLuint framebuffer, GLenum buffer,
423 GLint drawbuffer, const GLint *value)
424 {
425 GLint oldfb;
426
427 _mesa_GetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &oldfb);
428 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
429 _mesa_ClearBufferiv(buffer, drawbuffer, value);
430 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, (GLuint) oldfb);
431 }
432
433
434 /**
435 * New in GL 3.0
436 * Clear unsigned integer color buffer (not depth, not stencil).
437 */
438 void GLAPIENTRY
439 _mesa_ClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value)
440 {
441 GET_CURRENT_CONTEXT(ctx);
442
443 FLUSH_VERTICES(ctx, 0);
444 FLUSH_CURRENT(ctx, 0);
445
446 if (ctx->NewState) {
447 _mesa_update_state( ctx );
448 }
449
450 switch (buffer) {
451 case GL_COLOR:
452 {
453 const GLbitfield mask = make_color_buffer_mask(ctx, drawbuffer);
454 if (mask == INVALID_MASK) {
455 _mesa_error(ctx, GL_INVALID_VALUE, "glClearBufferuiv(drawbuffer=%d)",
456 drawbuffer);
457 return;
458 }
459 else if (mask && !ctx->RasterDiscard) {
460 union gl_color_union clearSave;
461
462 /* save color */
463 clearSave = ctx->Color.ClearColor;
464 /* set color */
465 COPY_4V(ctx->Color.ClearColor.ui, value);
466 /* clear buffer(s) */
467 ctx->Driver.Clear(ctx, mask);
468 /* restore color */
469 ctx->Color.ClearColor = clearSave;
470 }
471 }
472 break;
473 default:
474 /* Page 498 of the PDF, section '17.4.3.1 Clearing Individual Buffers'
475 * of the OpenGL 4.5 spec states:
476 *
477 * "An INVALID_ENUM error is generated by ClearBufferuiv and
478 * ClearNamedFramebufferuiv if buffer is not COLOR."
479 */
480 _mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferuiv(buffer=%s)",
481 _mesa_enum_to_string(buffer));
482 return;
483 }
484 }
485
486
487 /**
488 * The ClearBuffer framework is so complicated and so riddled with the
489 * assumption that the framebuffer is bound that, for now, we will just fake
490 * direct state access clearing for the user.
491 */
492 void GLAPIENTRY
493 _mesa_ClearNamedFramebufferuiv(GLuint framebuffer, GLenum buffer,
494 GLint drawbuffer, const GLuint *value)
495 {
496 GLint oldfb;
497
498 _mesa_GetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &oldfb);
499 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
500 _mesa_ClearBufferuiv(buffer, drawbuffer, value);
501 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, (GLuint) oldfb);
502 }
503
504
505 /**
506 * New in GL 3.0
507 * Clear fixed-pt or float color buffer or depth buffer (not stencil).
508 */
509 void GLAPIENTRY
510 _mesa_ClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value)
511 {
512 GET_CURRENT_CONTEXT(ctx);
513
514 FLUSH_VERTICES(ctx, 0);
515 FLUSH_CURRENT(ctx, 0);
516
517 if (ctx->NewState) {
518 _mesa_update_state( ctx );
519 }
520
521 switch (buffer) {
522 case GL_DEPTH:
523 /* Page 264 (page 280 of the PDF) of the OpenGL 3.0 spec says:
524 *
525 * "ClearBuffer generates an INVALID VALUE error if buffer is
526 * COLOR and drawbuffer is less than zero, or greater than the
527 * value of MAX DRAW BUFFERS minus one; or if buffer is DEPTH,
528 * STENCIL, or DEPTH STENCIL and drawbuffer is not zero."
529 */
530 if (drawbuffer != 0) {
531 _mesa_error(ctx, GL_INVALID_VALUE, "glClearBufferfv(drawbuffer=%d)",
532 drawbuffer);
533 return;
534 }
535 else if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer
536 && !ctx->RasterDiscard) {
537 /* Save current depth clear value, set to 'value', do the
538 * depth clear and restore the clear value.
539 * XXX in the future we may have a new ctx->Driver.ClearBuffer()
540 * hook instead.
541 */
542 const GLclampd clearSave = ctx->Depth.Clear;
543 ctx->Depth.Clear = *value;
544 ctx->Driver.Clear(ctx, BUFFER_BIT_DEPTH);
545 ctx->Depth.Clear = clearSave;
546 }
547 /* clear depth buffer to value */
548 break;
549 case GL_COLOR:
550 {
551 const GLbitfield mask = make_color_buffer_mask(ctx, drawbuffer);
552 if (mask == INVALID_MASK) {
553 _mesa_error(ctx, GL_INVALID_VALUE, "glClearBufferfv(drawbuffer=%d)",
554 drawbuffer);
555 return;
556 }
557 else if (mask && !ctx->RasterDiscard) {
558 union gl_color_union clearSave;
559
560 /* save color */
561 clearSave = ctx->Color.ClearColor;
562 /* set color */
563 COPY_4V(ctx->Color.ClearColor.f, value);
564 /* clear buffer(s) */
565 ctx->Driver.Clear(ctx, mask);
566 /* restore color */
567 ctx->Color.ClearColor = clearSave;
568 }
569 }
570 break;
571 default:
572 /* Page 498 of the PDF, section '17.4.3.1 Clearing Individual Buffers'
573 * of the OpenGL 4.5 spec states:
574 *
575 * "An INVALID_ENUM error is generated by ClearBufferfv and
576 * ClearNamedFramebufferfv if buffer is not COLOR or DEPTH."
577 */
578 _mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferfv(buffer=%s)",
579 _mesa_enum_to_string(buffer));
580 return;
581 }
582 }
583
584
585 /**
586 * The ClearBuffer framework is so complicated and so riddled with the
587 * assumption that the framebuffer is bound that, for now, we will just fake
588 * direct state access clearing for the user.
589 */
590 void GLAPIENTRY
591 _mesa_ClearNamedFramebufferfv(GLuint framebuffer, GLenum buffer,
592 GLint drawbuffer, const GLfloat *value)
593 {
594 GLint oldfb;
595
596 _mesa_GetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &oldfb);
597 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
598 _mesa_ClearBufferfv(buffer, drawbuffer, value);
599 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, (GLuint) oldfb);
600 }
601
602
603 /**
604 * New in GL 3.0
605 * Clear depth/stencil buffer only.
606 */
607 void GLAPIENTRY
608 _mesa_ClearBufferfi(GLenum buffer, GLint drawbuffer,
609 GLfloat depth, GLint stencil)
610 {
611 GET_CURRENT_CONTEXT(ctx);
612 GLbitfield mask = 0;
613
614 FLUSH_VERTICES(ctx, 0);
615 FLUSH_CURRENT(ctx, 0);
616
617 if (buffer != GL_DEPTH_STENCIL) {
618 _mesa_error(ctx, GL_INVALID_ENUM, "glClearBufferfi(buffer=%s)",
619 _mesa_enum_to_string(buffer));
620 return;
621 }
622
623 /* Page 264 (page 280 of the PDF) of the OpenGL 3.0 spec says:
624 *
625 * "ClearBuffer generates an INVALID VALUE error if buffer is
626 * COLOR and drawbuffer is less than zero, or greater than the
627 * value of MAX DRAW BUFFERS minus one; or if buffer is DEPTH,
628 * STENCIL, or DEPTH STENCIL and drawbuffer is not zero."
629 */
630 if (drawbuffer != 0) {
631 _mesa_error(ctx, GL_INVALID_VALUE, "glClearBufferfi(drawbuffer=%d)",
632 drawbuffer);
633 return;
634 }
635
636 if (ctx->RasterDiscard)
637 return;
638
639 if (ctx->NewState) {
640 _mesa_update_state( ctx );
641 }
642
643 if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer)
644 mask |= BUFFER_BIT_DEPTH;
645 if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer)
646 mask |= BUFFER_BIT_STENCIL;
647
648 if (mask) {
649 /* save current clear values */
650 const GLclampd clearDepthSave = ctx->Depth.Clear;
651 const GLuint clearStencilSave = ctx->Stencil.Clear;
652
653 /* set new clear values */
654 ctx->Depth.Clear = depth;
655 ctx->Stencil.Clear = stencil;
656
657 /* clear buffers */
658 ctx->Driver.Clear(ctx, mask);
659
660 /* restore */
661 ctx->Depth.Clear = clearDepthSave;
662 ctx->Stencil.Clear = clearStencilSave;
663 }
664 }
665
666
667 /**
668 * The ClearBuffer framework is so complicated and so riddled with the
669 * assumption that the framebuffer is bound that, for now, we will just fake
670 * direct state access clearing for the user.
671 */
672 void GLAPIENTRY
673 _mesa_ClearNamedFramebufferfi(GLuint framebuffer, GLenum buffer,
674 GLint drawbuffer, GLfloat depth, GLint stencil)
675 {
676 GLint oldfb;
677
678 _mesa_GetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &oldfb);
679 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
680 _mesa_ClearBufferfi(buffer, drawbuffer, depth, stencil);
681 _mesa_BindFramebuffer(GL_DRAW_FRAMEBUFFER, (GLuint) oldfb);
682 }