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

Function glBindFramebuffer

server/faker-gl.cpp:138–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136
137
138void glBindFramebuffer(GLenum target, GLuint framebuffer)
139{
140 if(faker::getOGLExcludeCurrent() || faker::getEGLXContextCurrent())
141 {
142 _glBindFramebuffer(target, framebuffer);
143 return;
144 }
145
146 TRY();
147
148 backend::bindFramebuffer(target, framebuffer);
149
150 CATCH();
151}
152
153void glBindFramebufferEXT(GLenum target, GLuint framebuffer)
154{

Callers 1

readbackTestMSFunction · 0.85

Calls 1

bindFramebufferFunction · 0.85

Tested by

no test coverage detected