ReactOS 0.4.15-dev-7788-g1ad9096
depth.h File Reference
#include "types.h"
Include dependency graph for depth.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define Z_ADDRESS(CTX, X, Y)    ((CTX)->Buffer->Depth + (CTX)->Buffer->Width * (Y) + (X))
 

Functions

GLuint gl_depth_test_span_generic (GLcontext *ctx, GLuint n, GLint x, GLint y, const GLdepth z[], GLubyte mask[])
 
GLuint gl_depth_test_span_less (GLcontext *ctx, GLuint n, GLint x, GLint y, const GLdepth z[], GLubyte mask[])
 
GLuint gl_depth_test_span_greater (GLcontext *ctx, GLuint n, GLint x, GLint y, const GLdepth z[], GLubyte mask[])
 
void gl_depth_test_pixels_generic (GLcontext *ctx, GLuint n, const GLint x[], const GLint y[], const GLdepth z[], GLubyte mask[])
 
void gl_depth_test_pixels_less (GLcontext *ctx, GLuint n, const GLint x[], const GLint y[], const GLdepth z[], GLubyte mask[])
 
void gl_depth_test_pixels_greater (GLcontext *ctx, GLuint n, const GLint x[], const GLint y[], const GLdepth z[], GLubyte mask[])
 
void gl_read_depth_span_float (GLcontext *ctx, GLuint n, GLint x, GLint y, GLfloat depth[])
 
void gl_read_depth_span_int (GLcontext *ctx, GLuint n, GLint x, GLint y, GLdepth depth[])
 
void gl_alloc_depth_buffer (GLcontext *ctx)
 
void gl_clear_depth_buffer (GLcontext *ctx)
 
void gl_ClearDepth (GLcontext *ctx, GLclampd depth)
 
void gl_DepthFunc (GLcontext *ctx, GLenum func)
 
void gl_DepthMask (GLcontext *ctx, GLboolean flag)
 
void gl_DepthRange (GLcontext *ctx, GLclampd nearval, GLclampd farval)
 

Macro Definition Documentation

◆ Z_ADDRESS

#define Z_ADDRESS (   CTX,
  X,
  Y 
)     ((CTX)->Buffer->Depth + (CTX)->Buffer->Width * (Y) + (X))

Definition at line 45 of file depth.h.

Function Documentation

◆ gl_alloc_depth_buffer()

void gl_alloc_depth_buffer ( GLcontext ctx)

Definition at line 848 of file depth.c.

849{
850 /* deallocate current depth buffer if present */
851 if (ctx->Buffer->Depth) {
852 free(ctx->Buffer->Depth);
853 ctx->Buffer->Depth = NULL;
854 }
855
856 /* allocate new depth buffer, but don't initialize it */
857 ctx->Buffer->Depth = (GLdepth *) malloc( ctx->Buffer->Width
858 * ctx->Buffer->Height
859 * sizeof(GLdepth) );
860 if (!ctx->Buffer->Depth) {
861 /* out of memory */
862 ctx->Depth.Test = GL_FALSE;
863 gl_error( ctx, GL_OUT_OF_MEMORY, "Couldn't allocate depth buffer" );
864 }
865}
#define free
Definition: debug_ros.c:5
#define malloc
Definition: debug_ros.c:4
#define NULL
Definition: types.h:112
void gl_error(GLcontext *ctx, GLenum error, const char *s)
Definition: context.c:1421
GLint GLdepth
Definition: types.h:218
#define GL_FALSE
Definition: gl.h:173
#define GL_OUT_OF_MEMORY
Definition: gl.h:699

Referenced by gl_update_state().

◆ gl_clear_depth_buffer()

void gl_clear_depth_buffer ( GLcontext ctx)

Definition at line 875 of file depth.c.

