stenciltst.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:4k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994. */
  2. /**
  3.  * (c) Copyright 1993, Silicon Graphics, Inc.
  4.  * ALL RIGHTS RESERVED 
  5.  * Permission to use, copy, modify, and distribute this software for 
  6.  * any purpose and without fee is hereby granted, provided that the above
  7.  * copyright notice appear in all copies and that both the copyright notice
  8.  * and this permission notice appear in supporting documentation, and that 
  9.  * the name of Silicon Graphics, Inc. not be used in advertising
  10.  * or publicity pertaining to distribution of the software without specific,
  11.  * written prior permission. 
  12.  *
  13.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  14.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  15.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  16.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  17.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  18.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  19.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  20.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  21.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  22.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  23.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  24.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  25.  * 
  26.  * US Government Users Restricted Rights 
  27.  * Use, duplication, or disclosure by the Government is subject to
  28.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  29.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  30.  * clause at DFARS 252.227-7013 and/or in similar or successor
  31.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  32.  * Unpublished-- rights reserved under the copyright laws of the
  33.  * United States.  Contractor/manufacturer is Silicon Graphics,
  34.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  35.  *
  36.  * OpenGL(TM) is a trademark of Silicon Graphics, Inc.
  37.  */
  38. #include <stdio.h>
  39. #include <stdlib.h>
  40. #include <string.h>
  41. #include <GL/glut.h>
  42. GLboolean doubleBuffer;
  43. /* ARGSUSED1 */
  44. static void
  45. Key(unsigned char key, int x, int y)
  46. {
  47.   switch (key) {
  48.   case 27:
  49.     exit(0);
  50.   }
  51. }
  52. static void
  53. Draw(void)
  54. {
  55.   glClear(GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
  56.   glStencilFunc(GL_ALWAYS, 1, 1);
  57.   glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
  58.   /* red triangle */
  59.   glColor3ub(200, 0, 0);
  60.   glBegin(GL_POLYGON);
  61.   glVertex3i(-4, -4, 0);
  62.   glVertex3i(4, -4, 0);
  63.   glVertex3i(0, 4, 0);
  64.   glEnd();
  65.   glStencilFunc(GL_EQUAL, 1, 1);
  66.   glStencilOp(GL_INCR, GL_KEEP, GL_DECR);
  67.   /* green square */
  68.   glColor3ub(0, 200, 0);
  69.   glBegin(GL_POLYGON);
  70.   glVertex3i(3, 3, 0);
  71.   glVertex3i(-3, 3, 0);
  72.   glVertex3i(-3, -3, 0);
  73.   glVertex3i(3, -3, 0);
  74.   glEnd();
  75.   glStencilFunc(GL_EQUAL, 1, 1);
  76.   glStencilOp(GL_KEEP, GL_KEEP, GL_KEEP);
  77.   /* blue square */
  78.   glColor3ub(0, 0, 200);
  79.   glBegin(GL_POLYGON);
  80.   glVertex3i(3, 3, 0);
  81.   glVertex3i(-3, 3, 0);
  82.   glVertex3i(-3, -3, 0);
  83.   glVertex3i(3, -3, 0);
  84.   glEnd();
  85.   if (doubleBuffer) {
  86.     glutSwapBuffers();
  87.   } else {
  88.     glFlush();
  89.   }
  90. }
  91. static void
  92. Args(int argc, char **argv)
  93. {
  94.   GLint i;
  95.   doubleBuffer = GL_TRUE;
  96.   for (i = 1; i < argc; i++) {
  97.     if (strcmp(argv[i], "-sb") == 0) {
  98.       doubleBuffer = GL_FALSE;
  99.     } else if (strcmp(argv[i], "-db") == 0) {
  100.       doubleBuffer = GL_TRUE;
  101.     }
  102.   }
  103. }
  104. int
  105. main(int argc, char **argv)
  106. {
  107.   GLenum type;
  108.   glutInit(&argc, argv);
  109.   Args(argc, argv);
  110.   type = GLUT_RGB | GLUT_STENCIL;
  111.   type |= (doubleBuffer) ? GLUT_DOUBLE : GLUT_SINGLE;
  112.   glutInitDisplayMode(type);
  113.   glutCreateWindow("Stencil Test");
  114.   glClearColor(0.0, 0.0, 0.0, 0.0);
  115.   glClearStencil(0);
  116.   glStencilMask(1);
  117.   glEnable(GL_STENCIL_TEST);
  118.   glMatrixMode(GL_PROJECTION);
  119.   glLoadIdentity();
  120.   glOrtho(-5.0, 5.0, -5.0, 5.0, -5.0, 5.0);
  121.   glMatrixMode(GL_MODELVIEW);
  122.   glutKeyboardFunc(Key);
  123.   glutDisplayFunc(Draw);
  124.   glutMainLoop();
  125.   return 0;             /* ANSI C requires main to return int. */
  126. }