egltypes.h

来自「S3C6410 SMDK6410 WinCE6.0 OpenGL ES 2.0 」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef __egltypes_h__#define __egltypes_h__//#include <stdio.h>#include <windows.h>/*** Types and resources*/typedef int EGLBoolean;typedef int EGLint;typedef void *EGLDisplay;typedef void *EGLConfig;typedef void *EGLSurface;typedef void *EGLContext;typedef void *NativeDisplayType;typedef void *NativeWindowType ;typedef void *NativePixmapType ;/*** EGL and native handle values*/#define EGL_DEFAULT_DISPLAY ((NativeDisplayType)0)#define EGL_DEFAULT_LCD_DISPLAY ((EGLDisplay)1)#define EGL_NO_CONTEXT ((EGLContext)0)#define EGL_NO_DISPLAY ((EGLDisplay)0)#define EGL_NO_SURFACE ((EGLSurface)0)#define ALLOC_MEM(x) malloc(x)#define FREE_MEM(x) free(x)#endif /* __egltypes_h__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?