876{
877 GLdepth clear_value = (GLdepth) (ctx->Depth.Clear * DEPTH_SCALE);
878
879 if (ctx->Visual->DepthBits==0 || !ctx->Buffer->Depth) {
880 /* no depth buffer */
881 return;
882 }
883
884 /* The loops in this function have been written so the IRIX 5.3
885 * C compiler can unroll them. Hopefully other compilers can too!
886 */
887
888 if (ctx->Scissor.Enabled) {
889 /* only clear scissor region */
890 GLint y;
891 for (y=ctx->Buffer->Ymin; y<=ctx->Buffer->Ymax; y++) {
892 GLdepth *d = Z_ADDRESS( ctx, ctx->Buffer->Xmin, y );
893 GLint n = ctx->Buffer->Xmax - ctx->Buffer->Xmin + 1;
894 do {
895 *d++ = clear_value;
896 n--;
897 } while (n);
898 }
899 }
900 else {
901 /* clear whole buffer */
902 GLdepth *d = ctx->Buffer->Depth;
903 GLint n = ctx->Buffer->Width * ctx->Buffer->Height;
904 while (n>=16) {
905 d[0] = clear_value; d[1] = clear_value;
906 d[2] = clear_value; d[3] = clear_value;
907 d[4] = clear_value; d[5] = clear_value;
908 d[6] = clear_value; d[7] = clear_value;
909 d[8] = clear_value; d[9] = clear_value;
910 d[10] = clear_value; d[11] = clear_value;
911 d[12] = clear_value; d[13] = clear_value;
912 d[14] = clear_value; d[15] = clear_value;
913 d += 16;
914 n -= 16;
915 }
916 while (n>0) {
917 *d++ = clear_value;
918 n--;
919 }
920 }
921}
Definition: bufpool.h:45
#define Z_ADDRESS(CTX, X, Y)
Definition: depth.h:45
#define DEPTH_SCALE
Definition: config.h:146
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
int GLint
Definition: gl.h:156
GLdouble n
Definition: glext.h:7729
#define d
Definition: ke_i.h:81

Referenced by gl_update_state().

◆ gl_ClearDepth()

void gl_ClearDepth ( GLcontext ctx,
GLclampd  depth 
)

Definition at line 87 of file depth.c.

88{
89 if (INSIDE_BEGIN_END(ctx)) {
90 gl_error( ctx, GL_INVALID_OPERATION, "glClearDepth" );
91 return;
92 }
93 ctx->Depth.Clear = (GLfloat) CLAMP( depth, 0.0, 1.0 );
94}
GLint GLint GLsizei GLsizei GLsizei depth
Definition: gl.h:1546
float GLfloat
Definition: gl.h:161
#define GL_INVALID_OPERATION
Definition: gl.h:696
#define INSIDE_BEGIN_END(CTX)
Definition: macros.h:135
#define CLAMP(f, min, max)
Definition: tif_color.c:177

Referenced by execute_list(), and init_exec_pointers().

◆ gl_depth_test_pixels_generic()

void gl_depth_test_pixels_generic ( GLcontext ctx,
GLuint  n,
const GLint  x[],
const GLint  y[],
const GLdepth  z[],
GLubyte  mask[] 
)

Definition at line 489 of file depth.c.

