home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / oglgold.zip / SAMPLES / GLUT / POLYS.C < prev    next >
C/C++ Source or Header  |  1997-09-30  |  5KB  |  136 lines

  1. /*
  2.  * Copyright (c) 1993-1997, Silicon Graphics, Inc.
  3.  * ALL RIGHTS RESERVED 
  4.  * Permission to use, copy, modify, and distribute this software for 
  5.  * any purpose and without fee is hereby granted, provided that the above
  6.  * copyright notice appear in all copies and that both the copyright notice
  7.  * and this permission notice appear in supporting documentation, and that 
  8.  * the name of Silicon Graphics, Inc. not be used in advertising
  9.  * or publicity pertaining to distribution of the software without specific,
  10.  * written prior permission. 
  11.  *
  12.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  13.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  14.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  15.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  16.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  17.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  18.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  19.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  20.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  21.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  22.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  23.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  24.  * 
  25.  * US Government Users Restricted Rights 
  26.  * Use, duplication, or disclosure by the Government is subject to
  27.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  28.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  29.  * clause at DFARS 252.227-7013 and/or in similar or successor
  30.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  31.  * Unpublished-- rights reserved under the copyright laws of the
  32.  * United States.  Contractor/manufacturer is Silicon Graphics,
  33.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  34.  *
  35.  * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
  36.  */
  37.  
  38. /*
  39.  *  polys.c
  40.  *  This program demonstrates polygon stippling.
  41.  */
  42. #include <GL/gl.h>
  43. #include <GL/glut.h>
  44. #include <stdlib.h>
  45.  
  46. void display(void)
  47. {
  48.    GLubyte fly[] = {
  49.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  50.       0x03, 0x80, 0x01, 0xC0, 0x06, 0xC0, 0x03, 0x60, 
  51.       0x04, 0x60, 0x06, 0x20, 0x04, 0x30, 0x0C, 0x20, 
  52.       0x04, 0x18, 0x18, 0x20, 0x04, 0x0C, 0x30, 0x20,
  53.       0x04, 0x06, 0x60, 0x20, 0x44, 0x03, 0xC0, 0x22, 
  54.       0x44, 0x01, 0x80, 0x22, 0x44, 0x01, 0x80, 0x22, 
  55.       0x44, 0x01, 0x80, 0x22, 0x44, 0x01, 0x80, 0x22,
  56.       0x44, 0x01, 0x80, 0x22, 0x44, 0x01, 0x80, 0x22, 
  57.       0x66, 0x01, 0x80, 0x66, 0x33, 0x01, 0x80, 0xCC, 
  58.       0x19, 0x81, 0x81, 0x98, 0x0C, 0xC1, 0x83, 0x30,
  59.       0x07, 0xe1, 0x87, 0xe0, 0x03, 0x3f, 0xfc, 0xc0, 
  60.       0x03, 0x31, 0x8c, 0xc0, 0x03, 0x33, 0xcc, 0xc0, 
  61.       0x06, 0x64, 0x26, 0x60, 0x0c, 0xcc, 0x33, 0x30,
  62.       0x18, 0xcc, 0x33, 0x18, 0x10, 0xc4, 0x23, 0x08, 
  63.       0x10, 0x63, 0xC6, 0x08, 0x10, 0x30, 0x0c, 0x08, 
  64.       0x10, 0x18, 0x18, 0x08, 0x10, 0x00, 0x00, 0x08};
  65.  
  66.    GLubyte halftone[] = {
  67.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  68.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  69.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
  70.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  71.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  72.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
  73.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  74.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  75.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
  76.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  77.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  78.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
  79.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  80.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55, 
  81.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
  82.       0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55};
  83.  
  84.    glClear (GL_COLOR_BUFFER_BIT);
  85.    glColor3f (1.0, 1.0, 1.0);
  86.  
  87. /*  draw one solid, unstippled rectangle,    */    
  88. /*  then two stippled rectangles        */
  89.    glRectf (25.0, 25.0, 125.0, 125.0);
  90.    glEnable (GL_POLYGON_STIPPLE);
  91.    glPolygonStipple (fly);
  92.    glRectf (125.0, 25.0, 225.0, 125.0);
  93.    glPolygonStipple (halftone);
  94.    glRectf (225.0, 25.0, 325.0, 125.0);
  95.    glDisable (GL_POLYGON_STIPPLE);
  96.  
  97.    glFlush ();
  98. }
  99.  
  100. void init (void) 
  101. {
  102.    glClearColor (0.0, 0.0, 0.0, 0.0);
  103.    glShadeModel (GL_FLAT);    
  104. }
  105.  
  106. void reshape (int w, int h)
  107. {
  108.    glViewport (0, 0, (GLsizei) w, (GLsizei) h);
  109.    glMatrixMode (GL_PROJECTION);
  110.    glLoadIdentity ();
  111.    gluOrtho2D (0.0, (GLdouble) w, 0.0, (GLdouble) h);
  112. }
  113.  
  114. void keyboard(unsigned char key, int x, int y)
  115. {
  116.    switch (key) {
  117.       case 27:
  118.          exit(0);
  119.          break;
  120.    }
  121. }
  122.  
  123. int main(int argc, char** argv)
  124. {
  125.    glutInit(&argc, argv);
  126.    glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB);
  127.    glutInitWindowSize (350, 150);
  128.    glutCreateWindow (argv[0]);
  129.    init ();
  130.    glutDisplayFunc(display);
  131.    glutReshapeFunc(reshape);
  132.    glutKeyboardFunc (keyboard);
  133.    glutMainLoop();
  134.    return 0;  
  135. }
  136.