mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-16 11:50:19 -05:00
Fixed Android build.
This commit is contained in:
parent
717aab94bc
commit
384b45bec1
2 changed files with 6 additions and 0 deletions
|
@ -533,6 +533,7 @@ GL_IMPORT_NV___(true, PFNGLBEGINQUERYPROC, glBeginQuery)
|
|||
GL_IMPORT_NV___(true, PFNGLENDQUERYPROC, glEndQuery);
|
||||
GL_IMPORT_NV___(true, PFNGLGETQUERYOBJECTIVPROC, glGetQueryObjectiv);
|
||||
GL_IMPORT_NV___(true, PFNGLGETQUERYOBJECTUI64VPROC, glGetQueryObjectui64v);
|
||||
GL_IMPORT_NV___(true, PFNGLQUERYCOUNTERPROC, glQueryCounter);
|
||||
|
||||
GL_IMPORT (true, PFNGLINVALIDATEFRAMEBUFFERPROC, glInvalidateFramebuffer, glDiscardFramebufferEXT);
|
||||
|
||||
|
@ -597,6 +598,7 @@ GL_IMPORT______(true, PFNGLBEGINQUERYPROC, glBeginQuery)
|
|||
GL_IMPORT______(true, PFNGLENDQUERYPROC, glEndQuery);
|
||||
GL_IMPORT______(true, PFNGLGETQUERYOBJECTIVPROC, glGetQueryObjectiv);
|
||||
GL_IMPORT______(true, PFNGLGETQUERYOBJECTUI64VPROC, glGetQueryObjectui64v);
|
||||
GL_IMPORT______(true, PFNGLQUERYCOUNTERPROC, glQueryCounter);
|
||||
|
||||
GL_IMPORT______(true, PFNGLDRAWARRAYSINDIRECTPROC, glDrawArraysIndirect);
|
||||
GL_IMPORT______(true, PFNGLDRAWELEMENTSINDIRECTPROC, glDrawElementsIndirect);
|
||||
|
|
|
@ -509,6 +509,10 @@ typedef uint64_t GLuint64;
|
|||
# define GL_TIME_ELAPSED 0x88BF
|
||||
#endif // GL_TIME_ELAPSED
|
||||
|
||||
#ifndef GL_TIMESTAMP
|
||||
# define GL_TIMESTAMP 0x8E28
|
||||
#endif // GL_TIMESTAMP
|
||||
|
||||
#ifndef GL_VBO_FREE_MEMORY_ATI
|
||||
# define GL_VBO_FREE_MEMORY_ATI 0x87FB
|
||||
#endif // GL_VBO_FREE_MEMORY_ATI
|
||||
|
|
Loading…
Reference in a new issue