492{
493 register GLdepth *zptr;
494 register GLuint i;
495
496 /* switch cases ordered from most frequent to less frequent */
497 switch (ctx->Depth.Func) {
498 case GL_LESS:
499 if (ctx->Depth.Mask) {
500 /* Update Z buffer */
501 for (i=0; i<n; i++) {
502 if (mask[i]) {
503 zptr = Z_ADDRESS(ctx,x[i],y[i]);
504 if (z[i] < *zptr) {
505 /* pass */
506 *zptr = z[i];
507 }
508 else {
509 /* fail */
510 mask[i] = 0;
511 }
512 }
513 }
514 }
515 else {
516 /* Don't update Z buffer */
517 for (i=0; i<n; i++) {
518 if (mask[i]) {
519 zptr = Z_ADDRESS(ctx,x[i],y[i]);
520 if (z[i] < *zptr) {
521 /* pass */
522 }
523 else {
524 /* fail */
525 mask[i] = 0;
526 }
527 }
528 }
529 }
530 break;
531 case GL_LEQUAL:
532 if (ctx->Depth.Mask) {
533 /* Update Z buffer */
534 for (i=0; i<n; i++) {
535 if (mask[i]) {
536 zptr = Z_ADDRESS(ctx,x[i],y[i]);
537 if (z[i] <= *zptr) {
538 /* pass */
539 *zptr = z[i];
540 }
541 else {
542 /* fail */
543 mask[i] = 0;
544 }
545 }
546 }
547 }
548 else {
549 /* Don't update Z buffer */
550 for (i=0; i<n; i++) {
551 if (mask[i]) {
552 zptr = Z_ADDRESS(ctx,x[i],y[i]);
553 if (z[i] <= *zptr) {
554 /* pass */
555 }
556 else {
557 /* fail */
558 mask[i] = 0;
559 }
560 }
561 }
562 }
563 break;
564 case GL_GEQUAL:
565 if (ctx->Depth.Mask) {
566 /* Update Z buffer */
567 for (i=0; i<n; i++) {
568 if (mask[i]) {
569 zptr = Z_ADDRESS(ctx,x[i],y[i]);
570 if (z[i] >= *zptr) {
571 /* pass */
572 *zptr = z[i];
573 }
574 else {
575 /* fail */
576 mask[i] = 0;
577 }
578 }
579 }
580 }
581 else {
582 /* Don't update Z buffer */
583 for (i=0; i<n; i++) {
584 if (mask[i]) {
585 zptr = Z_ADDRESS(ctx,x[i],y[i]);
586 if (z[i] >= *zptr) {
587 /* pass */
588 }
589 else {
590 /* fail */
591 mask[i] = 0;
592 }
593 }
594 }
595 }
596 break;
597 case GL_GREATER:
598 if (ctx->Depth.Mask) {
599 /* Update Z buffer */
600 for (i=0; i<n; i++) {
601 if (mask[i]) {
602 zptr = Z_ADDRESS(ctx,x[i],y[i]);
603 if (z[i] > *zptr) {
604 /* pass */
605 *zptr = z[i];
606 }
607 else {
608 /* fail */
609 mask[i] = 0;
610 }
611 }
612 }
613 }
614 else {
615 /* Don't update Z buffer */
616 for (i=0; i<n; i++) {
617 if (mask[i]) {
618 zptr = Z_ADDRESS(ctx,x[i],y[i]);
619 if (z[i] > *zptr) {
620 /* pass */
621 }
622 else {
623 /* fail */
624 mask[i] = 0;
625 }
626 }
627 }
628 }
629 break;
630 case GL_NOTEQUAL:
631 if (ctx->Depth.Mask) {
632 /* Update Z buffer */
633 for (i=0; i<n; i++) {
634 if (mask[i]) {
635 zptr = Z_ADDRESS(ctx,x[i],y[i]);
636 if (z[i] != *zptr) {
637 /* pass */
638 *zptr = z[i];
639 }
640 else {
641 /* fail */
642 mask[i] = 0;
643 }
644 }
645 }
646 }
647 else {
648 /* Don't update Z buffer */
649 for (i=0; i<n; i++) {
650 if (mask[i]) {
651 zptr = Z_ADDRESS(ctx,x[i],y[i]);
652 if (z[i] != *zptr) {
653 /* pass */
654 }
655 else {
656 /* fail */
657 mask[i] = 0;
658 }
659 }
660 }
661 }
662 break;
663 case GL_EQUAL:
664 if (ctx->Depth.Mask) {
665 /* Update Z buffer */
666 for (i=0; i<n; i++) {
667 if (mask[i]) {
668 zptr = Z_ADDRESS(ctx,x[i],y[i]);
669 if (z[i] == *zptr) {
670 /* pass */
671 *zptr = z[i];
672 }
673 else {
674 /* fail */
675 mask[i] = 0;
676 }
677 }
678 }
679 }
680 else {
681 /* Don't update Z buffer */
682 for (i=0; i<n; i++) {
683 if (mask[i]) {
684 zptr = Z_ADDRESS(ctx,x[i],y[i]);
685 if (z[i] == *zptr) {
686 /* pass */
687 }
688 else {
689 /* fail */
690 mask[i] = 0;
691 }
692 }
693 }
694 }
695 break;
696 case GL_ALWAYS:
697 if (ctx->Depth.Mask) {
698 /* Update Z buffer */
699 for (i=0; i<n; i++) {
700 if (mask[i]) {
701 zptr = Z_ADDRESS(ctx,x[i],y[i]);
702 *zptr = z[i];
703 }
704 }
705 }
706 else {
707 /* Don't update Z buffer or mask */
708 }
709 break;
710 case GL_NEVER:
711 /* depth test never passes */
712 for (i=0;i<n;i++) {
713 mask[i] = 0;
714 }
715 break;
716 default:
717 gl_problem(ctx, "Bad depth func in gl_depth_test_pixels_generic");
718 } /*switch*/
719}
void gl_problem(const GLcontext *ctx, const char *s)
Definition: context.c:1394
#define GL_NEVER
Definition: gl.h:293
#define GL_ALWAYS
Definition: gl.h:300
#define GL_LESS
Definition: gl.h:294
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
#define GL_NOTEQUAL
Definition: gl.h:298
unsigned int GLuint
Definition: gl.h:159
#define GL_LEQUAL
Definition: gl.h:296
#define GL_GEQUAL
Definition: gl.h:299
#define GL_GREATER
Definition: gl.h:297
#define GL_EQUAL
Definition: gl.h:295
GLenum GLint GLuint mask
Definition: glext.h:6028
GLdouble GLdouble z
Definition: glext.h:5874
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248

