blob: d439eb2fbfb74a9d8a55dd21c1434f483ee7b897 [file] [log] [blame]
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001/* San Angeles Observation OpenGL ES version example
2 * Copyright 2004-2005 Jetro Lauha
3 * All rights reserved.
4 * Web: http://iki.fi/jetro/
5 *
6 * This source is free software; you can redistribute it and/or
7 * modify it under the terms of EITHER:
8 * (1) The GNU Lesser General Public License as published by the Free
9 * Software Foundation; either version 2.1 of the License, or (at
10 * your option) any later version. The text of the GNU Lesser
11 * General Public License is included with this source in the
12 * file LICENSE-LGPL.txt.
13 * (2) The BSD-style license that is included with this source in
14 * the file LICENSE-BSD.txt.
15 *
16 * This source is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files
19 * LICENSE-LGPL.txt and LICENSE-BSD.txt for more details.
20 *
21 * $Id: app-linux.c,v 1.4 2005/02/08 18:42:48 tonic Exp $
22 * $Revision: 1.4 $
23 *
24 * Parts of this source file is based on test/example code from
25 * GLESonGL implementation by David Blythe. Here is copy of the
26 * license notice from that source:
27 *
28 * Copyright (C) 2003 David Blythe All Rights Reserved.
29 *
30 * Permission is hereby granted, free of charge, to any person obtaining a
31 * copy of this software and associated documentation files (the "Software"),
32 * to deal in the Software without restriction, including without limitation
33 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
34 * and/or sell copies of the Software, and to permit persons to whom the
35 * Software is furnished to do so, subject to the following conditions:
36 *
37 * The above copyright notice and this permission notice shall be included
38 * in all copies or substantial portions of the Software.
39 *
40 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
41 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
42 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
43 * DAVID BLYTHE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
44 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
45 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
46 */
47
48#include <stdlib.h>
49#include <stdio.h>
50#include <sys/time.h>
51
52#include <GLES/egl.h>
53
54#include "app.h"
55
56
57int gAppAlive = 1;
58
59static const char sAppName[] =
60 "San Angeles Observation OpenGL ES version example (Linux)";
61
62static int sWindowWidth = WINDOW_DEFAULT_WIDTH;
63static int sWindowHeight = WINDOW_DEFAULT_HEIGHT;
64static EGLDisplay sEglDisplay = EGL_NO_DISPLAY;
65static EGLContext sEglContext = EGL_NO_CONTEXT;
66static EGLSurface sEglSurface = EGL_NO_SURFACE;
67
68const char *egl_strerror(unsigned err)
69{
70 switch(err){
71 case EGL_SUCCESS: return "SUCCESS";
72 case EGL_NOT_INITIALIZED: return "NOT INITIALIZED";
73 case EGL_BAD_ACCESS: return "BAD ACCESS";
74 case EGL_BAD_ALLOC: return "BAD ALLOC";
75 case EGL_BAD_ATTRIBUTE: return "BAD_ATTRIBUTE";
76 case EGL_BAD_CONFIG: return "BAD CONFIG";
77 case EGL_BAD_CONTEXT: return "BAD CONTEXT";
78 case EGL_BAD_CURRENT_SURFACE: return "BAD CURRENT SURFACE";
79 case EGL_BAD_DISPLAY: return "BAD DISPLAY";
80 case EGL_BAD_MATCH: return "BAD MATCH";
81 case EGL_BAD_NATIVE_PIXMAP: return "BAD NATIVE PIXMAP";
82 case EGL_BAD_NATIVE_WINDOW: return "BAD NATIVE WINDOW";
83 case EGL_BAD_PARAMETER: return "BAD PARAMETER";
84 case EGL_BAD_SURFACE: return "BAD_SURFACE";
85// case EGL_CONTEXT_LOST: return "CONTEXT LOST";
86 default: return "UNKNOWN";
87 }
88}
89
90void egl_error(const char *name)
91{
92 unsigned err = eglGetError();
93 if(err != EGL_SUCCESS) {
94 fprintf(stderr,"%s(): egl error 0x%x (%s)\n",
95 name, err, egl_strerror(err));
96 }
97}
98
99static void checkGLErrors()
100{
101 GLenum error = glGetError();
102 if (error != GL_NO_ERROR)
103 fprintf(stderr, "GL Error: 0x%04x\n", (int)error);
104}
105
106
107static void checkEGLErrors()
108{
109 EGLint error = eglGetError();
110 // GLESonGL seems to be returning 0 when there is no errors?
111 if (error && error != EGL_SUCCESS)
112 fprintf(stderr, "EGL Error: 0x%04x\n", (int)error);
113}
114
115static int initGraphics()
116{
117 EGLint s_configAttribs[] = {
118 EGL_RED_SIZE, 5,
119 EGL_GREEN_SIZE, 6,
120 EGL_BLUE_SIZE, 5,
121 #if 1
122 EGL_DEPTH_SIZE, 16,
123 EGL_STENCIL_SIZE, 0,
124 #else
125 EGL_ALPHA_SIZE, EGL_DONT_CARE,
126 EGL_DEPTH_SIZE, EGL_DONT_CARE,
127 EGL_STENCIL_SIZE, EGL_DONT_CARE,
128 EGL_SURFACE_TYPE, EGL_DONT_CARE,
129 #endif
130 EGL_NONE
131 };
132
133 EGLint numConfigs = -1;
134 EGLint majorVersion;
135 EGLint minorVersion;
136 EGLConfig config;
137 EGLContext context;
138 EGLSurface surface;
139
140 EGLDisplay dpy;
141
142 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
143 egl_error("eglGetDisplay");
144 fprintf(stderr,"dpy = 0x%08x\n", (unsigned) dpy);
145
146 eglInitialize(dpy, &majorVersion, &minorVersion);
147 egl_error("eglInitialize");
148
149 eglGetConfigs(dpy, NULL, 0, &numConfigs);
150 egl_error("eglGetConfigs");
151 fprintf(stderr,"num configs %d\n", numConfigs);
152
153 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
154 egl_error("eglChooseConfig");
155
156 surface = eglCreateWindowSurface(dpy, config,
157 android_createDisplaySurface(), NULL);
158 egl_error("eglMapWindowSurface");
159
160 fprintf(stderr,"surface = %p\n", surface);
161
162 context = eglCreateContext(dpy, config, NULL, NULL);
163 egl_error("eglCreateContext");
164 fprintf(stderr,"context = %p\n", context);
165
166 eglMakeCurrent(dpy, surface, surface, context);
167 egl_error("eglMakeCurrent");
168
169 eglQuerySurface(dpy, surface, EGL_WIDTH, &sWindowWidth);
170 eglQuerySurface(dpy, surface, EGL_HEIGHT, &sWindowHeight);
171
172 sEglDisplay = dpy;
173 sEglSurface = surface;
174 sEglContext = context;
175
176 return EGL_TRUE;
177}
178
179
180static void deinitGraphics()
181{
182 eglMakeCurrent(sEglDisplay, NULL, NULL, NULL);
183 eglDestroyContext(sEglDisplay, sEglContext);
184 eglDestroySurface(sEglDisplay, sEglSurface);
185 eglTerminate(sEglDisplay);
186}
187
188
189int main(int argc, char *argv[])
190{
191 // not referenced:
192 argc = argc;
193 argv = argv;
194
195 if (!initGraphics())
196 {
197 fprintf(stderr, "Graphics initialization failed.\n");
198 return EXIT_FAILURE;
199 }
200
201 appInit();
202
203 while (gAppAlive)
204 {
205 struct timeval timeNow;
206
207 if (gAppAlive)
208 {
209 gettimeofday(&timeNow, NULL);
210 appRender(timeNow.tv_sec * 1000 + timeNow.tv_usec / 1000,
211 sWindowWidth, sWindowHeight);
212 checkGLErrors();
213 eglSwapBuffers(sEglDisplay, sEglSurface);
214 checkEGLErrors();
215 }
216 }
217
218 appDeinit();
219 deinitGraphics();
220
221 return EXIT_SUCCESS;
222}