132001f49Smrg/* 232001f49Smrg * Copyright (c) 1993-1997, Silicon Graphics, Inc. 332001f49Smrg * ALL RIGHTS RESERVED 432001f49Smrg * Permission to use, copy, modify, and distribute this software for 532001f49Smrg * any purpose and without fee is hereby granted, provided that the above 632001f49Smrg * copyright notice appear in all copies and that both the copyright notice 732001f49Smrg * and this permission notice appear in supporting documentation, and that 832001f49Smrg * the name of Silicon Graphics, Inc. not be used in advertising 932001f49Smrg * or publicity pertaining to distribution of the software without specific, 1032001f49Smrg * written prior permission. 1132001f49Smrg * 1232001f49Smrg * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" 1332001f49Smrg * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, 1432001f49Smrg * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR 1532001f49Smrg * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON 1632001f49Smrg * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, 1732001f49Smrg * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY 1832001f49Smrg * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, 1932001f49Smrg * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF 2032001f49Smrg * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN 2132001f49Smrg * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON 2232001f49Smrg * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE 2332001f49Smrg * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. 2432001f49Smrg * 2532001f49Smrg * US Government Users Restricted Rights 2632001f49Smrg * Use, duplication, or disclosure by the Government is subject to 2732001f49Smrg * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph 2832001f49Smrg * (c)(1)(ii) of the Rights in Technical Data and Computer Software 2932001f49Smrg * clause at DFARS 252.227-7013 and/or in similar or successor 3032001f49Smrg * clauses in the FAR or the DOD or NASA FAR Supplement. 3132001f49Smrg * Unpublished-- rights reserved under the copyright laws of the 3232001f49Smrg * United States. Contractor/manufacturer is Silicon Graphics, 3332001f49Smrg * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. 3432001f49Smrg * 3532001f49Smrg * OpenGL(R) is a registered trademark of Silicon Graphics, Inc. 3632001f49Smrg */ 3732001f49Smrg 3832001f49Smrg/* 3932001f49Smrg * alpha.c 4032001f49Smrg * This program draws several overlapping filled polygons 4132001f49Smrg * to demonstrate the effect order has on alpha blending results. 4232001f49Smrg * Use the 't' key to toggle the order of drawing polygons. 4332001f49Smrg */ 4432001f49Smrg#include <stdlib.h> 4532001f49Smrg#include <GL/glew.h> 4632001f49Smrg#include "glut_wrap.h" 4732001f49Smrg 4832001f49Smrgstatic int leftFirst = GL_TRUE; 4932001f49Smrg 5032001f49Smrg/* Initialize alpha blending function. 5132001f49Smrg */ 5232001f49Smrgstatic void init(void) 5332001f49Smrg{ 5432001f49Smrg glBlendEquation (GL_FUNC_REVERSE_SUBTRACT); 5532001f49Smrg glBlendFunc (GL_ONE_MINUS_SRC_ALPHA, GL_SRC_ALPHA); 5632001f49Smrg glShadeModel (GL_FLAT); 5732001f49Smrg glClearColor (1.0, 0.0, 0.0, 0.0); 5832001f49Smrg} 5932001f49Smrg 6032001f49Smrgstatic void drawLeftTriangle(void) 6132001f49Smrg{ 6232001f49Smrg /* draw yellow triangle on LHS of screen */ 6332001f49Smrg 6432001f49Smrg glBegin (GL_TRIANGLES); 6532001f49Smrg glColor4f(1.0, 1.0, 0.0, 0.75); 6632001f49Smrg glVertex3f(0.1, 0.9, 0.0); 6732001f49Smrg glVertex3f(0.1, 0.1, 0.0); 6832001f49Smrg glVertex3f(0.7, 0.5, 0.0); 6932001f49Smrg glEnd(); 7032001f49Smrg} 7132001f49Smrg 7232001f49Smrgstatic void drawRightTriangle(void) 7332001f49Smrg{ 7432001f49Smrg /* draw cyan triangle on RHS of screen */ 7532001f49Smrg 7632001f49Smrg glEnable (GL_BLEND); 7732001f49Smrg glBegin (GL_TRIANGLES); 7832001f49Smrg glColor4f(0.0, 1.0, 1.0, 0.75); 7932001f49Smrg glVertex3f(0.9, 0.9, 0.0); 8032001f49Smrg glVertex3f(0.3, 0.5, 0.0); 8132001f49Smrg glVertex3f(0.9, 0.1, 0.0); 8232001f49Smrg glEnd(); 8332001f49Smrg glDisable (GL_BLEND); 8432001f49Smrg} 8532001f49Smrg 8632001f49Smrgstatic void display(void) 8732001f49Smrg{ 8832001f49Smrg glClear(GL_COLOR_BUFFER_BIT); 8932001f49Smrg 9032001f49Smrg if (leftFirst) { 9132001f49Smrg drawLeftTriangle(); 9232001f49Smrg drawRightTriangle(); 9332001f49Smrg } 9432001f49Smrg else { 9532001f49Smrg drawRightTriangle(); 9632001f49Smrg drawLeftTriangle(); 9732001f49Smrg } 9832001f49Smrg 9932001f49Smrg glFlush(); 10032001f49Smrg} 10132001f49Smrg 10232001f49Smrgstatic void reshape(int w, int h) 10332001f49Smrg{ 10432001f49Smrg glViewport(0, 0, (GLsizei) w, (GLsizei) h); 10532001f49Smrg glMatrixMode(GL_PROJECTION); 10632001f49Smrg glLoadIdentity(); 10732001f49Smrg if (w <= h) 10832001f49Smrg gluOrtho2D (0.0, 1.0, 0.0, 1.0*(GLfloat)h/(GLfloat)w); 10932001f49Smrg else 11032001f49Smrg gluOrtho2D (0.0, 1.0*(GLfloat)w/(GLfloat)h, 0.0, 1.0); 11132001f49Smrg} 11232001f49Smrg 11332001f49Smrg/* ARGSUSED1 */ 11432001f49Smrgstatic void keyboard(unsigned char key, int x, int y) 11532001f49Smrg{ 11632001f49Smrg switch (key) { 11732001f49Smrg case 't': 11832001f49Smrg case 'T': 11932001f49Smrg leftFirst = !leftFirst; 12032001f49Smrg glutPostRedisplay(); 12132001f49Smrg break; 12232001f49Smrg case 27: /* Escape key */ 12332001f49Smrg exit(0); 12432001f49Smrg break; 12532001f49Smrg default: 12632001f49Smrg break; 12732001f49Smrg } 12832001f49Smrg} 12932001f49Smrg 13032001f49Smrg/* Main Loop 13132001f49Smrg * Open window with initial window size, title bar, 13232001f49Smrg * RGBA display mode, and handle input events. 13332001f49Smrg */ 13432001f49Smrgint main(int argc, char** argv) 13532001f49Smrg{ 13632001f49Smrg glutInit(&argc, argv); 13732001f49Smrg glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); 13832001f49Smrg glutInitWindowSize (200, 200); 13932001f49Smrg glutCreateWindow (argv[0]); 14032001f49Smrg glewInit(); 14132001f49Smrg init(); 14232001f49Smrg glutReshapeFunc (reshape); 14332001f49Smrg glutKeyboardFunc (keyboard); 14432001f49Smrg glutDisplayFunc (display); 14532001f49Smrg glutMainLoop(); 14632001f49Smrg return 0; 14732001f49Smrg} 148