MCPcopy Create free account
hub / github.com/SpartanJ/eepp / checkFramebufferStatus

Method checkFramebufferStatus

src/eepp/graphics/renderer/renderer.cpp:831–842  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

829}
830
831unsigned int Renderer::checkFramebufferStatus( unsigned int target ) {
832 static pglCheckFramebufferStatus eeglCheckFramebufferStatus = NULL;
833
834 if ( NULL == eeglCheckFramebufferStatus )
835 eeglCheckFramebufferStatus =
836 (pglCheckFramebufferStatus)getProcAddress( "glCheckFramebufferStatus" );
837
838 if ( NULL != eeglCheckFramebufferStatus )
839 return (unsigned int)eeglCheckFramebufferStatus( target );
840
841 return 0;
842}
843
844void Renderer::discardFramebuffer( unsigned int target, int numAttachments,
845 const unsigned int* attachments ) {

Callers 1

createMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected