igl.h

来自「Brew 中使用的 OpenGL ES Extension源码。可以在Brew中」· C头文件 代码 · 共 67 行

H
67
字号
#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 + =
减小字号Ctrl + -
显示快捷键?