LayerRenderer.h revision 8a1374946a928fcba7495c87ff6adda327fdfb9f
1/* 2 * Copyright (C) 2011 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17#ifndef ANDROID_HWUI_LAYER_RENDERER_H 18#define ANDROID_HWUI_LAYER_RENDERER_H 19 20#include <cutils/compiler.h> 21 22#include "OpenGLRenderer.h" 23#include "Layer.h" 24 25#include <SkBitmap.h> 26 27namespace android { 28namespace uirenderer { 29 30/////////////////////////////////////////////////////////////////////////////// 31// Defines 32/////////////////////////////////////////////////////////////////////////////// 33 34// Debug 35#if DEBUG_LAYER_RENDERER 36 #define LAYER_RENDERER_LOGD(...) ALOGD(__VA_ARGS__) 37#else 38 #define LAYER_RENDERER_LOGD(...) 39#endif 40 41/////////////////////////////////////////////////////////////////////////////// 42// Renderer 43/////////////////////////////////////////////////////////////////////////////// 44 45class LayerRenderer: public OpenGLRenderer { 46public: 47 ANDROID_API LayerRenderer(Layer* layer); 48 virtual ~LayerRenderer(); 49 50 virtual void setViewport(int width, int height); 51 virtual int prepareDirty(float left, float top, float right, float bottom, bool opaque); 52 virtual void finish(); 53 54 ANDROID_API static Layer* createTextureLayer(bool isOpaque); 55 ANDROID_API static Layer* createLayer(uint32_t width, uint32_t height, bool isOpaque = false); 56 ANDROID_API static bool resizeLayer(Layer* layer, uint32_t width, uint32_t height); 57 ANDROID_API static void updateTextureLayer(Layer* layer, uint32_t width, uint32_t height, 58 bool isOpaque, GLenum renderTarget, float* transform); 59 ANDROID_API static void destroyLayer(Layer* layer); 60 ANDROID_API static void destroyLayerDeferred(Layer* layer); 61 ANDROID_API static bool copyLayer(Layer* layer, SkBitmap* bitmap); 62 63 static void flushLayer(Layer* layer); 64 65protected: 66 virtual bool hasLayer(); 67 virtual Region* getRegion(); 68 virtual GLint getTargetFbo(); 69 virtual bool suppressErrorChecks(); 70 71private: 72 void generateMesh(); 73 74 Layer* mLayer; 75}; // class LayerRenderer 76 77}; // namespace uirenderer 78}; // namespace android 79 80#endif // ANDROID_HWUI_LAYER_RENDERER_H 81