MCPcopy Create free account
hub / github.com/VirtualGL/virtualgl / glBindFramebufferEXT

Function glBindFramebufferEXT

server/faker-gl.cpp:153–166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153void glBindFramebufferEXT(GLenum target, GLuint framebuffer)
154{
155 if(faker::getOGLExcludeCurrent() || faker::getEGLXContextCurrent())
156 {
157 _glBindFramebufferEXT(target, framebuffer);
158 return;
159 }
160
161 TRY();
162
163 backend::bindFramebuffer(target, framebuffer, true);
164
165 CATCH();
166}
167
168
169void glDeleteFramebuffers(GLsizei n, const GLuint *framebuffers)

Callers 4

offScreenTestFunction · 0.85
offScreenTestFunction · 0.85
drawableInitFunction · 0.85
mainFunction · 0.85

Calls 1

bindFramebufferFunction · 0.85

Tested by 2

drawableInitFunction · 0.68
mainFunction · 0.68