Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 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 | |
Romain Guy | 7953745 | 2011-10-12 13:48:51 -0700 | [diff] [blame] | 20 | #include <cutils/compiler.h> |
| 21 | |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 22 | #include "OpenGLRenderer.h" |
Romain Guy | ada830f | 2011-01-13 12:13:20 -0800 | [diff] [blame] | 23 | #include "Layer.h" |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 24 | |
Romain Guy | 77a8116 | 2011-06-14 16:45:55 -0700 | [diff] [blame] | 25 | #include <SkBitmap.h> |
| 26 | |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 27 | namespace android { |
| 28 | namespace uirenderer { |
| 29 | |
| 30 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 1fc883b | 2011-01-12 14:30:59 -0800 | [diff] [blame] | 31 | // Defines |
| 32 | /////////////////////////////////////////////////////////////////////////////// |
| 33 | |
| 34 | // Debug |
| 35 | #if DEBUG_LAYER_RENDERER |
| 36 | #define LAYER_RENDERER_LOGD(...) LOGD(__VA_ARGS__) |
| 37 | #else |
| 38 | #define LAYER_RENDERER_LOGD(...) |
| 39 | #endif |
| 40 | |
| 41 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 42 | // Renderer |
| 43 | /////////////////////////////////////////////////////////////////////////////// |
| 44 | |
| 45 | class LayerRenderer: public OpenGLRenderer { |
| 46 | public: |
Romain Guy | 7953745 | 2011-10-12 13:48:51 -0700 | [diff] [blame] | 47 | ANDROID_API LayerRenderer(Layer* layer); |
| 48 | virtual ~LayerRenderer(); |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 49 | |
Romain Guy | 7953745 | 2011-10-12 13:48:51 -0700 | [diff] [blame] | 50 | virtual void prepareDirty(float left, float top, float right, float bottom, bool opaque); |
| 51 | virtual void finish(); |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 52 | |
Romain Guy | 7953745 | 2011-10-12 13:48:51 -0700 | [diff] [blame] | 53 | virtual bool hasLayer(); |
| 54 | virtual Region* getRegion(); |
| 55 | virtual GLint getTargetFbo(); |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 56 | |
Romain Guy | 7953745 | 2011-10-12 13:48:51 -0700 | [diff] [blame] | 57 | ANDROID_API static Layer* createTextureLayer(bool isOpaque); |
| 58 | ANDROID_API static Layer* createLayer(uint32_t width, uint32_t height, bool isOpaque = false); |
| 59 | ANDROID_API static bool resizeLayer(Layer* layer, uint32_t width, uint32_t height); |
| 60 | ANDROID_API static void updateTextureLayer(Layer* layer, uint32_t width, uint32_t height, |
Romain Guy | a948927 | 2011-06-22 20:58:11 -0700 | [diff] [blame] | 61 | bool isOpaque, GLenum renderTarget, float* transform); |
Romain Guy | 7953745 | 2011-10-12 13:48:51 -0700 | [diff] [blame] | 62 | ANDROID_API static void destroyLayer(Layer* layer); |
| 63 | ANDROID_API static void destroyLayerDeferred(Layer* layer); |
| 64 | ANDROID_API static bool copyLayer(Layer* layer, SkBitmap* bitmap); |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 65 | |
| 66 | private: |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 67 | void generateMesh(); |
| 68 | |
Romain Guy | ada830f | 2011-01-13 12:13:20 -0800 | [diff] [blame] | 69 | Layer* mLayer; |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 70 | }; // class LayerRenderer |
| 71 | |
| 72 | }; // namespace uirenderer |
| 73 | }; // namespace android |
| 74 | |
| 75 | #endif // ANDROID_HWUI_LAYER_RENDERER_H |