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-tri-cb.c 2.3KB

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