summaryrefslogtreecommitdiff
path: root/dist/Mesa/progs/demos/showbuffer.h
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2008-11-02 14:58:25 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2008-11-02 14:58:25 +0000
commit78cfb72064e6a0b3b5e88a56f985e42f1c31ea52 (patch)
treeb54961590a1113ba7ea90a2950a7eb9ee598b863 /dist/Mesa/progs/demos/showbuffer.h
parent06c59f238a103cd89fe3be7ac2ff5e6f5144a2ec (diff)
Mesa 7.2, Tested by ckuethe@, naddy@, oga@, and others.
Diffstat (limited to 'dist/Mesa/progs/demos/showbuffer.h')
-rw-r--r--dist/Mesa/progs/demos/showbuffer.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/dist/Mesa/progs/demos/showbuffer.h b/dist/Mesa/progs/demos/showbuffer.h
deleted file mode 100644
index 63533d8e9..000000000
--- a/dist/Mesa/progs/demos/showbuffer.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/* 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