Referenced by gl_update_state().

◆ gl_depth_test_pixels_greater()

void gl_depth_test_pixels_greater ( GLcontext ctx,
GLuint  n,
const GLint  x[],
const GLint  y[],
const GLdepth  z[],
GLubyte  mask[] 
)

Definition at line 752 of file depth.c.

755{
756 GLdepth *zptr;
757 GLuint i;
758
759 for (i=0; i<n; i++) {
760 if (mask[i]) {
761 zptr = Z_ADDRESS(ctx,x[i],y[i]);
762 if (z[i] > *zptr) {
763 /* pass */
764 *zptr = z[i];
765 }
766 else {
767 /* fail */
768 mask[i] = 0;
769 }
770 }
771 }
772}

Referenced by gl_update_state().

◆ gl_depth_test_pixels_less()

void gl_depth_test_pixels_less ( GLcontext ctx,
GLuint  n,
const GLint  x[],
const GLint  y[],
const GLdepth  z[],
GLubyte  mask[] 
)

Definition at line 726 of file depth.c.

729{
730 GLdepth *zptr;
731 GLuint i;
732
733 for (i=0; i<n; i++) {
734 if (mask[i]) {
735 zptr = Z_ADDRESS(ctx,x[i],y[i]);
736 if (z[i] < *zptr) {
737 /* pass */
738 *zptr = z[i];
739 }
740 else {
741 /* fail */
742 mask[i] = 0;
743 }
744 }
745 }
746}

Referenced by gl_update_state().

◆ gl_depth_test_span_generic()

GLuint gl_depth_test_span_generic ( GLcontext ctx,
GLuint  n,
GLint  x,
GLint  y,
const GLdepth  z[],
GLubyte  mask[] 
)

Definition at line 193 of file depth.c.

