blob: 63533d8e9b5febf4e193f3ad53f07c98b674440a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 | /* showbuffer. h*/
/*
 * Copy the depth buffer to the color buffer as a grayscale image.
 * Useful for inspecting the depth buffer values.
 *
 * This program is in the public domain.
 *
 * Brian Paul   November 4, 1998
 */
#ifndef SHOWBUFFER_H
#define SHOWBUFFER_H
#include <GL/gl.h>
extern void
ShowDepthBuffer( GLsizei winWidth, GLsizei winHeight,
                 GLfloat zBlack, GLfloat zWhite );
extern void
ShowAlphaBuffer( GLsizei winWidth, GLsizei winHeight );
extern void
ShowStencilBuffer( GLsizei winWidth, GLsizei winHeight,
                   GLfloat scale, GLfloat bias );
#endif
 |