/opengles/redbook/hello.c

http://ftk.googlecode.com/ · C · 119 lines · 54 code · 8 blank · 57 comment · 0 complexity · f3b4b763026371dadc72e0520a66fe2d MD5 · raw file

  1. /*
  2. * License Applicability. Except to the extent portions of this file are
  3. * made subject to an alternative license as permitted in the SGI Free
  4. * Software License B, Version 1.1 (the "License"), the contents of this
  5. * file are subject only to the provisions of the License. You may not use
  6. * this file except in compliance with the License. You may obtain a copy
  7. * of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
  8. * Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
  9. *
  10. * http://oss.sgi.com/projects/FreeB
  11. *
  12. * Note that, as provided in the License, the Software is distributed on an
  13. * "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
  14. * DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
  15. * CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
  16. * PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
  17. *
  18. * Original Code. The Original Code is: OpenGL Sample Implementation,
  19. * Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
  20. * Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
  21. * Copyright in any portions created by third parties is as indicated
  22. * elsewhere herein. All Rights Reserved.
  23. *
  24. * Additional Notice Provisions: The application programming interfaces
  25. * established by SGI in conjunction with the Original Code are The
  26. * OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
  27. * April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
  28. * 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
  29. * Window System(R) (Version 1.3), released October 19, 1998. This software
  30. * was created using the OpenGL(R) version 1.2.1 Sample Implementation
  31. * published by SGI, but has not been independently verified as being
  32. * compliant with the OpenGL(R) version 1.2.1 Specification.
  33. *
  34. */
  35. /*
  36. * hello.c
  37. * This is a simple, introductory OpenGL program.
  38. */
  39. #include "ug.h"
  40. void display(UGWindow uwin)
  41. {
  42. /* clear all pixels */
  43. glClear (GL_COLOR_BUFFER_BIT);
  44. /* draw white polygon (rectangle) with corners at
  45. * (0.25, 0.25, 0.0) and (0.75, 0.75, 0.0)
  46. */
  47. glColor4f (1.0, 1.0, 1.0, 1.0);
  48. glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
  49. glRotatef(10., 0.5, 0.5, 1.0);
  50. // glTranslatef(-0.25, -0.25, 0);
  51. #if 0
  52. glTranslatef(0.25, 0.25, 0);
  53. glScalef(0.5, 0.5, 1);
  54. glTranslatef(-0.5, -0.5, 0);
  55. glScalef(2, 2, 1);
  56. // glScalef(0.5, 0.5, 1);
  57. glColor4f (1.0, 1.0, 0, 1.0);
  58. #endif
  59. //glRotatef(10, 0, 0, 1.0);
  60. glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
  61. /* don't wait!
  62. * start processing buffered OpenGL routines
  63. */
  64. glFlush ();
  65. ugSwapBuffers(uwin);
  66. }
  67. void init (void)
  68. {
  69. const static GLfloat v[] = {
  70. 0.25, 0.25, 0.0,
  71. 0.75, 0.25, 0.0,
  72. 0.25, 0.75, 0.0,
  73. 0.75, 0.75, 0.0
  74. };
  75. /* select clearing color */
  76. glClearColor (0.0, 0.0, 0.0, 0.0);
  77. /* initialize viewing values */
  78. glMatrixMode(GL_PROJECTION);
  79. glLoadIdentity();
  80. glOrthof(0.0, 1.0, 0.0, 1.0, -1.0, 1.0);
  81. glVertexPointer(3, GL_FLOAT, 0, v);
  82. glEnableClientState(GL_VERTEX_ARRAY);
  83. }
  84. /*
  85. * Declare initial window size, position, and display mode
  86. * (single buffer and RGBA). Open window with "hello"
  87. * in its title bar. Call initialization routines.
  88. * Register callback function to display graphics.
  89. * Enter main loop and process events.
  90. */
  91. #ifdef FTK_AS_PLUGIN
  92. #include "ftk_app_demo.h"
  93. FTK_HIDE int FTK_MAIN(int argc, char* argv[]);
  94. FtkApp* ftk_app_demo_hellogles_create()
  95. {
  96. return ftk_app_demo_create(_("helloGLES"), ftk_main);
  97. }
  98. #else
  99. #define FTK_HIDE extern
  100. #endif /*FTK_AS_PLUGIN*/
  101. FTK_HIDE int FTK_MAIN(int argc, char* argv[])
  102. {
  103. UGCtx ug = ugInit();
  104. UGWindow uwin = ugCreateWindow (ug, "", "hello", 250, 250, 100, 100);
  105. init();
  106. ugDisplayFunc(uwin, display);
  107. #ifndef FTK_AS_PLUGIN
  108. ugMainLoop(ug);
  109. #endif
  110. return 0; /* ANSI C requires main to return int. */
  111. }