197{
198 GLdepth *zptr = Z_ADDRESS( ctx, x, y );
199 GLubyte *m = mask;
200 GLuint i;
201 GLuint passed = 0;
202
203 /* switch cases ordered from most frequent to less frequent */
204 switch (ctx->Depth.Func) {
205 case GL_LESS:
206 if (ctx->Depth.Mask) {
207 /* Update Z buffer */
208 for (i=0; i<n; i++,zptr++,m++) {
209 if (*m) {
210 if (z[i] < *zptr) {
211 /* pass */
212 *zptr = z[i];
213 passed++;
214 }
215 else {
216 /* fail */
217 *m = 0;
218 }
219 }
220 }
221 }
222 else {
223 /* Don't update Z buffer */
224 for (i=0; i<n; i++,zptr++,m++) {
225 if (*m) {
226 if (z[i] < *zptr) {
227 /* pass */
228 passed++;
229 }
230 else {
231 *m = 0;
232 }
233 }
234 }
235 }
236 break;
237 case GL_LEQUAL:
238 if (ctx->Depth.Mask) {
239 /* Update Z buffer */
240 for (i=0;i<n;i++,zptr++,m++) {
241 if (*m) {
242 if (z[i] <= *zptr) {
243 *zptr = z[i];
244 passed++;
245 }
246 else {
247 *m = 0;
248 }
249 }
250 }
251 }
252 else {
253 /* Don't update Z buffer */
254 for (i=0;i<n;i++,zptr++,m++) {
255 if (*m) {
256 if (z[i] <= *zptr) {
257 /* pass */
258 passed++;
259 }
260 else {
261 *m = 0;
262 }
263 }
264 }
265 }
266 break;
267 case GL_GEQUAL:
268 if (ctx->Depth.Mask) {
269 /* Update Z buffer */
270 for (i=0;i<n;i++,zptr++,m++) {
271 if (*m) {
272 if (z[i] >= *zptr) {
273 *zptr = z[i];
274 passed++;
275 }
276 else {
277 *m = 0;
278 }
279 }
280 }
281 }
282 else {
283 /* Don't update Z buffer */
284 for (i=0;i<n;i++,zptr++,m++) {
285 if (*m) {
286 if (z[i] >= *zptr) {
287 /* pass */
288 passed++;
289 }
290 else {
291 *m = 0;
292 }
293 }
294 }
295 }
296 break;
297 case GL_GREATER:
298 if (ctx->Depth.Mask) {
299 /* Update Z buffer */
300 for (i=0;i<n;i++,zptr++,m++) {
301 if (*m) {
302 if (z[i] > *zptr) {
303 *zptr = z[i];
304 passed++;
305 }
306 else {
307 *m = 0;
308 }
309 }
310 }
311 }
312 else {
313 /* Don't update Z buffer */
314 for (i=0;i<n;i++,zptr++,m++) {
315 if (*m) {
316 if (z[i] > *zptr) {
317 /* pass */
318 passed++;
319 }
320 else {
321 *m = 0;
322 }
323 }
324 }
325 }
326 break;
327 case GL_NOTEQUAL:
328 if (ctx->Depth.Mask) {
329 /* Update Z buffer */
330 for (i=0;i<n;i++,zptr++,m++) {
331 if (*m) {
332 if (z[i] != *zptr) {
333 *zptr = z[i];
334 passed++;
335 }
336 else {
337 *m = 0;
338 }
339 }
340 }
341 }
342 else {
343 /* Don't update Z buffer */
344 for (i=0;i<n;i++,zptr++,m++) {
345 if (*m) {
346 if (z[i] != *zptr) {
347 /* pass */
348 passed++;
349 }
350 else {
351 *m = 0;
352 }
353 }
354 }
355 }
356 break;
357 case GL_EQUAL:
358 if (ctx->Depth.Mask) {
359 /* Update Z buffer */
360 for (i=0;i<n;i++,zptr++,m++) {
361 if (*m) {
362 if (z[i] == *zptr) {
363 *zptr = z[i];
364 passed++;
365 }
366 else {
367 *m =0;
368 }
369 }
370 }
371 }
372 else {
373 /* Don't update Z buffer */
374 for (i=0;i<n;i++,zptr++,m++) {
375 if (*m) {
376 if (z[i] == *zptr) {
377 /* pass */
378 passed++;
379 }
380 else {
381 *m =0;
382 }
383 }
384 }
385 }
386 break;
387 case GL_ALWAYS:
388 if (ctx->Depth.Mask) {
389 /* Update Z buffer */
390 for (i=0;i<n;i++,zptr++,m++) {
391 if (*m) {
392 *zptr = z[i];
393 passed++;
394 }
395 }
396 }
397 else {
398 /* Don't update Z buffer or mask */
399 passed = n;
400 }
401 break;
402 case GL_NEVER:
403 for (i=0;i<n;i++) {
404 mask[i] = 0;
405 }
406 break;
407 default:
408 gl_problem(ctx, "Bad depth func in gl_depth_test_span_generic");
409 } /*switch*/
410
411 return passed;
412}
unsigned char GLubyte
Definition: gl.h:157
const GLfloat * m
Definition: glext.h:10848

