Mesa (master): progs/trivial: test glPolygonMode(POINT/LINE) with frustum clipping

Brian Paul brianp at kemper.freedesktop.org
Thu Jan 14 16:23:50 UTC 2010


Module: Mesa
Branch: master
Commit: 0a826921546612bee475ae240e0110977326bec1
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0a826921546612bee475ae240e0110977326bec1

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Jan 14 09:21:18 2010 -0700

progs/trivial: test glPolygonMode(POINT/LINE) with frustum clipping

Note whether the new verts introduced by clipping show up as points
and lines along the edge of the window...

---

 progs/trivial/Makefile                 |    1 +
 progs/trivial/SConscript               |    1 +
 progs/trivial/tri-point-line-clipped.c |   91 ++++++++++++++++++++++++++++++++
 3 files changed, 93 insertions(+), 0 deletions(-)

diff --git a/progs/trivial/Makefile b/progs/trivial/Makefile
index e15ec33..5e08d60 100644
--- a/progs/trivial/Makefile
+++ b/progs/trivial/Makefile
@@ -119,6 +119,7 @@ SOURCES = \
 	tri-lit-material.c \
 	tri-mask-tri.c \
 	tri-orig.c \
+	tri-point-line-clipped.c \
 	tri-query.c \
 	tri-repeat.c \
 	tri-scissor-tri.c \
diff --git a/progs/trivial/SConscript b/progs/trivial/SConscript
index 613383c..e9ed1cb 100644
--- a/progs/trivial/SConscript
+++ b/progs/trivial/SConscript
@@ -96,6 +96,7 @@ progs = [
 	'tri-logicop-xor',
 	'tri-mask-tri',
 	'tri-orig',
+	'tri-point-line-clipped',
 	'tri-query',
 	'tri-repeat',
 	'tri-scissor-tri',
diff --git a/progs/trivial/tri-point-line-clipped.c b/progs/trivial/tri-point-line-clipped.c
new file mode 100644
index 0000000..eef926c
--- /dev/null
+++ b/progs/trivial/tri-point-line-clipped.c
@@ -0,0 +1,91 @@
+/**
+ * Test frustum clipping w/ glPolygonMode LINE/POINT.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <GL/glut.h>
+
+
+static int win;
+
+
+static void
+Tri(void)
+{
+   glBegin(GL_TRIANGLES);
+   glColor3f(1, 0, 0);   glVertex3f(-1.5, -0.8, 0.0);
+   glColor3f(0, 1, 0);   glVertex3f( 1.5, -0.8, 0.0);
+   glColor3f(0, 0, 1);   glVertex3f( 0.0,  0.9, 0.0);
+   glEnd();
+}
+
+
+static void
+Draw(void)
+{
+   glPointSize(13.0);
+   glLineWidth(5.0);
+
+   glClear(GL_COLOR_BUFFER_BIT); 
+
+   glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
+   Tri();
+
+   glPolygonMode(GL_FRONT_AND_BACK, GL_POINT);
+   Tri();
+
+   glutSwapBuffers();
+}
+
+
+static void Reshape(int width, int height)
+{
+   glViewport(0, 0, (GLint)width, (GLint)height);
+   glMatrixMode(GL_PROJECTION);
+   glLoadIdentity();
+   glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
+   glMatrixMode(GL_MODELVIEW);
+}
+
+
+static void
+Key(unsigned char key, int x, int y)
+{
+   if (key == 27) {
+      glutDestroyWindow(win);
+      exit(0);
+   }
+   else {
+      glutPostRedisplay();
+   }
+}
+
+
+static void
+Init(void)
+{
+   fprintf(stderr, "GL_RENDERER   = %s\n", (char *) glGetString(GL_RENDERER));
+   fprintf(stderr, "GL_VERSION    = %s\n", (char *) glGetString(GL_VERSION));
+   fprintf(stderr, "GL_VENDOR     = %s\n", (char *) glGetString(GL_VENDOR));
+   fflush(stderr);
+}
+
+
+int
+main(int argc, char **argv)
+{
+   glutInitWindowSize(300, 300);
+   glutInit(&argc, argv);
+   glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH);
+   win = glutCreateWindow(*argv);
+   if (!win) {
+      return 1;
+   }
+   Init();
+   glutReshapeFunc(Reshape);
+   glutKeyboardFunc(Key);
+   glutDisplayFunc(Draw);
+   glutMainLoop();
+   return 0;
+}




More information about the mesa-commit mailing list