Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. * alpha.c
  39. * This program draws several overlapping filled polygons
  40. * to demonstrate the effect order has on alpha blending results.
  41. * Use the 't' key to toggle the order of drawing polygons.
  42. */
  43. #include <GL/glut.h>
  44. #include <stdlib.h>
  45. static int leftFirst = GL_TRUE;
  46. /* Initialize alpha blending function.
  47. */
  48. static void init(void)
  49. {
  50. glEnable (GL_BLEND);
  51. glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
  52. glShadeModel (GL_FLAT);
  53. glClearColor (0.0, 0.0, 0.0, 0.0);
  54. }
  55. static void drawLeftTriangle(void)
  56. {
  57. /* draw yellow triangle on LHS of screen */
  58. glBegin (GL_TRIANGLES);
  59. glColor4f(1.0, 1.0, 0.0, 0.75);
  60. glVertex3f(0.1, 0.9, 0.0);
  61. glVertex3f(0.1, 0.1, 0.0);
  62. glVertex3f(0.7, 0.5, 0.0);
  63. glEnd();
  64. }
  65. static void drawRightTriangle(void)
  66. {
  67. /* draw cyan triangle on RHS of screen */
  68. glBegin (GL_TRIANGLES);
  69. glColor4f(0.0, 1.0, 1.0, 0.75);
  70. glVertex3f(0.9, 0.9, 0.0);
  71. glVertex3f(0.3, 0.5, 0.0);
  72. glVertex3f(0.9, 0.1, 0.0);
  73. glEnd();
  74. }
  75. void display(void)
  76. {
  77. glClear(GL_COLOR_BUFFER_BIT);
  78. if (leftFirst) {
  79. drawLeftTriangle();
  80. drawRightTriangle();
  81. }
  82. else {
  83. drawRightTriangle();
  84. drawLeftTriangle();
  85. }
  86. glFlush();
  87. }
  88. void reshape(int w, int h)
  89. {
  90. glViewport(0, 0, (GLsizei) w, (GLsizei) h);
  91. glMatrixMode(GL_PROJECTION);
  92. glLoadIdentity();
  93. if (w <= h)
  94. gluOrtho2D (0.0, 1.0, 0.0, 1.0*(GLfloat)h/(GLfloat)w);
  95. else
  96. gluOrtho2D (0.0, 1.0*(GLfloat)w/(GLfloat)h, 0.0, 1.0);
  97. }
  98. /* ARGSUSED1 */
  99. void keyboard(unsigned char key, int x, int y)
  100. {
  101. switch (key) {
  102. case 't':
  103. case 'T':
  104. leftFirst = !leftFirst;
  105. glutPostRedisplay();
  106. break;
  107. case 27: /* Escape key */
  108. exit(0);
  109. break;
  110. default:
  111. break;
  112. }
  113. }
  114. /* Main Loop
  115. * Open window with initial window size, title bar,
  116. * RGBA display mode, and handle input events.
  117. */
  118. int main(int argc, char** argv)
  119. {
  120. glutInit(&argc, argv);
  121. glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB);
  122. glutInitWindowSize (200, 200);
  123. glutCreateWindow (argv[0]);
  124. init();
  125. glutReshapeFunc (reshape);
  126. glutKeyboardFunc (keyboard);
  127. glutDisplayFunc (display);
  128. glutMainLoop();
  129. return 0;
  130. }