]> git.cworth.org Git - fips/blob - test/glx-link-gpaa.c
test: Add 4 tests using EGL and OpenGLESv2
[fips] / test / glx-link-gpaa.c
1 /* Copyright © 2013, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 /* Perform some simple drawing via OpenGL as follows:
23  *
24  *      1. Using GLX to construct an OpenGL context
25  *      2. By directly linking with libGL.so
26  *      3. By using glXGetProcAddressARB to lookup OpenGL functions
27  */
28
29 #define GL_GLEXT_PROTOTYPES
30 #include <GL/gl.h>
31 #include <GL/glx.h>
32
33 #include <stdio.h>
34 #include <stdlib.h>
35
36 #include "util-x11.h"
37
38 /* The OpenGL header files give typedefs for the types of all
39  * functions provided by etensisons. Here, though, we're using
40  * glxGetProcAddressARB to lookup core functions, so we provide our
41  * own typedefs. */
42 typedef void (*FIPS_GLCLEAR_FN)(GLbitfield);
43 FIPS_GLCLEAR_FN my_glClear;
44
45 typedef void (*FIPS_GLCLEARCOLOR_FN)(GLclampf, GLclampf, GLclampf, GLclampf);
46 FIPS_GLCLEARCOLOR_FN my_glClearColor;
47
48 typedef void (*FIPS_GLVIEWPORT_FN)(GLint, GLint, GLsizei, GLsizei);
49 FIPS_GLVIEWPORT_FN my_glViewport;
50
51 typedef XVisualInfo* (*FIPS_GLXCHOOSEVISUAL_FN)(Display *, int, int *);
52 FIPS_GLXCHOOSEVISUAL_FN my_glXChooseVisual;
53
54 typedef GLXContext (*FIPS_GLXCREATECONTEXT_FN)(Display *, XVisualInfo *, GLXContext, Bool);
55 FIPS_GLXCREATECONTEXT_FN my_glXCreateContext;
56
57 typedef void (*FIPS_GLXDESTROYCONTEXT_FN)(Display *, GLXContext);
58 FIPS_GLXDESTROYCONTEXT_FN my_glXDestroyContext;
59
60 typedef Bool (*FIPS_GLXMAKECURRENT_FN)(Display *, GLXDrawable, GLXContext);
61 FIPS_GLXMAKECURRENT_FN my_glXMakeCurrent;
62
63 typedef void (*FIPS_GLXSWAPBUFFERS_FN)(Display *, GLXDrawable);
64 FIPS_GLXSWAPBUFFERS_FN my_glXSwapBuffers;
65
66 #define COMMON_GL_PREFIX my_
67 #include "common.c"
68
69 static void
70 resolve_symbols (void)
71 {
72         my_glClear = (FIPS_GLCLEAR_FN) glXGetProcAddressARB ((GLubyte*) "glClear");
73         if (my_glClear == NULL) {
74                 fprintf (stderr, "Failed to glXGetProcAddressARB glClear\n");
75                 exit (1);
76         }
77
78         my_glClearColor = (FIPS_GLCLEARCOLOR_FN) glXGetProcAddressARB ((GLubyte*) "glClearColor");
79         if (my_glClearColor == NULL) {
80                 fprintf (stderr, "Failed to glXGetProcAddressARB glClearColor\n");
81                 exit (1);
82         }
83
84         my_glViewport = (FIPS_GLVIEWPORT_FN) glXGetProcAddressARB ((GLubyte*) "glViewport");
85         if (my_glViewport == NULL) {
86                 fprintf (stderr, "Failed to glXGetProcAddressARB glViewport\n");
87                 exit (1);
88         }
89
90         my_glXChooseVisual = (FIPS_GLXCHOOSEVISUAL_FN) glXGetProcAddressARB ((GLubyte*) "glXChooseVisual");
91         if (my_glXChooseVisual == NULL) {
92                 fprintf (stderr, "Failed to glXGetProcAddressARB glXChooseVisual\n");
93                 exit (1);
94         }
95
96         my_glXCreateContext = (FIPS_GLXCREATECONTEXT_FN) glXGetProcAddressARB ((GLubyte*) "glXCreateContext");
97         if (my_glXCreateContext == NULL) {
98                 fprintf (stderr, "Failed to glXGetProcAddressARB glXCreateContext\n");
99                 exit (1);
100         }
101
102         my_glXDestroyContext = (FIPS_GLXDESTROYCONTEXT_FN) glXGetProcAddressARB ((GLubyte*) "glXDestroyContext");
103         if (my_glXDestroyContext == NULL) {
104                 fprintf (stderr, "Failed to glXGetProcAddressARB glXDestroyContext\n");
105                 exit (1);
106         }
107
108         my_glXMakeCurrent = (FIPS_GLXMAKECURRENT_FN) glXGetProcAddressARB ((GLubyte*) "glXMakeCurrent");
109         if (my_glXMakeCurrent == NULL) {
110                 fprintf (stderr, "Failed to glXGetProcAddressARB glXMakeCurrent\n");
111                 exit (1);
112         }
113
114         my_glXSwapBuffers = (FIPS_GLXSWAPBUFFERS_FN) glXGetProcAddressARB ((GLubyte*) "glXSwapBuffers");
115         if (my_glXSwapBuffers == NULL) {
116                 fprintf (stderr, "Failed to glXGetProcAddressARB glXSwapBuffers\n");
117                 exit (1);
118         }
119 }
120
121 int
122 main (void)
123 {
124         Display *dpy;
125         Window window;
126         GLXContext ctx;
127         XVisualInfo *visual_info;
128
129         resolve_symbols ();
130
131         dpy = util_x11_init_display ();
132
133         common_create_glx_context (dpy, &ctx, &visual_info);
134
135         window = util_x11_init_window (dpy, visual_info);
136
137         common_make_current (dpy, ctx, window);
138
139         common_handle_events (dpy, dpy, window);
140
141         util_x11_fini_window (dpy, window);
142
143         util_x11_fini_display (dpy);
144
145         return 0;
146 }