]> git.cworth.org Git - fips/blob - test/glx-dlopen-dlsym.c
test: Add 4 tests using EGL and OpenGLESv2
[fips] / test / glx-dlopen-dlsym.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 using dlopen to dynamically load libGL.so
26  *      3. By using dlsym 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 #include <dlfcn.h>
36
37 #include "util-x11.h"
38
39 void (*my_glClear) (GLbitfield);
40 void (*my_glClearColor) (GLclampf, GLclampf, GLclampf, GLclampf);
41 void (*my_glViewport) (GLint, GLint, GLsizei, GLsizei);
42 XVisualInfo * (*my_glXChooseVisual) (Display *, int, int *);
43 GLXContext (*my_glXCreateContext) (Display *, XVisualInfo *, GLXContext, Bool);
44 void (*my_glXDestroyContext) (Display *, GLXContext);
45 Bool (*my_glXMakeCurrent) (Display *, GLXDrawable, GLXContext);
46 void (*my_glXSwapBuffers) (Display *, GLXDrawable);
47
48 #define COMMON_GL_PREFIX my_
49 #include "common.c"
50
51 static void
52 resolve_symbols (void)
53 {
54         void *gl_handle;
55         char *error;
56
57         gl_handle = dlopen ("libGL.so", RTLD_LAZY);
58         if (gl_handle == NULL) {
59                 fprintf (stderr, "Error: Failed to open libGL.so\n");
60                 exit (1);
61         }
62
63         /* Clear errors. */
64         dlerror();
65
66         my_glClear = dlsym (gl_handle, "glClear");
67         error = dlerror ();
68         if (error) {
69                 fprintf (stderr, "Failed to dlsym glClear: %s\n", error);
70                 exit (1);
71         }
72
73         my_glClearColor = dlsym (gl_handle, "glClearColor");
74         error = dlerror ();
75         if (error) {
76                 fprintf (stderr, "Failed to dlsym glClearColor: %s\n", error);
77                 exit (1);
78         }
79
80         my_glViewport = dlsym (gl_handle, "glViewport");
81         error = dlerror ();
82         if (error) {
83                 fprintf (stderr, "Failed to dlsym glViewport: %s\n", error);
84                 exit (1);
85         }
86
87         my_glXChooseVisual = dlsym (gl_handle, "glXChooseVisual");
88         error = dlerror ();
89         if (error) {
90                 fprintf (stderr, "Failed to dlsym glXChooseVisual: %s\n", error);
91                 exit (1);
92         }
93
94         my_glXCreateContext = dlsym (gl_handle, "glXCreateContext");
95         error = dlerror ();
96         if (error) {
97                 fprintf (stderr, "Failed to dlsym glXCreateContext: %s\n", error);
98                 exit (1);
99         }
100
101         my_glXDestroyContext = dlsym (gl_handle, "glXDestroyContext");
102         error = dlerror ();
103         if (error) {
104                 fprintf (stderr, "Failed to dlsym glXDestroyContext: %s\n", error);
105                 exit (1);
106         }
107
108         my_glXMakeCurrent = dlsym (gl_handle, "glXMakeCurrent");
109         error = dlerror ();
110         if (error) {
111                 fprintf (stderr, "Failed to dlsym glXMakeCurrent: %s\n", error);
112                 exit (1);
113         }
114
115         my_glXSwapBuffers = dlsym (gl_handle, "glXSwapBuffers");
116         error = dlerror ();
117         if (error) {
118                 fprintf (stderr, "Failed to dlsym glXSwapBuffers: %s\n", error);
119                 exit (1);
120         }
121 }
122
123 int
124 main (void)
125 {
126         Display *dpy;
127         Window window;
128         GLXContext ctx;
129         XVisualInfo *visual_info;
130
131         resolve_symbols ();
132
133         dpy = util_x11_init_display ();
134
135         common_create_glx_context (dpy, &ctx, &visual_info);
136
137         window = util_x11_init_window (dpy, visual_info);
138
139         common_make_current (dpy, ctx, window);
140
141         common_handle_events (dpy, dpy, window);
142
143         util_x11_fini_window (dpy, window);
144
145         util_x11_fini_display (dpy);
146
147         return 0;
148 }