📄 igl.h
字号:
#ifndef IGL_H
#define IGL_H
/*=================================================================================
FILE: IGL.h
SERVICES: OpenGL-ES 3D graphics interfaces
EGL windowing interfaces
DESCRIPTION:
Copyright (c) 2003 QUALCOMM Incorporated.
All Rights Reserved.
QUALCOMM Proprietary/GTDR
=================================================================================*/
////
////
//// DO NOT EDIT THIS FILE
////
////
/*-------------------------------------------------------------------------------*
* I N C L U D E F I L E S *
*-------------------------------------------------------------------------------*/
#include "AEEGL.h"
#ifdef __cplusplus
extern "C"
{
#endif
/*-------------------------------------------------------------------------------*
* I N I T F U N C T I O N S *
*-------------------------------------------------------------------------------*/
#if !defined(BREW_STATIC_APP)
void IGL_Init(IGL *pIGL);
void IEGL_Init(IEGL *pIEGL);
#else
#define IGL_Init( a )
#define IEGL_Init( a )
#endif
/*-------------------------------------------------------------------------------*
* G L O B A L S *
*-------------------------------------------------------------------------------*/
#if defined(__ARMCC_VERSION) && !defined(AEE_STATIC)
extern IGL *const gpIGL;
#define GPIGL (*(IGL**)&gpIGL)
extern IEGL *const gpIEGL;
#define GPIEGL (*(IEGL**)&gpIEGL)
#else
extern IGL *gpIGL;
#define GPIGL (gpIGL)
extern IEGL *gpIEGL;
#define GPIEGL (gpIEGL)
#endif
#ifdef __cplusplus
}
#endif
#endif //IGL_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -