mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 14:09:06 +00:00
d4282221fc
This reverts commit b2abcff02d
.
14 lines
321 B
C
14 lines
321 B
C
/* OpenGL ES-specific. --ryan. */
|
|
/* I should probably put an official GLES header in here instead. Oh well. */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
|
|
void glClearDepthf(GLclampf depth);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|