]> git.cworth.org Git - fips/blob - test/egl-opengl-link-gpa.c
test: Add remaining three egl-opengl tests
[fips] / test / egl-opengl-link-gpa.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 EGL to construct an OpenGL context
25  *      2. By directly linking with libEGL.so and libGL.so
26  *      3. By using eglGetProcAddress to lookup OpenGL functions
27  */
28
29 #define GL_GLEXT_PROTOTYPES
30 #include <GL/gl.h>
31 #include <EGL/egl.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  * glxGetProcAddress to lookup core functions, so we provide our own
41  * 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_GLLOADIDENTITY_FN)(void);
49 FIPS_GLLOADIDENTITY_FN my_glLoadIdentity;
50
51 typedef void (*FIPS_GLMATRIXMODE_FN)(GLenum);
52 FIPS_GLMATRIXMODE_FN my_glMatrixMode;
53
54 typedef void (*FIPS_GLORTHO_FN)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
55 FIPS_GLORTHO_FN my_glOrtho;
56
57 typedef void (*FIPS_GLVIEWPORT_FN)(GLint, GLint, GLsizei, GLsizei);
58 FIPS_GLVIEWPORT_FN my_glViewport;
59
60 #define COMMON_USE_EGL
61 #define COMMON_GL_PREFIX my_
62 #define COMMON_EGL_PREFIX
63 #include "common.c"
64
65 static void
66 resolve_symbols (void)
67 {
68         my_glClear = (FIPS_GLCLEAR_FN) eglGetProcAddress ("glClear");
69         if (my_glClear == NULL) {
70                 fprintf (stderr, "Failed to eglGetProcAddress glClear\n");
71                 exit (1);
72         }
73
74         my_glClearColor = (FIPS_GLCLEARCOLOR_FN) eglGetProcAddress ("glClearColor");
75         if (my_glClearColor == NULL) {
76                 fprintf (stderr, "Failed to eglGetProcAddress glClearColor\n");
77                 exit (1);
78         }
79
80         my_glLoadIdentity = (FIPS_GLLOADIDENTITY_FN) eglGetProcAddress ("glLoadIdentity");
81         if (my_glLoadIdentity == NULL) {
82                 fprintf (stderr, "Failed to eglGetProcAddress glLoadIdentity\n");
83                 exit (1);
84         }
85
86         my_glMatrixMode = (FIPS_GLMATRIXMODE_FN) eglGetProcAddress ("glMatrixMode");
87         if (my_glMatrixMode == NULL) {
88                 fprintf (stderr, "Failed to eglGetProcAddress glMatrixMode\n");
89                 exit (1);
90         }
91
92         my_glOrtho = (FIPS_GLORTHO_FN) eglGetProcAddress ("glOrtho");
93         if (my_glOrtho == NULL) {
94                 fprintf (stderr, "Failed to eglGetProcAddress glOrtho\n");
95                 exit (1);
96         }
97
98         my_glViewport = (FIPS_GLVIEWPORT_FN) eglGetProcAddress ("glViewport");
99         if (my_glViewport == NULL) {
100                 fprintf (stderr, "Failed to eglGetProcAddress glViewport\n");
101                 exit (1);
102         }
103 }
104
105 int
106 main (void)
107 {
108         Display *dpy;
109         Window window;
110         EGLDisplay egl_dpy;
111         EGLContext ctx;
112         EGLConfig config;
113         EGLSurface surface;
114         XVisualInfo *visual_info;
115
116         resolve_symbols ();
117
118         dpy = util_x11_init_display ();
119
120         common_create_egl_context (dpy, EGL_OPENGL_API, &egl_dpy,
121                                    &ctx, &config, &visual_info);
122
123         window = util_x11_init_window (dpy, visual_info);
124
125         surface = eglCreateWindowSurface (egl_dpy, config, window, NULL);
126
127         common_make_current (egl_dpy, ctx, surface);
128
129         common_handle_events (dpy, egl_dpy, surface);
130
131         util_x11_fini_window (dpy, window);
132
133         util_x11_fini_display (dpy);
134
135         return 0;
136 }