Add glDepthFunc()

This commit is contained in:
Pierre Pronchery 2016-09-09 02:14:30 +02:00
parent fa6aa1022f
commit 29ddf32004
3 changed files with 6 additions and 1 deletions

View File

@ -26,6 +26,9 @@ arg1=INT32
arg2=INT32
arg3=INT32
[call::glDepthFunc]
arg1=UINT32
[call::glDisable]
arg1=UINT32

View File

@ -64,7 +64,8 @@ typedef enum _GServerVideoProto1i
typedef enum _GServerVideoProto1u
{
GSERVER_VIDEO_PROTO1u_glDisable = 0,
GSERVER_VIDEO_PROTO1u_glDepthFunc = 0,
GSERVER_VIDEO_PROTO1u_glDisable,
GSERVER_VIDEO_PROTO1u_glDisableClientState,
GSERVER_VIDEO_PROTO1u_glEnable,
GSERVER_VIDEO_PROTO1u_glEnableClientState,

View File

@ -366,6 +366,7 @@ GSERVER_PROTO1i(void, glBegin, uint32_t)
GSERVER_PROTO1i(void, glClear, uint32_t)
/* proto1u */
GSERVER_PROTO1u(void, glDepthFunc, uint32_t)
GSERVER_PROTO1u(void, glDisable, uint32_t)
GSERVER_PROTO1u(void, glDisableClientState, uint32_t)
GSERVER_PROTO1u(void, glEnable, uint32_t)