]> git.cworth.org Git - apitrace-tests/blobdiff - cli/src/glxsimple.c
Add a third frame, this time drawing with a texture.
[apitrace-tests] / cli / src / glxsimple.c
index 242fe94dc44169969d6aeac61332faa4d50e5b27..0baf27f204955885569eaa8cb52ead2b83e37462 100644 (file)
 int width = 64;
 int height = 64;
 
+static void
+set_2d_projection (void)
+{
+       glMatrixMode (GL_PROJECTION);
+       glLoadIdentity ();
+       glOrtho (0, width, height, 0, 0, 1);
+       glMatrixMode (GL_MODELVIEW);
+}
+
+static void
+draw_fullscreen_quad (void)
+{
+       glBegin (GL_QUADS);
+       glVertex2f (0, 0);
+       glVertex2f (width, 0);
+       glVertex2f (width, height);
+       glVertex2f (0, height);
+       glEnd ();
+}
+
+static void
+draw_fullscreen_textured_quad (void)
+{
+       glBegin (GL_QUADS);
+       glTexCoord2f(0, 0); glVertex2f (0, 0);
+       glTexCoord2f(1, 0); glVertex2f (width, 0);
+       glTexCoord2f(1, 1); glVertex2f (width, height);
+       glTexCoord2f(0, 1); glVertex2f (0, height);
+       glEnd ();
+}
+
+static void
+paint_rgb_using_clear (double r, double g, double b)
+{
+        glClearColor(r, g, b, 1.0);
+        glClear(GL_COLOR_BUFFER_BIT);
+}
+
+static void
+paint_rgb_using_glsl (double r, double g, double b)
+{
+       const char * vs_source =
+               "void main()\n"
+               "{\n"
+               "        gl_Position = ftransform();\n"
+               "}\n";
+       const char * fs_source =
+               "#version 120\n"
+               "uniform vec4 color;\n"
+               "void main()\n"
+               "{\n"
+               "        gl_FragColor = color;\n"
+               "}\n";
+
+       GLuint vs, fs, program;
+       GLint color;
+
+       vs = glCreateShader (GL_VERTEX_SHADER);
+       glShaderSource (vs, 1, &vs_source, NULL);
+       glCompileShader (vs);
+
+       fs = glCreateShader (GL_FRAGMENT_SHADER);
+       glShaderSource (fs, 1, &fs_source, NULL);
+       glCompileShader (fs);
+
+       program = glCreateProgram ();
+       glAttachShader (program, vs);
+       glAttachShader (program, fs);
+
+       glLinkProgram (program);
+       glUseProgram (program);
+
+       color = glGetUniformLocation (program, "color");
+
+       glUniform4f (color, r, g, b, 1.0);
+
+       draw_fullscreen_quad ();
+
+       glUseProgram (0);
+}
+
+static void
+paint_rgb_using_texture (double r, double g, double b)
+{
+       uint8_t data[3];
+       GLuint texture;
+
+       data[0] = (uint8_t) (255.0 * r);
+       data[1] = (uint8_t) (255.0 * g);
+       data[2] = (uint8_t) (255.0 * b);
+
+       glGenTextures (1, &texture);
+
+       glBindTexture (GL_TEXTURE_2D, texture);
+
+       glTexImage2D (GL_TEXTURE_2D,
+                     0, GL_COMPRESSED_RGBA,
+                     1, 1, 0,
+                     GL_RGB, GL_UNSIGNED_BYTE, data);
+
+       glEnable (GL_TEXTURE_2D);
+
+       draw_fullscreen_textured_quad ();
+
+       glDisable (GL_TEXTURE_2D);
+}
+
 static void
 draw (Display *dpy, Window window, int width, int height)
 {
@@ -54,6 +161,8 @@ draw (Display *dpy, Window window, int width, int height)
                 GLX_X_VISUAL_TYPE,     GLX_DIRECT_COLOR,
                 None
         };
+
+       /* Window and context setup. */
         XVisualInfo *visual_info = glXChooseVisual(dpy, 0, visual_attr);
         GLXContext ctx = glXCreateContext(dpy, visual_info, NULL, True);
         glXMakeCurrent(dpy, window, ctx);
@@ -67,11 +176,22 @@ draw (Display *dpy, Window window, int width, int height)
        }
 
         glViewport(0, 0, width, height);
-        glClearColor(1, 0, 1, 1);
-        glClear(GL_COLOR_BUFFER_BIT);
 
+       set_2d_projection ();
+
+       /* Frame 1: Draw a solid (magenta) frame using glClear. */
+       paint_rgb_using_clear (1, 0, 1);
         glXSwapBuffers (dpy, window);
 
+       /* Frame 2: Draw a solid (yellow) frame using GLSL. */
+       paint_rgb_using_glsl (1, 1, 0);
+        glXSwapBuffers (dpy, window);
+
+       /* Frame 3: Draw a solid (cyan) frame using a texture. */
+       paint_rgb_using_texture (0, 1, 1);
+       glXSwapBuffers (dpy, window);
+
+       /* Cleanup */
         glXDestroyContext (dpy, ctx);
 }