Clone of mesa.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

tri-blend.c 4.2KB

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