mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 09:56:22 +01:00
renderapi: add glcore context and gl4es wrapper
This commit is contained in:
parent
6e6185dba2
commit
1b4f997951
@ -111,16 +111,18 @@ typedef enum
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CONTEXT_TYPE_GL = 0,
|
||||
CONTEXT_TYPE_GL = 0, // compatibility profile
|
||||
CONTEXT_TYPE_GLES_1_X,
|
||||
CONTEXT_TYPE_GLES_2_X
|
||||
CONTEXT_TYPE_GLES_2_X,
|
||||
CONTEXT_TYPE_GL_CORE
|
||||
} gl_context_type_t;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
GLES_WRAPPER_NONE = 0, // native GLES
|
||||
GLES_WRAPPER_NONE = 0, // native GL
|
||||
GLES_WRAPPER_NANOGL, // used on GLES platforms
|
||||
GLES_WRAPPER_WES, // used on GLES platforms
|
||||
GLES_WRAPPER_GL4ES, // used on GLES platforms
|
||||
} gles_wrapper_t;
|
||||
|
||||
// 30 bytes here
|
||||
|
Loading…
Reference in New Issue
Block a user