Referenced by gl_update_state().

◆ gl_depth_test_span_greater()

GLuint gl_depth_test_span_greater ( GLcontext ctx,
GLuint  n,
GLint  x,
GLint  y,
const GLdepth  z[],
GLubyte  mask[] 
)

Definition at line 447 of file depth.c.

451{
452 GLdepth *zptr = Z_ADDRESS( ctx, x, y );
453 GLuint i;
454 GLuint passed = 0;
455
456 for (i=0; i<n; i++) {
457 if (mask[i]) {
458 if (z[i] > zptr[i]) {
459 /* pass */
460 zptr[i] = z[i];
461 passed++;
462 }
463 else {
464 /* fail */
465 mask[i] = 0;
466 }
467 }
468 }
469 return passed;
470}

Referenced by gl_update_state().

◆ gl_depth_test_span_less()

GLuint gl_depth_test_span_less ( GLcontext ctx,
GLuint  n,
GLint  x,
GLint  y,
const GLdepth  z[],
GLubyte  mask[] 
)

Definition at line 419 of file depth.c.

422{
423 GLdepth *zptr = Z_ADDRESS( ctx, x, y );
424 GLuint i;
425 GLuint passed = 0;
426
427 for (i=0; i<n; i++) {
428 if (mask[i]) {
429 if (z[i] < zptr[i]) {
430 /* pass */
431 zptr[i] = z[i];
432 passed++;
433 }
434 else {
435 /* fail */
436 mask[i] = 0;
437 }
438 }
439 }
440 return passed;
441}

Referenced by gl_update_state().

◆ gl_DepthFunc()

void gl_DepthFunc ( GLcontext ctx,
GLenum  func 
)

Definition at line 98 of file depth.c.

99{
100 if (INSIDE_BEGIN_END(ctx)) {
101 gl_error( ctx, GL_INVALID_OPERATION, "glDepthFunc" );
102 return;
103 }
104
105 switch (func) {
106 case GL_NEVER:
107 case GL_LESS: /* (default) pass if incoming z < stored z */
108 case GL_GEQUAL:
109 case GL_LEQUAL:
110 case GL_GREATER:
111 case GL_NOTEQUAL:
112 case GL_EQUAL:
113 case GL_ALWAYS:
114 ctx->Depth.Func = func;
115 ctx->NewState |= NEW_RASTER_OPS;
116 break;
117 default:
118 gl_error( ctx, GL_INVALID_ENUM, "glDepth.Func" );
119 }
120}
#define NEW_RASTER_OPS
Definition: types.h:1233
#define GL_INVALID_ENUM
Definition: gl.h:694
GLenum func
Definition: glext.h:6028

