mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
GL: Fixed imports.
This commit is contained in:
parent
ab39c82401
commit
a1558e9986
2 changed files with 6 additions and 0 deletions
|
@ -505,6 +505,7 @@ GL_IMPORT_NV___(true, PFNGLGENQUERIESPROC, glGenQueries)
|
|||
GL_IMPORT_NV___(true, PFNGLDELETEQUERIESPROC, glDeleteQueries);
|
||||
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 (true, PFNGLINVALIDATEFRAMEBUFFERPROC, glInvalidateFramebuffer, glDiscardFramebufferEXT);
|
||||
|
@ -567,6 +568,7 @@ GL_IMPORT______(true, PFNGLGENQUERIESPROC, glGenQueries)
|
|||
GL_IMPORT______(true, PFNGLDELETEQUERIESPROC, glDeleteQueries);
|
||||
GL_IMPORT______(true, PFNGLBEGINQUERYPROC, glBeginQuery);
|
||||
GL_IMPORT______(true, PFNGLENDQUERYPROC, glEndQuery);
|
||||
GL_IMPORT______(true, PFNGLGETQUERYOBJECTIVPROC, glGetQueryObjectiv);
|
||||
GL_IMPORT______(true, PFNGLGETQUERYOBJECTUI64VPROC, glGetQueryObjectui64v);
|
||||
|
||||
GL_IMPORT______(true, PFNGLDRAWARRAYSINDIRECTPROC, glDrawArraysIndirect);
|
||||
|
|
|
@ -393,6 +393,10 @@ typedef uint64_t GLuint64;
|
|||
# define GL_QUERY_RESULT 0x8866
|
||||
#endif // GL_QUERY_RESULT
|
||||
|
||||
#ifndef GL_QUERY_RESULT_AVAILABLE
|
||||
# define GL_QUERY_RESULT_AVAILABLE 0x8867
|
||||
#endif // GL_QUERY_RESULT_AVAILABLE
|
||||
|
||||
#ifndef GL_READ_FRAMEBUFFER
|
||||
# define GL_READ_FRAMEBUFFER 0x8CA8
|
||||
#endif /// GL_READ_FRAMEBUFFER
|
||||
|
|
Loading…
Reference in a new issue