Mercurial > sdl-ios-xcode
view android/testproject/jni/egltypes.h @ 4715:9bb98766eed0
Shut down the C application properly on quit instead of crashing in the most horrible way possible
author | Paul Hunkin <paul@bieh.net> |
---|---|
date | Tue, 27 Jul 2010 10:20:22 +0200 |
parents | f3f65cb6a382 |
children |
line wrap: on
line source
/* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ANDROID_EGL_TYPES_H #define ANDROID_EGL_TYPES_H #include <sys/types.h> #ifdef __cplusplus extern "C" { #endif typedef unsigned int EGLBoolean; typedef int32_t EGLint; typedef int EGLenum; typedef void *EGLDisplay; typedef void *EGLConfig; typedef void *EGLSurface; typedef void *EGLContext; typedef void *EGLClientBuffer; #define EGL_DEFAULT_DISPLAY ((NativeDisplayType)0) #define EGL_NO_CONTEXT ((EGLContext)0) #define EGL_NO_DISPLAY ((EGLDisplay)0) #define EGL_NO_SURFACE ((EGLSurface)0) #ifdef __cplusplus } #endif #endif /* ANDROID_EGL_TYPES_H */