Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_HWUI_LAYER_H |
| 18 | #define ANDROID_HWUI_LAYER_H |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 19 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 20 | #include <cutils/compiler.h> |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 21 | #include <sys/types.h> |
John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 22 | #include <utils/StrongPointer.h> |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 23 | |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 24 | #include <GLES2/gl2.h> |
| 25 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 26 | #include <ui/Region.h> |
| 27 | |
Derek Sollenberger | ca79cf6 | 2012-08-14 16:44:52 -0400 | [diff] [blame] | 28 | #include <SkPaint.h> |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 29 | #include <SkXfermode.h> |
| 30 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 31 | #include "Matrix.h" |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 32 | #include "Rect.h" |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 33 | #include "RenderBuffer.h" |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 34 | #include "Texture.h" |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 35 | #include "Vertex.h" |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 36 | |
| 37 | namespace android { |
| 38 | namespace uirenderer { |
| 39 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 40 | /////////////////////////////////////////////////////////////////////////////// |
| 41 | // Layers |
| 42 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 43 | |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 44 | // Forward declarations |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 45 | class Caches; |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 46 | class RenderState; |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 47 | class OpenGLRenderer; |
John Reck | e18264b | 2014-03-12 13:56:30 -0700 | [diff] [blame] | 48 | class RenderNode; |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 49 | class DeferredDisplayList; |
| 50 | class DeferStateStruct; |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 51 | |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 52 | /** |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 53 | * A layer has dimensions and is backed by an OpenGL texture or FBO. |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 54 | */ |
Chris Craik | 564acf7 | 2014-01-02 16:46:18 -0800 | [diff] [blame] | 55 | class Layer { |
| 56 | public: |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 57 | Layer(RenderState& renderState, const uint32_t layerWidth, const uint32_t layerHeight); |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 58 | ~Layer(); |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 59 | |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 60 | static uint32_t computeIdealWidth(uint32_t layerWidth); |
| 61 | static uint32_t computeIdealHeight(uint32_t layerHeight); |
| 62 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 63 | /** |
| 64 | * Calling this method will remove (either by recycling or |
| 65 | * destroying) the associated FBO, if present, and any render |
| 66 | * buffer (stencil for instance.) |
| 67 | */ |
| 68 | void removeFbo(bool flush = true); |
Dave Burke | 56257af | 2012-09-25 20:30:09 -0700 | [diff] [blame] | 69 | |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 70 | /** |
Romain Guy | 9fc2781 | 2011-04-27 14:21:41 -0700 | [diff] [blame] | 71 | * Sets this layer's region to a rectangle. Computes the appropriate |
| 72 | * texture coordinates. |
| 73 | */ |
| 74 | void setRegionAsRect() { |
| 75 | const android::Rect& bounds = region.getBounds(); |
| 76 | regionRect.set(bounds.leftTop().x, bounds.leftTop().y, |
| 77 | bounds.rightBottom().x, bounds.rightBottom().y); |
| 78 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 79 | const float texX = 1.0f / float(texture.width); |
| 80 | const float texY = 1.0f / float(texture.height); |
Romain Guy | 9fc2781 | 2011-04-27 14:21:41 -0700 | [diff] [blame] | 81 | const float height = layer.getHeight(); |
| 82 | texCoords.set( |
| 83 | regionRect.left * texX, (height - regionRect.top) * texY, |
| 84 | regionRect.right * texX, (height - regionRect.bottom) * texY); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 85 | |
| 86 | regionRect.translate(layer.left, layer.top); |
| 87 | } |
| 88 | |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 89 | void setWindowTransform(Matrix4& windowTransform) { |
| 90 | cachedInvTransformInWindow.loadInverse(windowTransform); |
| 91 | rendererLightPosDirty = true; |
| 92 | } |
| 93 | |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 94 | void updateDeferred(RenderNode* renderNode, int left, int top, int right, int bottom); |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 95 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 96 | inline uint32_t getWidth() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 97 | return texture.width; |
| 98 | } |
| 99 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 100 | inline uint32_t getHeight() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 101 | return texture.height; |
| 102 | } |
| 103 | |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 104 | /** |
| 105 | * Resize the layer and its texture if needed. |
| 106 | * |
| 107 | * @param width The new width of the layer |
| 108 | * @param height The new height of the layer |
| 109 | * |
| 110 | * @return True if the layer was resized or nothing happened, false if |
| 111 | * a failure occurred during the resizing operation |
| 112 | */ |
| 113 | bool resize(const uint32_t width, const uint32_t height); |
| 114 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 115 | void setSize(uint32_t width, uint32_t height) { |
| 116 | texture.width = width; |
| 117 | texture.height = height; |
| 118 | } |
| 119 | |
Derek Sollenberger | 674554f | 2014-02-19 16:47:32 +0000 | [diff] [blame] | 120 | ANDROID_API void setPaint(const SkPaint* paint); |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 121 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 122 | inline void setBlend(bool blend) { |
| 123 | texture.blend = blend; |
| 124 | } |
| 125 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 126 | inline bool isBlend() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 127 | return texture.blend; |
| 128 | } |
| 129 | |
Chris Craik | 9757ac0 | 2014-02-25 18:50:17 -0800 | [diff] [blame] | 130 | inline void setForceFilter(bool forceFilter) { |
| 131 | this->forceFilter = forceFilter; |
| 132 | } |
| 133 | |
| 134 | inline bool getForceFilter() const { |
| 135 | return forceFilter; |
| 136 | } |
| 137 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 138 | inline void setAlpha(int alpha) { |
| 139 | this->alpha = alpha; |
| 140 | } |
| 141 | |
| 142 | inline void setAlpha(int alpha, SkXfermode::Mode mode) { |
| 143 | this->alpha = alpha; |
| 144 | this->mode = mode; |
| 145 | } |
| 146 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 147 | inline int getAlpha() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 148 | return alpha; |
| 149 | } |
| 150 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 151 | inline SkXfermode::Mode getMode() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 152 | return mode; |
| 153 | } |
| 154 | |
| 155 | inline void setEmpty(bool empty) { |
| 156 | this->empty = empty; |
| 157 | } |
| 158 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 159 | inline bool isEmpty() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 160 | return empty; |
| 161 | } |
| 162 | |
| 163 | inline void setFbo(GLuint fbo) { |
| 164 | this->fbo = fbo; |
| 165 | } |
| 166 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 167 | inline GLuint getFbo() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 168 | return fbo; |
| 169 | } |
| 170 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 171 | inline void setStencilRenderBuffer(RenderBuffer* renderBuffer) { |
| 172 | if (RenderBuffer::isStencilBuffer(renderBuffer->getFormat())) { |
| 173 | this->stencil = renderBuffer; |
| 174 | glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, |
| 175 | GL_RENDERBUFFER, stencil->getName()); |
| 176 | } else { |
| 177 | ALOGE("The specified render buffer is not a stencil buffer"); |
| 178 | } |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 179 | } |
| 180 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 181 | inline RenderBuffer* getStencilRenderBuffer() const { |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 182 | return stencil; |
| 183 | } |
| 184 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 185 | inline GLuint getTexture() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 186 | return texture.id; |
| 187 | } |
| 188 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 189 | inline GLenum getRenderTarget() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 190 | return renderTarget; |
| 191 | } |
| 192 | |
| 193 | inline void setRenderTarget(GLenum renderTarget) { |
| 194 | this->renderTarget = renderTarget; |
| 195 | } |
| 196 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 197 | void setWrap(GLenum wrap, bool bindTexture = false, bool force = false) { |
| 198 | texture.setWrap(wrap, bindTexture, force, renderTarget); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 199 | } |
| 200 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 201 | void setFilter(GLenum filter, bool bindTexture = false, bool force = false) { |
| 202 | texture.setFilter(filter, bindTexture, force, renderTarget); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 205 | inline bool isCacheable() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 206 | return cacheable; |
| 207 | } |
| 208 | |
| 209 | inline void setCacheable(bool cacheable) { |
| 210 | this->cacheable = cacheable; |
| 211 | } |
| 212 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 213 | inline bool isDirty() const { |
Romain Guy | 7c25aab | 2012-10-18 15:05:02 -0700 | [diff] [blame] | 214 | return dirty; |
| 215 | } |
| 216 | |
| 217 | inline void setDirty(bool dirty) { |
| 218 | this->dirty = dirty; |
| 219 | } |
| 220 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 221 | inline bool isTextureLayer() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 222 | return textureLayer; |
| 223 | } |
| 224 | |
| 225 | inline void setTextureLayer(bool textureLayer) { |
| 226 | this->textureLayer = textureLayer; |
| 227 | } |
| 228 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 229 | inline SkColorFilter* getColorFilter() const { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 230 | return colorFilter; |
| 231 | } |
| 232 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 233 | ANDROID_API void setColorFilter(SkColorFilter* filter); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 234 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 235 | inline void setConvexMask(const SkPath* convexMask) { |
| 236 | this->convexMask = convexMask; |
| 237 | } |
| 238 | |
| 239 | inline const SkPath* getConvexMask() { |
| 240 | return convexMask; |
| 241 | } |
| 242 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 243 | void bindStencilRenderBuffer() const; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 244 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 245 | void bindTexture() const; |
| 246 | void generateTexture(); |
| 247 | void allocateTexture(); |
| 248 | void deleteTexture(); |
Romain Guy | ef09a21 | 2012-09-25 12:17:14 -0700 | [diff] [blame] | 249 | |
| 250 | /** |
| 251 | * When the caller frees the texture itself, the caller |
| 252 | * must call this method to tell this layer that it lost |
| 253 | * the texture. |
| 254 | */ |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 255 | ANDROID_API void clearTexture(); |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 256 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 257 | inline mat4& getTexTransform() { |
| 258 | return texTransform; |
Romain Guy | 9fc2781 | 2011-04-27 14:21:41 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Romain Guy | 302a9df | 2011-08-16 13:55:02 -0700 | [diff] [blame] | 261 | inline mat4& getTransform() { |
| 262 | return transform; |
| 263 | } |
| 264 | |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 265 | void defer(const OpenGLRenderer& rootRenderer); |
Romain Guy | e93482f | 2013-06-17 13:14:51 -0700 | [diff] [blame] | 266 | void cancelDefer(); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 267 | void flush(); |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 268 | void render(const OpenGLRenderer& rootRenderer); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 269 | |
Romain Guy | 9fc2781 | 2011-04-27 14:21:41 -0700 | [diff] [blame] | 270 | /** |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 271 | * Bounds of the layer. |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 272 | */ |
| 273 | Rect layer; |
| 274 | /** |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 275 | * Texture coordinates of the layer. |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 276 | */ |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 277 | Rect texCoords; |
Romain Guy | c3fedaf | 2013-01-29 17:26:25 -0800 | [diff] [blame] | 278 | /** |
| 279 | * Clipping rectangle. |
| 280 | */ |
| 281 | Rect clipRect; |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 282 | |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 283 | /** |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 284 | * Dirty region indicating what parts of the layer |
| 285 | * have been drawn. |
| 286 | */ |
| 287 | Region region; |
Romain Guy | 4066767 | 2011-03-18 14:34:03 -0700 | [diff] [blame] | 288 | /** |
| 289 | * If the region is a rectangle, coordinates of the |
| 290 | * region are stored here. |
| 291 | */ |
| 292 | Rect regionRect; |
Romain Guy | 171c592 | 2011-01-06 10:04:23 -0800 | [diff] [blame] | 293 | |
| 294 | /** |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 295 | * If the layer can be rendered as a mesh, this is non-null. |
| 296 | */ |
| 297 | TextureVertex* mesh; |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 298 | GLsizei meshElementCount; |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 299 | |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 300 | /** |
| 301 | * Used for deferred updates. |
| 302 | */ |
| 303 | bool deferredUpdateScheduled; |
| 304 | OpenGLRenderer* renderer; |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 305 | sp<RenderNode> renderNode; |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 306 | Rect dirtyRect; |
Romain Guy | 5bb3c73 | 2012-11-29 17:52:58 -0800 | [diff] [blame] | 307 | bool debugDrawUpdate; |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 308 | bool hasDrawnSinceUpdate; |
John Reck | 443a714 | 2014-09-04 17:40:05 -0700 | [diff] [blame^] | 309 | bool wasBuildLayered; |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 310 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 311 | private: |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 312 | void requireRenderer(); |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 313 | void updateLightPosFromRenderer(const OpenGLRenderer& rootRenderer); |
John Reck | 668f0e3 | 2014-03-26 15:10:40 -0700 | [diff] [blame] | 314 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 315 | Caches& caches; |
| 316 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 317 | RenderState& renderState; |
| 318 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 319 | /** |
| 320 | * Name of the FBO used to render the layer. If the name is 0 |
| 321 | * this layer is not backed by an FBO, but a simple texture. |
| 322 | */ |
| 323 | GLuint fbo; |
| 324 | |
| 325 | /** |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 326 | * The render buffer used as the stencil buffer. |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 327 | */ |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 328 | RenderBuffer* stencil; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 329 | |
| 330 | /** |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 331 | * Indicates whether this layer has been used already. |
| 332 | */ |
| 333 | bool empty; |
| 334 | |
| 335 | /** |
| 336 | * The texture backing this layer. |
| 337 | */ |
| 338 | Texture texture; |
| 339 | |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 340 | /** |
| 341 | * If set to true (by default), the layer can be reused. |
| 342 | */ |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 343 | bool cacheable; |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 344 | |
| 345 | /** |
| 346 | * When set to true, this layer must be treated as a texture |
| 347 | * layer. |
| 348 | */ |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 349 | bool textureLayer; |
| 350 | |
| 351 | /** |
Romain Guy | 7c25aab | 2012-10-18 15:05:02 -0700 | [diff] [blame] | 352 | * When set to true, this layer is dirty and should be cleared |
| 353 | * before any rendering occurs. |
| 354 | */ |
| 355 | bool dirty; |
| 356 | |
| 357 | /** |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 358 | * Indicates the render target. |
| 359 | */ |
| 360 | GLenum renderTarget; |
| 361 | |
| 362 | /** |
| 363 | * Color filter used to draw this layer. Optional. |
| 364 | */ |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 365 | SkColorFilter* colorFilter; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 366 | |
| 367 | /** |
Chris Craik | 9757ac0 | 2014-02-25 18:50:17 -0800 | [diff] [blame] | 368 | * Indicates raster data backing the layer is scaled, requiring filtration. |
| 369 | */ |
| 370 | bool forceFilter; |
| 371 | |
| 372 | /** |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 373 | * Opacity of the layer. |
| 374 | */ |
| 375 | int alpha; |
Chris Craik | 9757ac0 | 2014-02-25 18:50:17 -0800 | [diff] [blame] | 376 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 377 | /** |
| 378 | * Blending mode of the layer. |
| 379 | */ |
| 380 | SkXfermode::Mode mode; |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 381 | |
| 382 | /** |
| 383 | * Optional texture coordinates transform. |
| 384 | */ |
| 385 | mat4 texTransform; |
Romain Guy | 8f0095c | 2011-05-02 17:24:22 -0700 | [diff] [blame] | 386 | |
Romain Guy | 302a9df | 2011-08-16 13:55:02 -0700 | [diff] [blame] | 387 | /** |
| 388 | * Optional transform. |
| 389 | */ |
| 390 | mat4 transform; |
| 391 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 392 | /** |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 393 | * Cached transform of layer in window, updated only on creation / resize |
| 394 | */ |
| 395 | mat4 cachedInvTransformInWindow; |
| 396 | bool rendererLightPosDirty; |
| 397 | |
| 398 | /** |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 399 | * Used to defer display lists when the layer is updated with a |
| 400 | * display list. |
| 401 | */ |
| 402 | DeferredDisplayList* deferredList; |
| 403 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 404 | /** |
| 405 | * This convex path should be used to mask the layer's draw to the screen. |
| 406 | * |
| 407 | * Data not owned/managed by layer object. |
| 408 | */ |
| 409 | const SkPath* convexMask; |
| 410 | |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 411 | }; // struct Layer |
| 412 | |
| 413 | }; // namespace uirenderer |
| 414 | }; // namespace android |
| 415 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 416 | #endif // ANDROID_HWUI_LAYER_H |