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

Function glGetFramebufferAttachmentParameteriv

server/faker-gl.cpp:507–521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

505
506
507void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment,
508 GLenum pname, GLint *params)
509{
510 if(faker::getOGLExcludeCurrent() || faker::getEGLXContextCurrent())
511 {
512 _glGetFramebufferAttachmentParameteriv(target, attachment, pname, params);
513 return;
514 }
515
516 TRY();
517
518 backend::getFramebufferAttachmentParameteriv(target, attachment, pname, params);
519
520 CATCH();
521}
522
523
524void glGetFramebufferParameteriv(GLenum target, GLenum pname, GLint *params)

Callers

nothing calls this directly

Tested by

no test coverage detected