Referenced by execute_list(), and init_exec_pointers().

◆ gl_DepthMask()

void gl_DepthMask ( GLcontext ctx,
GLboolean  flag 
)

Definition at line 124 of file depth.c.

125{
126 if (INSIDE_BEGIN_END(ctx)) {
127 gl_error( ctx, GL_INVALID_OPERATION, "glDepthMask" );
128 return;
129 }
130
131 /*
132 * GL_TRUE indicates depth buffer writing is enabled (default)
133 * GL_FALSE indicates depth buffer writing is disabled
134 */
135 ctx->Depth.Mask = flag;
136 ctx->NewState |= NEW_RASTER_OPS;
137}
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean flag
Definition: glfuncs.h:52

Referenced by execute_list(), and init_exec_pointers().

◆ gl_DepthRange()

void gl_DepthRange ( GLcontext ctx,
GLclampd  nearval,
GLclampd  farval 
)

Definition at line 141 of file depth.c.

142{
143 /*
144 * nearval - specifies mapping of the near clipping plane to window
145 * coordinates, default is 0
146 * farval - specifies mapping of the far clipping plane to window
147 * coordinates, default is 1
148 *
149 * After clipping and div by w, z coords are in -1.0 to 1.0,
150 * corresponding to near and far clipping planes. glDepthRange
151 * specifies a linear mapping of the normalized z coords in
152 * this range to window z coords.
153 */
154
155 GLfloat n, f;
156
157 if (INSIDE_BEGIN_END(ctx)) {
158 gl_error( ctx, GL_INVALID_OPERATION, "glDepthRange" );
159 return;
160 }
161
162 n = (GLfloat) CLAMP( nearval, 0.0, 1.0 );
163 f = (GLfloat) CLAMP( farval, 0.0, 1.0 );
164
165 ctx->Viewport.Near = n;
166 ctx->Viewport.Far = f;
167 ctx->Viewport.Sz = DEPTH_SCALE * ((f - n) / 2.0);
168 ctx->Viewport.Tz = DEPTH_SCALE * ((f - n) / 2.0 + n);
169}
GLfloat f
Definition: glext.h:7540
#define f
Definition: ke_i.h:83

Referenced by execute_list(), and init_exec_pointers().

◆ gl_read_depth_span_float()

void gl_read_depth_span_float ( GLcontext ctx,
GLuint  n,
GLint  x,
GLint  y,
GLfloat  depth[] 
)

Definition at line 789 of file depth.c.

791{
792 GLdepth *zptr;
794 GLuint i;
795
796 scale = 1.0F / DEPTH_SCALE;
797
798 if (ctx->Buffer->Depth) {
799 zptr = Z_ADDRESS( ctx, x, y );
800 for (i=0;i<n;i++) {
801 depth[i] = (GLfloat) zptr[i] * scale;
802 }
803 }
804 else {
805 for (i=0;i<n;i++) {
806 depth[i] = 0.0F;
807 }
808 }
809}
GLenum GLenum GLenum GLenum GLenum scale
Definition: glext.h:9032

Referenced by gl_update_state().

◆ gl_read_depth_span_int()

void gl_read_depth_span_int ( GLcontext ctx,
GLuint  n,
GLint  x,
GLint  y,
GLdepth  depth[] 
)

Definition at line 820 of file depth.c.

822{
823 if (ctx->Buffer->Depth) {
824 GLdepth *zptr = Z_ADDRESS( ctx, x, y );
825 MEMCPY( depth, zptr, n * sizeof(GLdepth) );
826 }
827 else {
828 GLuint i;
829 for (i=0;i<n;i++) {
830 depth[i] = 0.0;
831 }
832 }
833}
#define MEMCPY(DST, SRC, BYTES)
Definition: macros.h:231

Referenced by gl_update_state().