]> git.cworth.org Git - fips/blob - test/egl-glesv2-link-gpa.c
test: Add 4 tests using EGL and OpenGLESv2
[fips] / test / egl-glesv2-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 OpenGLESv2 context
25  *      2. By directly linking with libEGL.so and libGLESv2.so
26  *      3. By using eglGetProcAddress to lookup OpenGL functions
27  */
28
29 #define GL_GLEXT_PROTOTYPES
30 #include <GLES2/gl2.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_GLVIEWPORT_FN)(GLint, GLint, GLsizei, GLsizei);
49 FIPS_GLVIEWPORT_FN my_glViewport;
50
51 #define COMMON_USE_EGL
52 #define COMMON_GL_PREFIX my_
53 #define COMMON_EGL_PREFIX
54 #include "common.c"
55
56 static void
57 resolve_symbols (void)
58 {
59         my_glClear = (FIPS_GLCLEAR_FN) eglGetProcAddress ("glClear");
60         if (my_glClear == NULL) {
61                 fprintf (stderr, "Failed to eglGetProcAddress glClear\n");
62                 exit (1);
63         }
64
65         my_glClearColor = (FIPS_GLCLEARCOLOR_FN) eglGetProcAddress ("glClearColor");
66         if (my_glClearColor == NULL) {
67                 fprintf (stderr, "Failed to eglGetProcAddress glClearColor\n");
68                 exit (1);
69         }
70
71         my_glViewport = (FIPS_GLVIEWPORT_FN) eglGetProcAddress ("glViewport");
72         if (my_glViewport == NULL) {
73                 fprintf (stderr, "Failed to eglGetProcAddress glViewport\n");
74                 exit (1);
75         }
76 }
77
78 int
79 main (void)
80 {
81         Display *dpy;
82         Window window;
83         EGLDisplay egl_dpy;
84         EGLContext ctx;
85         EGLConfig config;
86         EGLSurface surface;
87         XVisualInfo *visual_info;
88
89         resolve_symbols ();
90
91         dpy = util_x11_init_display ();
92
93         common_create_egl_context (dpy, EGL_OPENGL_ES_API, &egl_dpy,
94                                    &ctx, &config, &visual_info);
95
96         window = util_x11_init_window (dpy, visual_info);
97
98         surface = eglCreateWindowSurface (egl_dpy, config, window, NULL);
99
100         common_make_current (egl_dpy, ctx, surface);
101
102         common_handle_events (dpy, egl_dpy, surface);
103
104         util_x11_fini_window (dpy, window);
105
106         util_x11_fini_display (dpy);
107
108         return 0;
109 }