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

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. /* abgr.c - Demonstrates the use of the extension EXT_abgr.
  39.    The same image data is used for both ABGR and RGBA formats
  40.    in glDrawPixels and glTexImage2D.  The left side uses ABGR,
  41.    the right side RGBA.  The top polygon demonstrates use of texture,
  42.    and the bottom image is drawn with glDrawPixels.
  43.    Note that the textures are defined as 3 component, so the alpha
  44.    value is not used in applying the DECAL environment.  */
  45. #include <string.h>
  46. #include <stdlib.h>
  47. #include <stdio.h>
  48. #include <GL/glut.h>
  49. GLenum doubleBuffer;
  50. GLubyte ubImage[65536];
  51. static void
  52. Init(void)
  53. {
  54.   int j;
  55.   GLubyte *img;
  56.   GLsizei imgWidth = 128;
  57.   glMatrixMode(GL_PROJECTION);
  58.   glLoadIdentity();
  59.   gluPerspective(60.0, 1.0, 0.1, 1000.0);
  60.   glMatrixMode(GL_MODELVIEW);
  61.   glDisable(GL_DITHER);
  62.   /* Create image */
  63.   img = ubImage;
  64.   for (j = 0; j < 32 * imgWidth; j++) {
  65.     *img++ = 0xff;
  66.     *img++ = 0x00;
  67.     *img++ = 0x00;
  68.     *img++ = 0xff;
  69.   }
  70.   for (j = 0; j < 32 * imgWidth; j++) {
  71.     *img++ = 0xff;
  72.     *img++ = 0x00;
  73.     *img++ = 0xff;
  74.     *img++ = 0x00;
  75.   }
  76.   for (j = 0; j < 32 * imgWidth; j++) {
  77.     *img++ = 0xff;
  78.     *img++ = 0xff;
  79.     *img++ = 0x00;
  80.     *img++ = 0x00;
  81.   }
  82.   for (j = 0; j < 32 * imgWidth; j++) {
  83.     *img++ = 0x00;
  84.     *img++ = 0xff;
  85.     *img++ = 0x00;
  86.     *img++ = 0xff;
  87.   }
  88. }
  89. /* ARGSUSED1 */
  90. static void
  91. Key(unsigned char key, int x, int y)
  92. {
  93.   switch (key) {
  94.   case 27:
  95.     exit(0);
  96.   }
  97. }
  98. void
  99. TexFunc(void)
  100. {
  101.   glEnable(GL_TEXTURE_2D);
  102.   glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
  103.   glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
  104.   glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
  105.   glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL);
  106. #if GL_EXT_abgr
  107.   glTexImage2D(GL_TEXTURE_2D, 0, 3, 128, 128, 0, GL_ABGR_EXT,
  108.     GL_UNSIGNED_BYTE, ubImage);
  109.   glBegin(GL_POLYGON);
  110.   glTexCoord2f(1.0, 1.0);
  111.   glVertex3f(-0.2, 0.8, -100.0);
  112.   glTexCoord2f(0.0, 1.0);
  113.   glVertex3f(-0.8, 0.8, -2.0);
  114.   glTexCoord2f(0.0, 0.0);
  115.   glVertex3f(-0.8, 0.2, -2.0);
  116.   glTexCoord2f(1.0, 0.0);
  117.   glVertex3f(-0.2, 0.2, -100.0);
  118.   glEnd();
  119. #endif
  120.   glTexImage2D(GL_TEXTURE_2D, 0, 3, 128, 128, 0, GL_RGBA,
  121.     GL_UNSIGNED_BYTE, ubImage);
  122.   glBegin(GL_POLYGON);
  123.   glTexCoord2f(1.0, 1.0);
  124.   glVertex3f(0.8, 0.8, -2.0);
  125.   glTexCoord2f(0.0, 1.0);
  126.   glVertex3f(0.2, 0.8, -100.0);
  127.   glTexCoord2f(0.0, 0.0);
  128.   glVertex3f(0.2, 0.2, -100.0);
  129.   glTexCoord2f(1.0, 0.0);
  130.   glVertex3f(0.8, 0.2, -2.0);
  131.   glEnd();
  132.   glDisable(GL_TEXTURE_2D);
  133. }
  134. static void
  135. Draw(void)
  136. {
  137.   glClearColor(0.0, 0.0, 0.0, 1.0);
  138.   glClear(GL_COLOR_BUFFER_BIT);
  139. #if GL_EXT_abgr
  140.   glRasterPos3f(-0.8, -0.8, -1.5);
  141.   glDrawPixels(128, 128, GL_ABGR_EXT, GL_UNSIGNED_BYTE, ubImage);
  142. #endif
  143.   glRasterPos3f(0.2, -0.8, -1.5);
  144.   glDrawPixels(128, 128, GL_RGBA, GL_UNSIGNED_BYTE, ubImage);
  145.   TexFunc();
  146.   if (doubleBuffer) {
  147.     glutSwapBuffers();
  148.   } else {
  149.     glFlush();
  150.   }
  151. }
  152. static void
  153. Args(int argc, char **argv)
  154. {
  155.   GLint i;
  156.   doubleBuffer = GL_TRUE;
  157.   for (i = 1; i < argc; i++) {
  158.     if (strcmp(argv[i], "-sb") == 0) {
  159.       doubleBuffer = GL_FALSE;
  160.     } else if (strcmp(argv[i], "-db") == 0) {
  161.       doubleBuffer = GL_TRUE;
  162.     }
  163.   }
  164. }
  165. int
  166. main(int argc, char **argv)
  167. {
  168.   GLenum type;
  169.   glutInit(&argc, argv);
  170.   Args(argc, argv);
  171.   type = GLUT_RGB;
  172.   type |= (doubleBuffer) ? GLUT_DOUBLE : GLUT_SINGLE;
  173.   glutInitDisplayMode(type);
  174.   glutCreateWindow("ABGR extension");
  175.   if (!glutExtensionSupported("GL_EXT_abgr")) {
  176.     printf("Couldn't find abgr extension.n");
  177.     exit(0);
  178.   }
  179. #if !GL_EXT_abgr
  180.   printf("WARNING: client-side OpenGL has no ABGR extension support!n");
  181.   printf("         Drawing only RGBA (and not ABGR) images and textures.n");
  182. #endif
  183.   Init();
  184.   glutKeyboardFunc(Key);
  185.   glutDisplayFunc(Draw);
  186.   glutMainLoop();
  187.   return 0;             /* ANSI C requires main to return int. */
  188. }