📄 aeegl.h
字号:
IGL_QueryInterface()
Description:
This function queries the IGL interface
Prototype:
int IGL_QueryInterface( IGL *pMe, AEECLSID clsid, void **ppNew )
Parameters:
pMe : Pointer to IGL instance
clsid : Class id
ppNew : Address of pointer to be set
Return Value:
SUCCESS, on success~
EUNSUPPORTED, otherwise
========================================================================
==========================================================================
IGL_glActiveTexture()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glActiveTexture.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glActiveTexture( IGL *pIGL, GLenum texture );
Parameters:
pIGL : A pointer to the IGL interface
texture : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glAlphaFuncx()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glAlphaFuncx.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glAlphaFuncx( IGL *pIGL, GLenum func, GLclampx ref );
Parameters:
pIGL : A pointer to the IGL interface
func : See Khronos documentation for details
ref : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glBindTexture()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glBindTexture.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glBindTexture( IGL *pIGL, GLenum target, GLuint texture );
Parameters:
pIGL : A pointer to the IGL interface
target : See Khronos documentation for details
texture : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glBlendFunc()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glBlendFunc.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glBlendFunc( IGL *pIGL, GLenum sfactor, GLenum dfactor );
Parameters:
pIGL : A pointer to the IGL interface
sfactor : See Khronos documentation for details
dfactor : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glClear()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glClear.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glClear( IGL *pIGL, GLbitfield mask );
Parameters:
pIGL : A pointer to the IGL interface
mask : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glClearColorx()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glClearColorx.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glClearColorx( IGL *pIGL, GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha );
Parameters:
pIGL : A pointer to the IGL interface
red : See Khronos documentation for details
green : See Khronos documentation for details
blue : See Khronos documentation for details
alpha : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glClearDepthx()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glClearDepthx.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glClearDepthx( IGL *pIGL, GLclampx depth );
Parameters:
pIGL : A pointer to the IGL interface
depth : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glClearStencil()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glClearStencil.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glClearStencil( IGL *pIGL, GLint s );
Parameters:
pIGL : A pointer to the IGL interface
s : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glClientActiveTexture()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glClientActiveTexture.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glClientActiveTexture( IGL *pIGL, GLenum texture );
Parameters:
pIGL : A pointer to the IGL interface
texture : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glColor4x()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glColor4x.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glColor4x( IGL *pIGL, GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha );
Parameters:
pIGL : A pointer to the IGL interface
red : See Khronos documentation for details
green : See Khronos documentation for details
blue : See Khronos documentation for details
alpha : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glColorMask()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glColorMask.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glColorMask( IGL *pIGL, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha );
Parameters:
pIGL : A pointer to the IGL interface
red : See Khronos documentation for details
green : See Khronos documentation for details
blue : See Khronos documentation for details
alpha : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
===/a>
==========================================================================
IGL_glColorPointer()
Description:
This function is the BREW wrapper for the standard OpenGLES 1.0
function glColorPointer.
See the Khronos website at
===a href="http://www.khronos.org">www.khronos.org
===/a>
for documentation on the standard gl functions.
Prototype:
void IGL_glColorPointer( IGL *pIGL, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer );
Parameters:
pIGL : A pointer to the IGL interface
size : See Khronos documentation for details
type : See Khronos documentation for details
stride : See Khronos documentation for details
pointer : See Khronos documentation for details
Return Value:
void
Side Effects:
None
Version:
1.0
See Also:
IGL Interface
===a href="http://www.khronos.org">www.khronos.org
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -