Home | History | Annotate | Download | only in hwui

Lines Matching defs:fbo

48     LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo());
89 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo());
91 // No need to unbind our FBO, this will be taken care of by the caller
191 GLuint fbo = caches.fboCache.get();
192 if (!fbo) {
193 ALOGW("Could not obtain an FBO");
219 layer->setFbo(fbo);
242 ALOGE("Could not allocate texture for layer (fbo=%d %dx%d)", fbo, width, height);
259 LAYER_RENDERER_LOGD("Resizing layer fbo = %d to %dx%d", layer->getFbo(), width, height);
315 LAYER_RENDERER_LOGD("Recycling layer, %dx%d fbo = %d",
334 LAYER_RENDERER_LOGD("Deferring layer destruction, fbo = %d", layer->getFbo());
342 GLuint fbo = layer->getFbo();
343 if (layer && fbo) {
349 if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, fbo);
354 if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
365 GLuint fbo = caches.fboCache.get();
366 if (!fbo) {
367 ALOGW("Could not obtain an FBO");
408 layer->setFbo(fbo);
412 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
481 caches.fboCache.put(fbo);