Searched refs:fbName (Results 1 - 5 of 5) sorted by relevance

/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.h43 uint32_t* texName, uint32_t* fbName, uint32_t* status);
44 virtual void unbindFramebuffer(uint32_t texName, uint32_t fbName);
H A DGLES20RenderEngine.h58 uint32_t* texName, uint32_t* fbName, uint32_t* status);
59 virtual void unbindFramebuffer(uint32_t texName, uint32_t fbName);
H A DRenderEngine.h54 virtual void bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) = 0;
55 virtual void unbindFramebuffer(uint32_t texName, uint32_t fbName) = 0;
H A DGLES11RenderEngine.cpp219 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
234 *fbName = name;
237 void GLES11RenderEngine::unbindFramebuffer(uint32_t texName, uint32_t fbName) { argument
239 glDeleteFramebuffersOES(1, &fbName);
218 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument
H A DGLES20RenderEngine.cpp188 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
202 *fbName = name;
205 void GLES20RenderEngine::unbindFramebuffer(uint32_t texName, uint32_t fbName) { argument
207 glDeleteFramebuffers(1, &fbName);
187 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument

Completed in 58 milliseconds