You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
glGetQueryObjectiv are called in line 448 and line 505 in EXT_disjoint_timer_query.txt(also EXT_timer_query.txt and ARB_timer_query.txt and some other files)
/* Wait for the query result to become available */while (!available) {
glGetQueryObjectiv(queries[1], GL_QUERY_RESULT_AVAILABLE, &available);
}
But I can't find such a function in header files.
I can only find glGetQueryObjectivEXT in gl2ext.h and glGetQueryObjectuiv in gl32.hgl31.hgl3.h
The text was updated successfully, but these errors were encountered:
Strangely, this function cannot be found by github.
I still recommend glGetQueryObjectuiv instead of glGetQueryObjectiv, since these extensions are likely to be implemented in opengles (as in my case), and opengles does not have a glGetQueryObjectiv function
glGetQueryObjectiv
are called in line 448 and line 505 inEXT_disjoint_timer_query.txt
(alsoEXT_timer_query.txt
andARB_timer_query.txt
and some other files)But I can't find such a function in header files.
I can only find
glGetQueryObjectivEXT
ingl2ext.h
andglGetQueryObjectuiv
ingl32.h
gl31.h
gl3.h
The text was updated successfully, but these errors were encountered: