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.

tri-blend-min.c 4.2KB

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