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.

vp-clip.c 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* Test glGenProgramsNV(), glIsProgramNV(), glLoadProgramNV() */
  2. #include <assert.h>
  3. #include <string.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <math.h>
  7. #include <GL/glew.h>
  8. #include <GL/glut.h>
  9. static void Init( void )
  10. {
  11. GLint errno;
  12. GLuint prognum;
  13. static const char *prog1 =
  14. "!!ARBvp1.0\n"
  15. "MOV result.color, vertex.color;\n"
  16. "MOV result.position, vertex.position;\n"
  17. "END\n";
  18. glGenProgramsARB(1, &prognum);
  19. glBindProgramARB(GL_VERTEX_PROGRAM_ARB, prognum);
  20. glProgramStringARB(GL_VERTEX_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB,
  21. strlen(prog1), (const GLubyte *) prog1);
  22. assert(glIsProgramARB(prognum));
  23. errno = glGetError();
  24. printf("glGetError = %d\n", errno);
  25. if (errno != GL_NO_ERROR)
  26. {
  27. GLint errorpos;
  28. glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &errorpos);
  29. printf("errorpos: %d\n", errorpos);
  30. printf("%s\n", (char *)glGetString(GL_PROGRAM_ERROR_STRING_ARB));
  31. }
  32. }
  33. static void Display( void )
  34. {
  35. glClearColor(0.3, 0.3, 0.3, 1);
  36. glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
  37. glEnable(GL_VERTEX_PROGRAM_NV);
  38. glBegin(GL_TRIANGLES);
  39. glColor3f(0,0,1);
  40. glVertex3f( 2.0, -2.0, 0.0);
  41. glColor3f(0,1,0);
  42. glVertex3f( 2.0, 2.0, 0.0);
  43. glColor3f(1,0,0);
  44. glVertex3f(-2.0, 0.0, 0.0);
  45. glEnd();
  46. glFlush();
  47. }
  48. static void Reshape( int width, int height )
  49. {
  50. glViewport( 0, 0, width, height );
  51. glMatrixMode( GL_PROJECTION );
  52. glLoadIdentity();
  53. glOrtho(-1.0, 1.0, -1.0, 1.0, -0.5, 1000.0);
  54. glMatrixMode( GL_MODELVIEW );
  55. glLoadIdentity();
  56. /*glTranslatef( 0.0, 0.0, -15.0 );*/
  57. }
  58. static void Key( unsigned char key, int x, int y )
  59. {
  60. (void) x;
  61. (void) y;
  62. switch (key) {
  63. case 27:
  64. exit(0);
  65. break;
  66. }
  67. glutPostRedisplay();
  68. }
  69. int main( int argc, char *argv[] )
  70. {
  71. glutInit( &argc, argv );
  72. glutInitWindowPosition( 0, 0 );
  73. glutInitWindowSize( 250, 250 );
  74. glutInitDisplayMode( GLUT_RGB | GLUT_SINGLE | GLUT_DEPTH );
  75. glutCreateWindow(argv[0]);
  76. glewInit();
  77. glutReshapeFunc( Reshape );
  78. glutKeyboardFunc( Key );
  79. glutDisplayFunc( Display );
  80. Init();
  81. glutMainLoop();
  82. return 0;
  83. }