~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to progs/fp/tri-pow.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#include <stdio.h>
3
 
#include <string.h>
4
 
#include <stdlib.h>
5
 
#define GL_GLEXT_PROTOTYPES
6
 
#include <GL/glut.h>
7
 
 
8
 
 
9
 
 
10
 
static void Init( void )
11
 
{
12
 
   static const char *modulate2D =
13
 
      "!!ARBfp1.0\n"
14
 
      "TEMP R0;\n"
15
 
      "POW result.color,  fragment.color.x, fragment.color.y; \n"
16
 
      "END"
17
 
      ;
18
 
   GLuint modulateProg;
19
 
 
20
 
   if (!glutExtensionSupported("GL_ARB_fragment_program")) {
21
 
      printf("Error: GL_ARB_fragment_program not supported!\n");
22
 
      exit(1);
23
 
   }
24
 
   printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
25
 
 
26
 
   /* Setup the fragment program */
27
 
   glGenProgramsARB(1, &modulateProg);
28
 
   glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, modulateProg);
29
 
   glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB,
30
 
                        strlen(modulate2D), (const GLubyte *)modulate2D);
31
 
 
32
 
   printf("glGetError = 0x%x\n", (int) glGetError());
33
 
   printf("glError(GL_PROGRAM_ERROR_STRING_ARB) = %s\n",
34
 
          (char *) glGetString(GL_PROGRAM_ERROR_STRING_ARB));
35
 
 
36
 
   glEnable(GL_FRAGMENT_PROGRAM_ARB);
37
 
 
38
 
   glClearColor(.3, .3, .3, 0);
39
 
}
40
 
 
41
 
static void Reshape(int width, int height)
42
 
{
43
 
 
44
 
    glViewport(0, 0, (GLint)width, (GLint)height);
45
 
 
46
 
    glMatrixMode(GL_PROJECTION);
47
 
    glLoadIdentity();
48
 
    glOrtho(-1.0, 1.0, -1.0, 1.0, -0.5, 1000.0);
49
 
    glMatrixMode(GL_MODELVIEW);
50
 
}
51
 
 
52
 
static void Key(unsigned char key, int x, int y)
53
 
{
54
 
 
55
 
    switch (key) {
56
 
      case 27:
57
 
        exit(1);
58
 
      default:
59
 
        return;
60
 
    }
61
 
 
62
 
    glutPostRedisplay();
63
 
}
64
 
 
65
 
static void Draw(void)
66
 
{
67
 
   glClear(GL_COLOR_BUFFER_BIT); 
68
 
 
69
 
   glBegin(GL_TRIANGLES);
70
 
   glColor3f(0,0,1); 
71
 
   glVertex3f( 0.9, -0.9, -30.0);
72
 
   glColor3f(1,0,0); 
73
 
   glVertex3f( 0.9,  0.9, -30.0);
74
 
   glColor3f(0,1,0); 
75
 
   glVertex3f(-0.9,  0.0, -30.0);
76
 
   glEnd();
77
 
 
78
 
   glFlush();
79
 
 
80
 
 
81
 
}
82
 
 
83
 
 
84
 
int main(int argc, char **argv)
85
 
{
86
 
    GLenum type;
87
 
 
88
 
    glutInit(&argc, argv);
89
 
 
90
 
 
91
 
 
92
 
    glutInitWindowPosition(0, 0); glutInitWindowSize( 250, 250);
93
 
 
94
 
    type = GLUT_RGB;
95
 
    type |= GLUT_SINGLE;
96
 
    glutInitDisplayMode(type);
97
 
 
98
 
    if (glutCreateWindow("First Tri") == GL_FALSE) {
99
 
        exit(1);
100
 
    }
101
 
 
102
 
    Init();
103
 
 
104
 
    glutReshapeFunc(Reshape);
105
 
    glutKeyboardFunc(Key);
106
 
    glutDisplayFunc(Draw);
107
 
    glutMainLoop();
108
 
        return 0;
109
 
}