Romain Guy | e4d0112 | 2010-06-16 18:44:05 -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 | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 17 | #define LOG_TAG "OpenGLRenderer" |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 18 | |
| 19 | #include <stdlib.h> |
| 20 | #include <stdint.h> |
| 21 | #include <sys/types.h> |
| 22 | |
Romain Guy | 5cbbce5 | 2010-06-27 22:59:20 -0700 | [diff] [blame] | 23 | #include <SkCanvas.h> |
Chris Craik | 98d608d | 2014-07-17 12:25:11 -0700 | [diff] [blame] | 24 | #include <SkColor.h> |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 25 | #include <SkShader.h> |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 26 | #include <SkTypeface.h> |
Romain Guy | 5cbbce5 | 2010-06-27 22:59:20 -0700 | [diff] [blame] | 27 | |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 28 | #include <utils/Log.h> |
Romain Guy | e2d345e | 2010-09-24 18:39:22 -0700 | [diff] [blame] | 29 | #include <utils/StopWatch.h> |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 30 | |
Romain Guy | 08aa2cb | 2011-03-17 11:06:57 -0700 | [diff] [blame] | 31 | #include <private/hwui/DrawGlInfo.h> |
| 32 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 33 | #include <ui/Rect.h> |
| 34 | |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 35 | #include "OpenGLRenderer.h" |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 36 | #include "DeferredDisplayList.h" |
Romain Guy | 0fe478e | 2010-11-08 12:08:41 -0800 | [diff] [blame] | 37 | #include "DisplayListRenderer.h" |
Romain Guy | 4054360 | 2013-06-12 15:31:28 -0700 | [diff] [blame] | 38 | #include "Fence.h" |
Tom Hudson | 2dc236b | 2014-10-15 15:46:42 -0400 | [diff] [blame] | 39 | #include "GammaFontRenderer.h" |
| 40 | #include "Patch.h" |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 41 | #include "PathTessellator.h" |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 42 | #include "Properties.h" |
Tom Hudson | 2dc236b | 2014-10-15 15:46:42 -0400 | [diff] [blame] | 43 | #include "RenderNode.h" |
| 44 | #include "RenderState.h" |
ztenghui | 55bfb4e | 2013-12-03 10:38:55 -0800 | [diff] [blame] | 45 | #include "ShadowTessellator.h" |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 46 | #include "SkiaShader.h" |
Romain Guy | a957eea | 2010-12-08 18:34:42 -0800 | [diff] [blame] | 47 | #include "Vector.h" |
ztenghui | 55bfb4e | 2013-12-03 10:38:55 -0800 | [diff] [blame] | 48 | #include "VertexBuffer.h" |
Tom Hudson | 2dc236b | 2014-10-15 15:46:42 -0400 | [diff] [blame] | 49 | #include "utils/GLUtils.h" |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 50 | #include "utils/PaintUtils.h" |
Chris Craik | 06e7fe5 | 2014-11-20 17:27:36 -0800 | [diff] [blame] | 51 | #include "utils/TraceUtils.h" |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 52 | |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 53 | #if DEBUG_DETAILED_EVENTS |
| 54 | #define EVENT_LOGD(...) eventMarkDEBUG(__VA_ARGS__) |
| 55 | #else |
| 56 | #define EVENT_LOGD(...) |
| 57 | #endif |
| 58 | |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 59 | namespace android { |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 60 | namespace uirenderer { |
| 61 | |
Chris Craik | 67862524 | 2014-02-28 12:26:34 -0800 | [diff] [blame] | 62 | static GLenum getFilter(const SkPaint* paint) { |
| 63 | if (!paint || paint->getFilterLevel() != SkPaint::kNone_FilterLevel) { |
| 64 | return GL_LINEAR; |
| 65 | } |
| 66 | return GL_NEAREST; |
| 67 | } |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 68 | |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 69 | /////////////////////////////////////////////////////////////////////////////// |
| 70 | // Globals |
| 71 | /////////////////////////////////////////////////////////////////////////////// |
| 72 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 73 | /** |
| 74 | * Structure mapping Skia xfermodes to OpenGL blending factors. |
| 75 | */ |
| 76 | struct Blender { |
| 77 | SkXfermode::Mode mode; |
| 78 | GLenum src; |
| 79 | GLenum dst; |
| 80 | }; // struct Blender |
| 81 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 82 | // In this array, the index of each Blender equals the value of the first |
| 83 | // entry. For instance, gBlends[1] == gBlends[SkXfermode::kSrc_Mode] |
| 84 | static const Blender gBlends[] = { |
Romain Guy | 2ffefd4 | 2011-09-08 15:33:03 -0700 | [diff] [blame] | 85 | { SkXfermode::kClear_Mode, GL_ZERO, GL_ONE_MINUS_SRC_ALPHA }, |
| 86 | { SkXfermode::kSrc_Mode, GL_ONE, GL_ZERO }, |
| 87 | { SkXfermode::kDst_Mode, GL_ZERO, GL_ONE }, |
| 88 | { SkXfermode::kSrcOver_Mode, GL_ONE, GL_ONE_MINUS_SRC_ALPHA }, |
| 89 | { SkXfermode::kDstOver_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE }, |
| 90 | { SkXfermode::kSrcIn_Mode, GL_DST_ALPHA, GL_ZERO }, |
| 91 | { SkXfermode::kDstIn_Mode, GL_ZERO, GL_SRC_ALPHA }, |
| 92 | { SkXfermode::kSrcOut_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ZERO }, |
| 93 | { SkXfermode::kDstOut_Mode, GL_ZERO, GL_ONE_MINUS_SRC_ALPHA }, |
| 94 | { SkXfermode::kSrcATop_Mode, GL_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA }, |
| 95 | { SkXfermode::kDstATop_Mode, GL_ONE_MINUS_DST_ALPHA, GL_SRC_ALPHA }, |
| 96 | { SkXfermode::kXor_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA }, |
| 97 | { SkXfermode::kPlus_Mode, GL_ONE, GL_ONE }, |
Derek Sollenberger | d81ec45 | 2013-02-04 15:42:26 -0500 | [diff] [blame] | 98 | { SkXfermode::kModulate_Mode, GL_ZERO, GL_SRC_COLOR }, |
Romain Guy | 2ffefd4 | 2011-09-08 15:33:03 -0700 | [diff] [blame] | 99 | { SkXfermode::kScreen_Mode, GL_ONE, GL_ONE_MINUS_SRC_COLOR } |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 100 | }; |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 101 | |
Romain Guy | 87a7657 | 2010-09-13 18:11:21 -0700 | [diff] [blame] | 102 | // This array contains the swapped version of each SkXfermode. For instance |
| 103 | // this array's SrcOver blending mode is actually DstOver. You can refer to |
| 104 | // createLayer() for more information on the purpose of this array. |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 105 | static const Blender gBlendsSwap[] = { |
Romain Guy | 2ffefd4 | 2011-09-08 15:33:03 -0700 | [diff] [blame] | 106 | { SkXfermode::kClear_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ZERO }, |
| 107 | { SkXfermode::kSrc_Mode, GL_ZERO, GL_ONE }, |
| 108 | { SkXfermode::kDst_Mode, GL_ONE, GL_ZERO }, |
| 109 | { SkXfermode::kSrcOver_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE }, |
| 110 | { SkXfermode::kDstOver_Mode, GL_ONE, GL_ONE_MINUS_SRC_ALPHA }, |
| 111 | { SkXfermode::kSrcIn_Mode, GL_ZERO, GL_SRC_ALPHA }, |
| 112 | { SkXfermode::kDstIn_Mode, GL_DST_ALPHA, GL_ZERO }, |
| 113 | { SkXfermode::kSrcOut_Mode, GL_ZERO, GL_ONE_MINUS_SRC_ALPHA }, |
| 114 | { SkXfermode::kDstOut_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ZERO }, |
| 115 | { SkXfermode::kSrcATop_Mode, GL_ONE_MINUS_DST_ALPHA, GL_SRC_ALPHA }, |
| 116 | { SkXfermode::kDstATop_Mode, GL_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA }, |
| 117 | { SkXfermode::kXor_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA }, |
| 118 | { SkXfermode::kPlus_Mode, GL_ONE, GL_ONE }, |
Derek Sollenberger | d81ec45 | 2013-02-04 15:42:26 -0500 | [diff] [blame] | 119 | { SkXfermode::kModulate_Mode, GL_DST_COLOR, GL_ZERO }, |
Romain Guy | 2ffefd4 | 2011-09-08 15:33:03 -0700 | [diff] [blame] | 120 | { SkXfermode::kScreen_Mode, GL_ONE_MINUS_DST_COLOR, GL_ONE } |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 121 | }; |
| 122 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 123 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 124 | // Functions |
| 125 | /////////////////////////////////////////////////////////////////////////////// |
| 126 | |
| 127 | template<typename T> |
| 128 | static inline T min(T a, T b) { |
| 129 | return a < b ? a : b; |
| 130 | } |
| 131 | |
| 132 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 133 | // Constructors/destructor |
| 134 | /////////////////////////////////////////////////////////////////////////////// |
| 135 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 136 | OpenGLRenderer::OpenGLRenderer(RenderState& renderState) |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 137 | : mState(*this) |
| 138 | , mFrameStarted(false) |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 139 | , mCaches(Caches::getInstance()) |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 140 | , mExtensions(Extensions::getInstance()) |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 141 | , mRenderState(renderState) |
| 142 | , mScissorOptimizationDisabled(false) |
Chris Craik | 284b243 | 2014-09-18 16:05:35 -0700 | [diff] [blame] | 143 | , mSuppressTiling(false) |
| 144 | , mFirstFrameAfterResize(true) |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 145 | , mDirty(false) |
John Reck | 1aa5d2d | 2014-07-24 13:38:28 -0700 | [diff] [blame] | 146 | , mLightCenter((Vector3){FLT_MIN, FLT_MIN, FLT_MIN}) |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 147 | , mLightRadius(FLT_MIN) |
| 148 | , mAmbientShadowAlpha(0) |
| 149 | , mSpotShadowAlpha(0) { |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 150 | // *set* draw modifiers to be 0 |
| 151 | memset(&mDrawModifiers, 0, sizeof(mDrawModifiers)); |
Chris Craik | 16ecda5 | 2013-03-29 10:59:59 -0700 | [diff] [blame] | 152 | mDrawModifiers.mOverrideLayerAlpha = 1.0f; |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 153 | |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 154 | memcpy(mMeshVertices, gMeshVertices, sizeof(gMeshVertices)); |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 157 | OpenGLRenderer::~OpenGLRenderer() { |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 158 | // The context has already been destroyed at this point, do not call |
| 159 | // GL APIs. All GL state should be kept in Caches.h |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 162 | void OpenGLRenderer::initProperties() { |
| 163 | char property[PROPERTY_VALUE_MAX]; |
| 164 | if (property_get(PROPERTY_DISABLE_SCISSOR_OPTIMIZATION, property, "false")) { |
| 165 | mScissorOptimizationDisabled = !strcasecmp(property, "true"); |
| 166 | INIT_LOGD(" Scissor optimization %s", |
| 167 | mScissorOptimizationDisabled ? "disabled" : "enabled"); |
| 168 | } else { |
| 169 | INIT_LOGD(" Scissor optimization enabled"); |
| 170 | } |
Romain Guy | 13631f3 | 2012-01-30 17:41:55 -0800 | [diff] [blame] | 171 | } |
| 172 | |
Chris Craik | 058fc64 | 2014-07-23 18:19:28 -0700 | [diff] [blame] | 173 | void OpenGLRenderer::initLight(const Vector3& lightCenter, float lightRadius, |
| 174 | uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) { |
| 175 | mLightCenter = lightCenter; |
| 176 | mLightRadius = lightRadius; |
| 177 | mAmbientShadowAlpha = ambientShadowAlpha; |
| 178 | mSpotShadowAlpha = spotShadowAlpha; |
| 179 | } |
| 180 | |
Romain Guy | 13631f3 | 2012-01-30 17:41:55 -0800 | [diff] [blame] | 181 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 182 | // Setup |
| 183 | /////////////////////////////////////////////////////////////////////////////// |
| 184 | |
Chris Craik | 797b95b2 | 2014-05-20 18:10:25 -0700 | [diff] [blame] | 185 | void OpenGLRenderer::onViewportInitialized() { |
Romain Guy | 35643dd | 2012-09-18 15:40:58 -0700 | [diff] [blame] | 186 | glDisable(GL_DITHER); |
| 187 | glClearColor(0.0f, 0.0f, 0.0f, 0.0f); |
| 188 | |
| 189 | glEnableVertexAttribArray(Program::kBindingPosition); |
Chris Craik | 284b243 | 2014-09-18 16:05:35 -0700 | [diff] [blame] | 190 | mFirstFrameAfterResize = true; |
Romain Guy | 35643dd | 2012-09-18 15:40:58 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 193 | void OpenGLRenderer::setupFrameState(float left, float top, |
Romain Guy | c3fedaf | 2013-01-29 17:26:25 -0800 | [diff] [blame] | 194 | float right, float bottom, bool opaque) { |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 195 | mCaches.clearGarbage(); |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 196 | mState.initializeSaveStack(left, top, right, bottom, mLightCenter); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 197 | mOpaque = opaque; |
Chris Craik | 5f80362 | 2013-03-21 14:39:04 -0700 | [diff] [blame] | 198 | mTilingClip.set(left, top, right, bottom); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 199 | } |
| 200 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 201 | void OpenGLRenderer::startFrame() { |
| 202 | if (mFrameStarted) return; |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 203 | mFrameStarted = true; |
| 204 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 205 | mState.setDirtyClip(true); |
Romain Guy | ddf7437 | 2012-05-22 14:07:07 -0700 | [diff] [blame] | 206 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 207 | discardFramebuffer(mTilingClip.left, mTilingClip.top, mTilingClip.right, mTilingClip.bottom); |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 208 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 209 | mRenderState.setViewport(mState.getWidth(), mState.getHeight()); |
Romain Guy | 7d7b549 | 2011-01-24 16:33:45 -0800 | [diff] [blame] | 210 | |
Romain Guy | 54c1a64 | 2012-09-27 17:55:46 -0700 | [diff] [blame] | 211 | // Functors break the tiling extension in pretty spectacular ways |
| 212 | // This ensures we don't use tiling when a functor is going to be |
| 213 | // invoked during the frame |
Chris Craik | 284b243 | 2014-09-18 16:05:35 -0700 | [diff] [blame] | 214 | mSuppressTiling = mCaches.hasRegisteredFunctors() |
| 215 | || mFirstFrameAfterResize; |
| 216 | mFirstFrameAfterResize = false; |
Romain Guy | 54c1a64 | 2012-09-27 17:55:46 -0700 | [diff] [blame] | 217 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 218 | startTilingCurrentClip(true); |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 219 | |
Romain Guy | 7c450aa | 2012-09-21 19:15:00 -0700 | [diff] [blame] | 220 | debugOverdraw(true, true); |
| 221 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 222 | clear(mTilingClip.left, mTilingClip.top, |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 223 | mTilingClip.right, mTilingClip.bottom, mOpaque); |
| 224 | } |
| 225 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 226 | void OpenGLRenderer::prepareDirty(float left, float top, |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 227 | float right, float bottom, bool opaque) { |
Romain Guy | 78dd96d | 2013-05-03 14:24:16 -0700 | [diff] [blame] | 228 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 229 | setupFrameState(left, top, right, bottom, opaque); |
| 230 | |
| 231 | // Layer renderers will start the frame immediately |
| 232 | // The framebuffer renderer will first defer the display list |
| 233 | // for each layer and wait until the first drawing command |
| 234 | // to start the frame |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 235 | if (currentSnapshot()->fbo == 0) { |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 236 | syncState(); |
| 237 | updateLayers(); |
| 238 | } else { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 239 | startFrame(); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 240 | } |
Romain Guy | 7c25aab | 2012-10-18 15:05:02 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Romain Guy | dcfc836 | 2013-01-03 13:08:57 -0800 | [diff] [blame] | 243 | void OpenGLRenderer::discardFramebuffer(float left, float top, float right, float bottom) { |
| 244 | // If we know that we are going to redraw the entire framebuffer, |
| 245 | // perform a discard to let the driver know we don't need to preserve |
| 246 | // the back buffer for this frame. |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 247 | if (mExtensions.hasDiscardFramebuffer() && |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 248 | left <= 0.0f && top <= 0.0f && right >= mState.getWidth() && bottom >= mState.getHeight()) { |
| 249 | const bool isFbo = onGetTargetFbo() == 0; |
Romain Guy | f158198 | 2013-01-31 17:20:30 -0800 | [diff] [blame] | 250 | const GLenum attachments[] = { |
| 251 | isFbo ? (const GLenum) GL_COLOR_EXT : (const GLenum) GL_COLOR_ATTACHMENT0, |
| 252 | isFbo ? (const GLenum) GL_STENCIL_EXT : (const GLenum) GL_STENCIL_ATTACHMENT }; |
Romain Guy | dcfc836 | 2013-01-03 13:08:57 -0800 | [diff] [blame] | 253 | glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, attachments); |
| 254 | } |
| 255 | } |
| 256 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 257 | void OpenGLRenderer::clear(float left, float top, float right, float bottom, bool opaque) { |
John Reck | 23d307c | 2014-10-27 12:38:48 -0700 | [diff] [blame] | 258 | if (!opaque) { |
Romain Guy | 586cae3 | 2012-07-13 15:28:31 -0700 | [diff] [blame] | 259 | mCaches.enableScissor(); |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 260 | mCaches.setScissor(left, getViewportHeight() - bottom, right - left, bottom - top); |
Romain Guy | 6b7bd24 | 2010-10-06 19:49:23 -0700 | [diff] [blame] | 261 | glClear(GL_COLOR_BUFFER_BIT); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 262 | mDirty = true; |
| 263 | return; |
Romain Guy | ddf7437 | 2012-05-22 14:07:07 -0700 | [diff] [blame] | 264 | } |
Chet Haase | 44b2fe3 | 2012-06-06 19:03:58 -0700 | [diff] [blame] | 265 | |
Romain Guy | 7c25aab | 2012-10-18 15:05:02 -0700 | [diff] [blame] | 266 | mCaches.resetScissor(); |
Romain Guy | ddf7437 | 2012-05-22 14:07:07 -0700 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | void OpenGLRenderer::syncState() { |
Romain Guy | ddf7437 | 2012-05-22 14:07:07 -0700 | [diff] [blame] | 270 | if (mCaches.blend) { |
| 271 | glEnable(GL_BLEND); |
| 272 | } else { |
| 273 | glDisable(GL_BLEND); |
Romain Guy | 6b7bd24 | 2010-10-06 19:49:23 -0700 | [diff] [blame] | 274 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 275 | } |
| 276 | |
henry.uh_chen | 33f5a59 | 2014-07-02 19:36:56 +0800 | [diff] [blame] | 277 | void OpenGLRenderer::startTilingCurrentClip(bool opaque, bool expand) { |
Romain Guy | 54c1a64 | 2012-09-27 17:55:46 -0700 | [diff] [blame] | 278 | if (!mSuppressTiling) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 279 | const Snapshot* snapshot = currentSnapshot(); |
| 280 | |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 281 | const Rect* clip = &mTilingClip; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 282 | if (snapshot->flags & Snapshot::kFlagFboTarget) { |
| 283 | clip = &(snapshot->layer->clipRect); |
Romain Guy | 54c1a64 | 2012-09-27 17:55:46 -0700 | [diff] [blame] | 284 | } |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 285 | |
henry.uh_chen | 33f5a59 | 2014-07-02 19:36:56 +0800 | [diff] [blame] | 286 | startTiling(*clip, getViewportHeight(), opaque, expand); |
Romain Guy | c3fedaf | 2013-01-29 17:26:25 -0800 | [diff] [blame] | 287 | } |
| 288 | } |
| 289 | |
henry.uh_chen | 33f5a59 | 2014-07-02 19:36:56 +0800 | [diff] [blame] | 290 | void OpenGLRenderer::startTiling(const Rect& clip, int windowHeight, bool opaque, bool expand) { |
Romain Guy | c3fedaf | 2013-01-29 17:26:25 -0800 | [diff] [blame] | 291 | if (!mSuppressTiling) { |
henry.uh_chen | 33f5a59 | 2014-07-02 19:36:56 +0800 | [diff] [blame] | 292 | if(expand) { |
| 293 | // Expand the startTiling region by 1 |
| 294 | int leftNotZero = (clip.left > 0) ? 1 : 0; |
| 295 | int topNotZero = (windowHeight - clip.bottom > 0) ? 1 : 0; |
| 296 | |
| 297 | mCaches.startTiling( |
| 298 | clip.left - leftNotZero, |
| 299 | windowHeight - clip.bottom - topNotZero, |
| 300 | clip.right - clip.left + leftNotZero + 1, |
| 301 | clip.bottom - clip.top + topNotZero + 1, |
| 302 | opaque); |
| 303 | } else { |
| 304 | mCaches.startTiling(clip.left, windowHeight - clip.bottom, |
Romain Guy | 52036b1 | 2013-02-14 18:03:37 -0800 | [diff] [blame] | 305 | clip.right - clip.left, clip.bottom - clip.top, opaque); |
henry.uh_chen | 33f5a59 | 2014-07-02 19:36:56 +0800 | [diff] [blame] | 306 | } |
Romain Guy | 54c1a64 | 2012-09-27 17:55:46 -0700 | [diff] [blame] | 307 | } |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | void OpenGLRenderer::endTiling() { |
Romain Guy | 54c1a64 | 2012-09-27 17:55:46 -0700 | [diff] [blame] | 311 | if (!mSuppressTiling) mCaches.endTiling(); |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 312 | } |
| 313 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 314 | bool OpenGLRenderer::finish() { |
Romain Guy | 7c450aa | 2012-09-21 19:15:00 -0700 | [diff] [blame] | 315 | renderOverdraw(); |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 316 | endTiling(); |
Chris Craik | 4ac36f8 | 2014-12-09 16:54:03 -0800 | [diff] [blame] | 317 | mTempPaths.clear(); |
| 318 | |
Romain Guy | ca89e2a | 2013-03-08 17:44:20 -0800 | [diff] [blame] | 319 | // When finish() is invoked on FBO 0 we've reached the end |
| 320 | // of the current frame |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 321 | if (onGetTargetFbo() == 0) { |
Romain Guy | ca89e2a | 2013-03-08 17:44:20 -0800 | [diff] [blame] | 322 | mCaches.pathCache.trim(); |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 323 | mCaches.tessellationCache.trim(); |
Romain Guy | ca89e2a | 2013-03-08 17:44:20 -0800 | [diff] [blame] | 324 | } |
| 325 | |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 326 | if (!suppressErrorChecks()) { |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 327 | #if DEBUG_OPENGL |
Chris Craik | e4aa95e | 2014-05-08 13:57:05 -0700 | [diff] [blame] | 328 | GLUtils::dumpGLErrors(); |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 329 | #endif |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 330 | |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 331 | #if DEBUG_MEMORY_USAGE |
Romain Guy | e190aa6 | 2010-11-10 19:01:29 -0800 | [diff] [blame] | 332 | mCaches.dumpMemoryUsage(); |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 333 | #else |
| 334 | if (mCaches.getDebugLevel() & kDebugMemory) { |
| 335 | mCaches.dumpMemoryUsage(); |
| 336 | } |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 337 | #endif |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 338 | } |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 339 | |
| 340 | mFrameStarted = false; |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 341 | |
| 342 | return reportAndClearDirty(); |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Romain Guy | 35643dd | 2012-09-18 15:40:58 -0700 | [diff] [blame] | 345 | void OpenGLRenderer::resumeAfterLayer() { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 346 | mRenderState.setViewport(getViewportWidth(), getViewportHeight()); |
| 347 | mRenderState.bindFramebuffer(currentSnapshot()->fbo); |
Romain Guy | 7c450aa | 2012-09-21 19:15:00 -0700 | [diff] [blame] | 348 | debugOverdraw(true, false); |
Romain Guy | 35643dd | 2012-09-18 15:40:58 -0700 | [diff] [blame] | 349 | |
| 350 | mCaches.resetScissor(); |
| 351 | dirtyClip(); |
| 352 | } |
| 353 | |
Andreas Gampe | 64bb413 | 2014-11-22 00:35:09 +0000 | [diff] [blame] | 354 | void OpenGLRenderer::callDrawGLFunction(Functor* functor, Rect& dirty) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 355 | if (mState.currentlyIgnored()) return; |
Chris Craik | 408eb12 | 2013-03-26 18:55:15 -0700 | [diff] [blame] | 356 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 357 | Rect clip(*mState.currentClipRect()); |
Romain Guy | 80911b8 | 2011-03-16 15:30:12 -0700 | [diff] [blame] | 358 | clip.snapToPixelBoundaries(); |
| 359 | |
Romain Guy | d643bb5 | 2011-03-01 14:55:21 -0800 | [diff] [blame] | 360 | // Since we don't know what the functor will draw, let's dirty |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 361 | // the entire clip region |
Romain Guy | d643bb5 | 2011-03-01 14:55:21 -0800 | [diff] [blame] | 362 | if (hasLayer()) { |
Romain Guy | d643bb5 | 2011-03-01 14:55:21 -0800 | [diff] [blame] | 363 | dirtyLayerUnchecked(clip, getRegion()); |
| 364 | } |
Romain Guy | d643bb5 | 2011-03-01 14:55:21 -0800 | [diff] [blame] | 365 | |
Romain Guy | 08aa2cb | 2011-03-17 11:06:57 -0700 | [diff] [blame] | 366 | DrawGlInfo info; |
| 367 | info.clipLeft = clip.left; |
| 368 | info.clipTop = clip.top; |
| 369 | info.clipRight = clip.right; |
| 370 | info.clipBottom = clip.bottom; |
| 371 | info.isLayer = hasLayer(); |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 372 | info.width = getViewportWidth(); |
| 373 | info.height = getViewportHeight(); |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 374 | currentTransform()->copyTo(&info.transform[0]); |
Romain Guy | 80911b8 | 2011-03-16 15:30:12 -0700 | [diff] [blame] | 375 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 376 | bool prevDirtyClip = mState.getDirtyClip(); |
Chris Craik | 54f574a | 2013-08-26 11:23:46 -0700 | [diff] [blame] | 377 | // setup GL state for functor |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 378 | if (mState.getDirtyClip()) { |
Chris Craik | 54f574a | 2013-08-26 11:23:46 -0700 | [diff] [blame] | 379 | setStencilFromClip(); // can issue draws, so must precede enableScissor()/interrupt() |
| 380 | } |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 381 | if (mCaches.enableScissor() || prevDirtyClip) { |
John Reck | 25d2f7b | 2013-09-10 13:12:09 -0700 | [diff] [blame] | 382 | setScissorFromClip(); |
| 383 | } |
Chris Craik | 54f574a | 2013-08-26 11:23:46 -0700 | [diff] [blame] | 384 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 385 | mRenderState.invokeFunctor(functor, DrawGlInfo::kModeDraw, &info); |
| 386 | // Scissor may have been modified, reset dirty clip |
| 387 | dirtyClip(); |
Romain Guy | cabfcc1 | 2011-03-07 18:06:46 -0800 | [diff] [blame] | 388 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 389 | mDirty = true; |
Chet Haase | daf98e9 | 2011-01-10 14:10:36 -0800 | [diff] [blame] | 390 | } |
| 391 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 392 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 393 | // Debug |
| 394 | /////////////////////////////////////////////////////////////////////////////// |
| 395 | |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 396 | void OpenGLRenderer::eventMarkDEBUG(const char* fmt, ...) const { |
| 397 | #if DEBUG_DETAILED_EVENTS |
| 398 | const int BUFFER_SIZE = 256; |
| 399 | va_list ap; |
| 400 | char buf[BUFFER_SIZE]; |
| 401 | |
| 402 | va_start(ap, fmt); |
| 403 | vsnprintf(buf, BUFFER_SIZE, fmt, ap); |
| 404 | va_end(ap); |
| 405 | |
| 406 | eventMark(buf); |
| 407 | #endif |
| 408 | } |
| 409 | |
| 410 | |
Romain Guy | 0f667533 | 2013-03-01 14:31:04 -0800 | [diff] [blame] | 411 | void OpenGLRenderer::eventMark(const char* name) const { |
| 412 | mCaches.eventMark(0, name); |
| 413 | } |
| 414 | |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 415 | void OpenGLRenderer::startMark(const char* name) const { |
| 416 | mCaches.startMark(0, name); |
| 417 | } |
| 418 | |
| 419 | void OpenGLRenderer::endMark() const { |
| 420 | mCaches.endMark(); |
| 421 | } |
| 422 | |
| 423 | void OpenGLRenderer::debugOverdraw(bool enable, bool clear) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 424 | mRenderState.debugOverdraw(enable, clear); |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | void OpenGLRenderer::renderOverdraw() { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 428 | if (mCaches.debugOverdraw && onGetTargetFbo() == 0) { |
Chris Craik | 5f80362 | 2013-03-21 14:39:04 -0700 | [diff] [blame] | 429 | const Rect* clip = &mTilingClip; |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 430 | |
| 431 | mCaches.enableScissor(); |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 432 | mCaches.setScissor(clip->left, mState.firstSnapshot()->getViewportHeight() - clip->bottom, |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 433 | clip->right - clip->left, clip->bottom - clip->top); |
| 434 | |
Romain Guy | 627c6fd | 2013-08-21 11:53:18 -0700 | [diff] [blame] | 435 | // 1x overdraw |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 436 | mCaches.stencil.enableDebugTest(2); |
Romain Guy | 627c6fd | 2013-08-21 11:53:18 -0700 | [diff] [blame] | 437 | drawColor(mCaches.getOverdrawColor(1), SkXfermode::kSrcOver_Mode); |
| 438 | |
| 439 | // 2x overdraw |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 440 | mCaches.stencil.enableDebugTest(3); |
Romain Guy | 627c6fd | 2013-08-21 11:53:18 -0700 | [diff] [blame] | 441 | drawColor(mCaches.getOverdrawColor(2), SkXfermode::kSrcOver_Mode); |
| 442 | |
| 443 | // 3x overdraw |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 444 | mCaches.stencil.enableDebugTest(4); |
Romain Guy | 627c6fd | 2013-08-21 11:53:18 -0700 | [diff] [blame] | 445 | drawColor(mCaches.getOverdrawColor(3), SkXfermode::kSrcOver_Mode); |
| 446 | |
| 447 | // 4x overdraw and higher |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 448 | mCaches.stencil.enableDebugTest(4, true); |
Romain Guy | 627c6fd | 2013-08-21 11:53:18 -0700 | [diff] [blame] | 449 | drawColor(mCaches.getOverdrawColor(4), SkXfermode::kSrcOver_Mode); |
| 450 | |
Romain Guy | 87e2f757 | 2012-09-24 11:37:12 -0700 | [diff] [blame] | 451 | mCaches.stencil.disable(); |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 456 | // Layers |
| 457 | /////////////////////////////////////////////////////////////////////////////// |
| 458 | |
| 459 | bool OpenGLRenderer::updateLayer(Layer* layer, bool inFrame) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 460 | if (layer->deferredUpdateScheduled && layer->renderer |
| 461 | && layer->renderNode.get() && layer->renderNode->isRenderable()) { |
Romain Guy | 4054360 | 2013-06-12 15:31:28 -0700 | [diff] [blame] | 462 | |
Romain Guy | 7c450aa | 2012-09-21 19:15:00 -0700 | [diff] [blame] | 463 | if (inFrame) { |
| 464 | endTiling(); |
| 465 | debugOverdraw(false, false); |
| 466 | } |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 467 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 468 | if (CC_UNLIKELY(inFrame || mCaches.drawDeferDisabled)) { |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 469 | layer->render(*this); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 470 | } else { |
Chris Craik | 69e5adf | 2014-08-14 13:34:01 -0700 | [diff] [blame] | 471 | layer->defer(*this); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 472 | } |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 473 | |
| 474 | if (inFrame) { |
| 475 | resumeAfterLayer(); |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 476 | startTilingCurrentClip(); |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 477 | } |
| 478 | |
Romain Guy | 5bb3c73 | 2012-11-29 17:52:58 -0800 | [diff] [blame] | 479 | layer->debugDrawUpdate = mCaches.debugLayersUpdates; |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 480 | layer->hasDrawnSinceUpdate = false; |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 481 | |
| 482 | return true; |
| 483 | } |
| 484 | |
| 485 | return false; |
| 486 | } |
| 487 | |
| 488 | void OpenGLRenderer::updateLayers() { |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 489 | // If draw deferring is enabled this method will simply defer |
| 490 | // the display list of each individual layer. The layers remain |
| 491 | // in the layer updates list which will be cleared by flushLayers(). |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 492 | int count = mLayerUpdates.size(); |
| 493 | if (count > 0) { |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 494 | if (CC_UNLIKELY(mCaches.drawDeferDisabled)) { |
| 495 | startMark("Layer Updates"); |
| 496 | } else { |
| 497 | startMark("Defer Layer Updates"); |
| 498 | } |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 499 | |
Chris Craik | 1206b9b | 2013-04-04 14:46:24 -0700 | [diff] [blame] | 500 | // Note: it is very important to update the layers in order |
| 501 | for (int i = 0; i < count; i++) { |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 502 | Layer* layer = mLayerUpdates.itemAt(i).get(); |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 503 | updateLayer(layer, false); |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 504 | } |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 505 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 506 | if (CC_UNLIKELY(mCaches.drawDeferDisabled)) { |
| 507 | mLayerUpdates.clear(); |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 508 | mRenderState.bindFramebuffer(onGetTargetFbo()); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 509 | } |
| 510 | endMark(); |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | void OpenGLRenderer::flushLayers() { |
| 515 | int count = mLayerUpdates.size(); |
| 516 | if (count > 0) { |
| 517 | startMark("Apply Layer Updates"); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 518 | |
Chris Craik | 1206b9b | 2013-04-04 14:46:24 -0700 | [diff] [blame] | 519 | // Note: it is very important to update the layers in order |
| 520 | for (int i = 0; i < count; i++) { |
Chris Craik | 70850ea | 2014-11-18 10:49:23 -0800 | [diff] [blame] | 521 | mLayerUpdates.itemAt(i)->flush(); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | mLayerUpdates.clear(); |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 525 | mRenderState.bindFramebuffer(onGetTargetFbo()); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 526 | |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 527 | endMark(); |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | void OpenGLRenderer::pushLayerUpdate(Layer* layer) { |
| 532 | if (layer) { |
Romain Guy | 02b49b7 | 2013-03-29 12:37:16 -0700 | [diff] [blame] | 533 | // Make sure we don't introduce duplicates. |
| 534 | // SortedVector would do this automatically but we need to respect |
| 535 | // the insertion order. The linear search is not an issue since |
| 536 | // this list is usually very short (typically one item, at most a few) |
| 537 | for (int i = mLayerUpdates.size() - 1; i >= 0; i--) { |
| 538 | if (mLayerUpdates.itemAt(i) == layer) { |
| 539 | return; |
| 540 | } |
| 541 | } |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 542 | mLayerUpdates.push_back(layer); |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 543 | } |
| 544 | } |
| 545 | |
Romain Guy | e93482f | 2013-06-17 13:14:51 -0700 | [diff] [blame] | 546 | void OpenGLRenderer::cancelLayerUpdate(Layer* layer) { |
| 547 | if (layer) { |
| 548 | for (int i = mLayerUpdates.size() - 1; i >= 0; i--) { |
| 549 | if (mLayerUpdates.itemAt(i) == layer) { |
| 550 | mLayerUpdates.removeAt(i); |
Romain Guy | e93482f | 2013-06-17 13:14:51 -0700 | [diff] [blame] | 551 | break; |
| 552 | } |
| 553 | } |
| 554 | } |
| 555 | } |
| 556 | |
Romain Guy | 4054360 | 2013-06-12 15:31:28 -0700 | [diff] [blame] | 557 | void OpenGLRenderer::flushLayerUpdates() { |
Chris Craik | 70850ea | 2014-11-18 10:49:23 -0800 | [diff] [blame] | 558 | ATRACE_NAME("Update HW Layers"); |
Romain Guy | 4054360 | 2013-06-12 15:31:28 -0700 | [diff] [blame] | 559 | syncState(); |
| 560 | updateLayers(); |
| 561 | flushLayers(); |
| 562 | // Wait for all the layer updates to be executed |
| 563 | AutoFence fence; |
| 564 | } |
| 565 | |
John Reck | 443a714 | 2014-09-04 17:40:05 -0700 | [diff] [blame] | 566 | void OpenGLRenderer::markLayersAsBuildLayers() { |
| 567 | for (size_t i = 0; i < mLayerUpdates.size(); i++) { |
| 568 | mLayerUpdates[i]->wasBuildLayered = true; |
| 569 | } |
| 570 | } |
| 571 | |
Romain Guy | 11cb642 | 2012-09-21 00:39:43 -0700 | [diff] [blame] | 572 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 573 | // State management |
| 574 | /////////////////////////////////////////////////////////////////////////////// |
| 575 | |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 576 | void OpenGLRenderer::onSnapshotRestored(const Snapshot& removed, const Snapshot& restored) { |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 577 | bool restoreViewport = removed.flags & Snapshot::kFlagIsFboLayer; |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 578 | bool restoreClip = removed.flags & Snapshot::kFlagClipSet; |
| 579 | bool restoreLayer = removed.flags & Snapshot::kFlagIsLayer; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 580 | |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 581 | if (restoreViewport) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 582 | mRenderState.setViewport(getViewportWidth(), getViewportHeight()); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 583 | } |
| 584 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 585 | if (restoreClip) { |
Romain Guy | 746b740 | 2010-10-26 16:27:31 -0700 | [diff] [blame] | 586 | dirtyClip(); |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 587 | } |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 588 | |
Romain Guy | 5ec9924 | 2010-11-03 16:19:08 -0700 | [diff] [blame] | 589 | if (restoreLayer) { |
Chris Craik | 7273daa | 2013-03-28 11:25:24 -0700 | [diff] [blame] | 590 | endMark(); // Savelayer |
Chris Craik | a8bea8e | 2014-09-24 11:29:43 -0700 | [diff] [blame] | 591 | ATRACE_END(); // SaveLayer |
Chris Craik | 7273daa | 2013-03-28 11:25:24 -0700 | [diff] [blame] | 592 | startMark("ComposeLayer"); |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 593 | composeLayer(removed, restored); |
Chris Craik | 7273daa | 2013-03-28 11:25:24 -0700 | [diff] [blame] | 594 | endMark(); |
Romain Guy | 5ec9924 | 2010-11-03 16:19:08 -0700 | [diff] [blame] | 595 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 598 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 599 | // Layers |
| 600 | /////////////////////////////////////////////////////////////////////////////// |
| 601 | |
| 602 | int OpenGLRenderer::saveLayer(float left, float top, float right, float bottom, |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 603 | const SkPaint* paint, int flags, const SkPath* convexMask) { |
Chris Craik | 4ace730 | 2014-09-14 15:49:54 -0700 | [diff] [blame] | 604 | // force matrix/clip isolation for layer |
| 605 | flags |= SkCanvas::kClip_SaveFlag | SkCanvas::kMatrix_SaveFlag; |
| 606 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 607 | const int count = mState.saveSnapshot(flags); |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 608 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 609 | if (!mState.currentlyIgnored()) { |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 610 | createLayer(left, top, right, bottom, paint, flags, convexMask); |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 611 | } |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 612 | |
| 613 | return count; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 614 | } |
| 615 | |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 616 | void OpenGLRenderer::calculateLayerBoundsAndClip(Rect& bounds, Rect& clip, bool fboLayer) { |
| 617 | const Rect untransformedBounds(bounds); |
| 618 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 619 | currentTransform()->mapRect(bounds); |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 620 | |
| 621 | // Layers only make sense if they are in the framebuffer's bounds |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 622 | if (bounds.intersect(*mState.currentClipRect())) { |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 623 | // We cannot work with sub-pixels in this case |
| 624 | bounds.snapToPixelBoundaries(); |
| 625 | |
| 626 | // When the layer is not an FBO, we may use glCopyTexImage so we |
| 627 | // need to make sure the layer does not extend outside the bounds |
| 628 | // of the framebuffer |
Chris Craik | 9241975 | 2014-05-15 13:21:28 -0700 | [diff] [blame] | 629 | const Snapshot& previous = *(currentSnapshot()->previous); |
| 630 | Rect previousViewport(0, 0, previous.getViewportWidth(), previous.getViewportHeight()); |
| 631 | if (!bounds.intersect(previousViewport)) { |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 632 | bounds.setEmpty(); |
| 633 | } else if (fboLayer) { |
| 634 | clip.set(bounds); |
| 635 | mat4 inverse; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 636 | inverse.loadInverse(*currentTransform()); |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 637 | inverse.mapRect(clip); |
| 638 | clip.snapToPixelBoundaries(); |
| 639 | if (clip.intersect(untransformedBounds)) { |
| 640 | clip.translate(-untransformedBounds.left, -untransformedBounds.top); |
| 641 | bounds.set(untransformedBounds); |
| 642 | } else { |
| 643 | clip.setEmpty(); |
| 644 | } |
| 645 | } |
| 646 | } else { |
| 647 | bounds.setEmpty(); |
| 648 | } |
| 649 | } |
| 650 | |
Chris Craik | 408eb12 | 2013-03-26 18:55:15 -0700 | [diff] [blame] | 651 | void OpenGLRenderer::updateSnapshotIgnoreForLayer(const Rect& bounds, const Rect& clip, |
| 652 | bool fboLayer, int alpha) { |
| 653 | if (bounds.isEmpty() || bounds.getWidth() > mCaches.maxTextureSize || |
| 654 | bounds.getHeight() > mCaches.maxTextureSize || |
| 655 | (fboLayer && clip.isEmpty())) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 656 | writableSnapshot()->empty = fboLayer; |
Chris Craik | 408eb12 | 2013-03-26 18:55:15 -0700 | [diff] [blame] | 657 | } else { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 658 | writableSnapshot()->invisible = writableSnapshot()->invisible || (alpha <= 0 && fboLayer); |
Chris Craik | 408eb12 | 2013-03-26 18:55:15 -0700 | [diff] [blame] | 659 | } |
| 660 | } |
| 661 | |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 662 | int OpenGLRenderer::saveLayerDeferred(float left, float top, float right, float bottom, |
Derek Sollenberger | d44fbe5 | 2014-02-05 16:47:00 -0500 | [diff] [blame] | 663 | const SkPaint* paint, int flags) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 664 | const int count = mState.saveSnapshot(flags); |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 665 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 666 | if (!mState.currentlyIgnored() && (flags & SkCanvas::kClipToLayer_SaveFlag)) { |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 667 | // initialize the snapshot as though it almost represents an FBO layer so deferred draw |
| 668 | // operations will be able to store and restore the current clip and transform info, and |
| 669 | // quick rejection will be correct (for display lists) |
| 670 | |
| 671 | Rect bounds(left, top, right, bottom); |
| 672 | Rect clip; |
| 673 | calculateLayerBoundsAndClip(bounds, clip, true); |
Derek Sollenberger | d44fbe5 | 2014-02-05 16:47:00 -0500 | [diff] [blame] | 674 | updateSnapshotIgnoreForLayer(bounds, clip, true, getAlphaDirect(paint)); |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 675 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 676 | if (!mState.currentlyIgnored()) { |
| 677 | writableSnapshot()->resetTransform(-bounds.left, -bounds.top, 0.0f); |
| 678 | writableSnapshot()->resetClip(clip.left, clip.top, clip.right, clip.bottom); |
| 679 | writableSnapshot()->initializeViewport(bounds.getWidth(), bounds.getHeight()); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 680 | writableSnapshot()->roundRectClipState = nullptr; |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 681 | } |
| 682 | } |
| 683 | |
| 684 | return count; |
| 685 | } |
| 686 | |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 687 | /** |
| 688 | * Layers are viewed by Skia are slightly different than layers in image editing |
| 689 | * programs (for instance.) When a layer is created, previously created layers |
| 690 | * and the frame buffer still receive every drawing command. For instance, if a |
| 691 | * layer is created and a shape intersecting the bounds of the layers and the |
| 692 | * framebuffer is draw, the shape will be drawn on both (unless the layer was |
| 693 | * created with the SkCanvas::kClipToLayer_SaveFlag flag.) |
| 694 | * |
| 695 | * A way to implement layers is to create an FBO for each layer, backed by an RGBA |
| 696 | * texture. Unfortunately, this is inefficient as it requires every primitive to |
| 697 | * be drawn n + 1 times, where n is the number of active layers. In practice this |
| 698 | * means, for every primitive: |
| 699 | * - Switch active frame buffer |
| 700 | * - Change viewport, clip and projection matrix |
| 701 | * - Issue the drawing |
| 702 | * |
| 703 | * Switching rendering target n + 1 times per drawn primitive is extremely costly. |
Romain Guy | 6b7bd24 | 2010-10-06 19:49:23 -0700 | [diff] [blame] | 704 | * To avoid this, layers are implemented in a different way here, at least in the |
| 705 | * general case. FBOs are used, as an optimization, when the "clip to layer" flag |
| 706 | * is set. When this flag is set we can redirect all drawing operations into a |
| 707 | * single FBO. |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 708 | * |
| 709 | * This implementation relies on the frame buffer being at least RGBA 8888. When |
| 710 | * a layer is created, only a texture is created, not an FBO. The content of the |
| 711 | * frame buffer contained within the layer's bounds is copied into this texture |
Romain Guy | 87a7657 | 2010-09-13 18:11:21 -0700 | [diff] [blame] | 712 | * using glCopyTexImage2D(). The layer's region is then cleared(1) in the frame |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 713 | * buffer and drawing continues as normal. This technique therefore treats the |
| 714 | * frame buffer as a scratch buffer for the layers. |
| 715 | * |
| 716 | * To compose the layers back onto the frame buffer, each layer texture |
| 717 | * (containing the original frame buffer data) is drawn as a simple quad over |
| 718 | * the frame buffer. The trick is that the quad is set as the composition |
| 719 | * destination in the blending equation, and the frame buffer becomes the source |
| 720 | * of the composition. |
| 721 | * |
| 722 | * Drawing layers with an alpha value requires an extra step before composition. |
| 723 | * An empty quad is drawn over the layer's region in the frame buffer. This quad |
| 724 | * is drawn with the rgba color (0,0,0,alpha). The alpha value offered by the |
| 725 | * quad is used to multiply the colors in the frame buffer. This is achieved by |
| 726 | * changing the GL blend functions for the GL_FUNC_ADD blend equation to |
| 727 | * GL_ZERO, GL_SRC_ALPHA. |
| 728 | * |
| 729 | * Because glCopyTexImage2D() can be slow, an alternative implementation might |
| 730 | * be use to draw a single clipped layer. The implementation described above |
| 731 | * is correct in every case. |
Romain Guy | 87a7657 | 2010-09-13 18:11:21 -0700 | [diff] [blame] | 732 | * |
| 733 | * (1) The frame buffer is actually not cleared right away. To allow the GPU |
| 734 | * to potentially optimize series of calls to glCopyTexImage2D, the frame |
| 735 | * buffer is left untouched until the first drawing operation. Only when |
| 736 | * something actually gets drawn are the layers regions cleared. |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 737 | */ |
Chet Haase | d48885a | 2012-08-28 17:43:28 -0700 | [diff] [blame] | 738 | bool OpenGLRenderer::createLayer(float left, float top, float right, float bottom, |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 739 | const SkPaint* paint, int flags, const SkPath* convexMask) { |
Chris Craik | 07adacf | 2014-12-19 10:08:40 -0800 | [diff] [blame] | 740 | LAYER_LOGD("Requesting layer %.2fx%.2f", right - left, bottom - top); |
| 741 | LAYER_LOGD("Layer cache size = %d", mCaches.layerCache.getSize()); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 742 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 743 | const bool fboLayer = flags & SkCanvas::kClipToLayer_SaveFlag; |
| 744 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 745 | // Window coordinates of the layer |
Chet Haase | d48885a | 2012-08-28 17:43:28 -0700 | [diff] [blame] | 746 | Rect clip; |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 747 | Rect bounds(left, top, right, bottom); |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 748 | calculateLayerBoundsAndClip(bounds, clip, fboLayer); |
Derek Sollenberger | 674554f | 2014-02-19 16:47:32 +0000 | [diff] [blame] | 749 | updateSnapshotIgnoreForLayer(bounds, clip, fboLayer, getAlphaDirect(paint)); |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 750 | |
| 751 | // Bail out if we won't draw in this snapshot |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 752 | if (mState.currentlyIgnored()) { |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 753 | return false; |
| 754 | } |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 755 | |
Romain Guy | a1d3c91 | 2011-12-13 14:55:06 -0800 | [diff] [blame] | 756 | mCaches.activeTexture(0); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 757 | Layer* layer = mCaches.layerCache.get(mRenderState, bounds.getWidth(), bounds.getHeight()); |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 758 | if (!layer) { |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 759 | return false; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 760 | } |
| 761 | |
Derek Sollenberger | 674554f | 2014-02-19 16:47:32 +0000 | [diff] [blame] | 762 | layer->setPaint(paint); |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 763 | layer->layer.set(bounds); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 764 | layer->texCoords.set(0.0f, bounds.getHeight() / float(layer->getHeight()), |
| 765 | bounds.getWidth() / float(layer->getWidth()), 0.0f); |
Derek Sollenberger | d44fbe5 | 2014-02-05 16:47:00 -0500 | [diff] [blame] | 766 | |
Chet Haase | a23eed8 | 2012-04-12 15:19:04 -0700 | [diff] [blame] | 767 | layer->setBlend(true); |
Romain Guy | 7c25aab | 2012-10-18 15:05:02 -0700 | [diff] [blame] | 768 | layer->setDirty(false); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 769 | layer->setConvexMask(convexMask); // note: the mask must be cleared before returning to the cache |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 770 | |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 771 | // Save the layer in the snapshot |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 772 | writableSnapshot()->flags |= Snapshot::kFlagIsLayer; |
| 773 | writableSnapshot()->layer = layer; |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 774 | |
Chris Craik | a8bea8e | 2014-09-24 11:29:43 -0700 | [diff] [blame] | 775 | ATRACE_FORMAT_BEGIN("%ssaveLayer %ux%u", |
| 776 | fboLayer ? "" : "unclipped ", |
| 777 | layer->getWidth(), layer->getHeight()); |
Chris Craik | 7273daa | 2013-03-28 11:25:24 -0700 | [diff] [blame] | 778 | startMark("SaveLayer"); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 779 | if (fboLayer) { |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 780 | return createFboLayer(layer, bounds, clip); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 781 | } else { |
| 782 | // Copy the framebuffer into the layer |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 783 | layer->bindTexture(); |
Romain Guy | 514fb18 | 2011-01-19 14:38:29 -0800 | [diff] [blame] | 784 | if (!bounds.isEmpty()) { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 785 | if (layer->isEmpty()) { |
Romain Guy | b254c24 | 2013-06-27 17:15:24 -0700 | [diff] [blame] | 786 | // Workaround for some GL drivers. When reading pixels lying outside |
| 787 | // of the window we should get undefined values for those pixels. |
| 788 | // Unfortunately some drivers will turn the entire target texture black |
| 789 | // when reading outside of the window. |
| 790 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, layer->getWidth(), layer->getHeight(), |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 791 | 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 792 | layer->setEmpty(false); |
Romain Guy | 514fb18 | 2011-01-19 14:38:29 -0800 | [diff] [blame] | 793 | } |
Romain Guy | 7b5b6ab | 2011-03-14 18:05:08 -0700 | [diff] [blame] | 794 | |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 795 | glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, |
| 796 | bounds.left, getViewportHeight() - bounds.bottom, |
| 797 | bounds.getWidth(), bounds.getHeight()); |
Romain Guy | b254c24 | 2013-06-27 17:15:24 -0700 | [diff] [blame] | 798 | |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 799 | // Enqueue the buffer coordinates to clear the corresponding region later |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 800 | mLayers.push_back(Rect(bounds)); |
Romain Guy | ae88e5e | 2010-10-22 17:49:18 -0700 | [diff] [blame] | 801 | } |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 802 | } |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 803 | |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 804 | return true; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 805 | } |
| 806 | |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 807 | bool OpenGLRenderer::createFboLayer(Layer* layer, Rect& bounds, Rect& clip) { |
Romain Guy | c3fedaf | 2013-01-29 17:26:25 -0800 | [diff] [blame] | 808 | layer->clipRect.set(clip); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 809 | layer->setFbo(mCaches.fboCache.get()); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 810 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 811 | writableSnapshot()->region = &writableSnapshot()->layer->region; |
| 812 | writableSnapshot()->flags |= Snapshot::kFlagFboTarget | Snapshot::kFlagIsFboLayer; |
| 813 | writableSnapshot()->fbo = layer->getFbo(); |
| 814 | writableSnapshot()->resetTransform(-bounds.left, -bounds.top, 0.0f); |
| 815 | writableSnapshot()->resetClip(clip.left, clip.top, clip.right, clip.bottom); |
| 816 | writableSnapshot()->initializeViewport(bounds.getWidth(), bounds.getHeight()); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 817 | writableSnapshot()->roundRectClipState = nullptr; |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 818 | |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 819 | endTiling(); |
Romain Guy | 7c450aa | 2012-09-21 19:15:00 -0700 | [diff] [blame] | 820 | debugOverdraw(false, false); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 821 | // Bind texture to FBO |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 822 | mRenderState.bindFramebuffer(layer->getFbo()); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 823 | layer->bindTexture(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 824 | |
| 825 | // Initialize the texture if needed |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 826 | if (layer->isEmpty()) { |
Romain Guy | 0908764 | 2013-04-04 12:27:54 -0700 | [diff] [blame] | 827 | layer->allocateTexture(); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 828 | layer->setEmpty(false); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 832 | layer->getTexture(), 0); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 833 | |
henry.uh_chen | 33f5a59 | 2014-07-02 19:36:56 +0800 | [diff] [blame] | 834 | // Expand the startTiling region by 1 |
| 835 | startTilingCurrentClip(true, true); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 836 | |
| 837 | // Clear the FBO, expand the clear region by 1 to get nice bilinear filtering |
Romain Guy | 586cae3 | 2012-07-13 15:28:31 -0700 | [diff] [blame] | 838 | mCaches.enableScissor(); |
Romain Guy | 8f85e80 | 2011-12-14 19:23:32 -0800 | [diff] [blame] | 839 | mCaches.setScissor(clip.left - 1.0f, bounds.getHeight() - clip.bottom - 1.0f, |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 840 | clip.getWidth() + 2.0f, clip.getHeight() + 2.0f); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 841 | glClear(GL_COLOR_BUFFER_BIT); |
| 842 | |
| 843 | dirtyClip(); |
| 844 | |
| 845 | // Change the ortho projection |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 846 | mRenderState.setViewport(bounds.getWidth(), bounds.getHeight()); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 847 | return true; |
| 848 | } |
| 849 | |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 850 | /** |
| 851 | * Read the documentation of createLayer() before doing anything in this method. |
| 852 | */ |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 853 | void OpenGLRenderer::composeLayer(const Snapshot& removed, const Snapshot& restored) { |
| 854 | if (!removed.layer) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 855 | ALOGE("Attempting to compose a layer that does not exist"); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 856 | return; |
| 857 | } |
| 858 | |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 859 | Layer* layer = removed.layer; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 860 | const Rect& rect = layer->layer; |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 861 | const bool fboLayer = removed.flags & Snapshot::kFlagIsFboLayer; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 862 | |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 863 | bool clipRequired = false; |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 864 | mState.calculateQuickRejectForScissor(rect.left, rect.top, rect.right, rect.bottom, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 865 | &clipRequired, nullptr, false); // safely ignore return, should never be rejected |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 866 | mCaches.setScissorEnabled(mScissorOptimizationDisabled || clipRequired); |
| 867 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 868 | if (fboLayer) { |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 869 | endTiling(); |
| 870 | |
Romain Guy | e0aa84b | 2012-04-03 19:30:26 -0700 | [diff] [blame] | 871 | // Detach the texture from the FBO |
| 872 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, 0, 0); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 873 | |
| 874 | layer->removeFbo(false); |
| 875 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 876 | // Unbind current FBO and restore previous one |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 877 | mRenderState.bindFramebuffer(restored.fbo); |
Romain Guy | 7c450aa | 2012-09-21 19:15:00 -0700 | [diff] [blame] | 878 | debugOverdraw(true, false); |
Romain Guy | 2b7028e | 2012-09-19 17:25:38 -0700 | [diff] [blame] | 879 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 880 | startTilingCurrentClip(); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 881 | } |
| 882 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 883 | if (!fboLayer && layer->getAlpha() < 255) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 884 | SkPaint layerPaint; |
| 885 | layerPaint.setAlpha(layer->getAlpha()); |
| 886 | layerPaint.setXfermodeMode(SkXfermode::kDstIn_Mode); |
| 887 | layerPaint.setColorFilter(layer->getColorFilter()); |
| 888 | |
| 889 | drawColorRect(rect.left, rect.top, rect.right, rect.bottom, &layerPaint, true); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 890 | // Required below, composeLayerRect() will divide by 255 |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 891 | layer->setAlpha(255); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 892 | } |
| 893 | |
Romain Guy | 03750a0 | 2010-10-18 14:06:08 -0700 | [diff] [blame] | 894 | mCaches.unbindMeshBuffer(); |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 895 | |
Romain Guy | a1d3c91 | 2011-12-13 14:55:06 -0800 | [diff] [blame] | 896 | mCaches.activeTexture(0); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 897 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 898 | // When the layer is stored in an FBO, we can save a bit of fillrate by |
| 899 | // drawing only the dirty region |
| 900 | if (fboLayer) { |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 901 | dirtyLayer(rect.left, rect.top, rect.right, rect.bottom, *restored.transform); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 902 | composeLayerRegion(layer, rect); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 903 | } else if (!rect.isEmpty()) { |
| 904 | dirtyLayer(rect.left, rect.top, rect.right, rect.bottom); |
Digish Pandya | a5ff739 | 2013-11-04 06:30:25 +0530 | [diff] [blame] | 905 | |
| 906 | save(0); |
| 907 | // the layer contains screen buffer content that shouldn't be alpha modulated |
| 908 | // (and any necessary alpha modulation was handled drawing into the layer) |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 909 | writableSnapshot()->alpha = 1.0f; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 910 | composeLayerRect(layer, rect, true); |
Digish Pandya | a5ff739 | 2013-11-04 06:30:25 +0530 | [diff] [blame] | 911 | restore(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 912 | } |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 913 | |
Romain Guy | 746b740 | 2010-10-26 16:27:31 -0700 | [diff] [blame] | 914 | dirtyClip(); |
| 915 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 916 | // Failing to add the layer to the cache should happen only if the layer is too large |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 917 | layer->setConvexMask(nullptr); |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 918 | if (!mCaches.layerCache.put(layer)) { |
Chris Craik | 07adacf | 2014-12-19 10:08:40 -0800 | [diff] [blame] | 919 | LAYER_LOGD("Deleting layer"); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 920 | layer->decStrong(nullptr); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 921 | } |
| 922 | } |
| 923 | |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 924 | void OpenGLRenderer::drawTextureLayer(Layer* layer, const Rect& rect) { |
Romain Guy | 2458939 | 2013-06-19 12:17:01 -0700 | [diff] [blame] | 925 | float alpha = getLayerAlpha(layer); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 926 | |
| 927 | setupDraw(); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 928 | if (layer->getRenderTarget() == GL_TEXTURE_2D) { |
Romain Guy | 8f0095c | 2011-05-02 17:24:22 -0700 | [diff] [blame] | 929 | setupDrawWithTexture(); |
| 930 | } else { |
| 931 | setupDrawWithExternalTexture(); |
| 932 | } |
| 933 | setupDrawTextureTransform(); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 934 | setupDrawColor(alpha, alpha, alpha, alpha); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 935 | setupDrawColorFilter(layer->getColorFilter()); |
| 936 | setupDrawBlending(layer); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 937 | setupDrawProgram(); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 938 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 939 | setupDrawColorFilterUniforms(layer->getColorFilter()); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 940 | if (layer->getRenderTarget() == GL_TEXTURE_2D) { |
| 941 | setupDrawTexture(layer->getTexture()); |
Romain Guy | 8f0095c | 2011-05-02 17:24:22 -0700 | [diff] [blame] | 942 | } else { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 943 | setupDrawExternalTexture(layer->getTexture()); |
Romain Guy | 8f0095c | 2011-05-02 17:24:22 -0700 | [diff] [blame] | 944 | } |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 945 | if (currentTransform()->isPureTranslate() && |
Chris Craik | 9757ac0 | 2014-02-25 18:50:17 -0800 | [diff] [blame] | 946 | !layer->getForceFilter() && |
Romain Guy | ec19b4a | 2011-07-07 21:05:04 -0700 | [diff] [blame] | 947 | layer->getWidth() == (uint32_t) rect.getWidth() && |
| 948 | layer->getHeight() == (uint32_t) rect.getHeight()) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 949 | const float x = (int) floorf(rect.left + currentTransform()->getTranslateX() + 0.5f); |
| 950 | const float y = (int) floorf(rect.top + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 951 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 952 | layer->setFilter(GL_NEAREST); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 953 | setupDrawModelView(kModelViewMode_TranslateAndScale, false, |
| 954 | x, y, x + rect.getWidth(), y + rect.getHeight(), true); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 955 | } else { |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 956 | layer->setFilter(GL_LINEAR); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 957 | setupDrawModelView(kModelViewMode_TranslateAndScale, false, |
| 958 | rect.left, rect.top, rect.right, rect.bottom); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 959 | } |
| 960 | setupDrawTextureTransformUniforms(layer->getTexTransform()); |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 961 | setupDrawMesh(&mMeshVertices[0].x, &mMeshVertices[0].u); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 962 | |
| 963 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 964 | } |
| 965 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 966 | void OpenGLRenderer::composeLayerRect(Layer* layer, const Rect& rect, bool swap) { |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 967 | if (layer->isTextureLayer()) { |
| 968 | EVENT_LOGD("composeTextureLayerRect"); |
| 969 | resetDrawTextureTexCoords(0.0f, 1.0f, 1.0f, 0.0f); |
| 970 | drawTextureLayer(layer, rect); |
| 971 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
| 972 | } else { |
| 973 | EVENT_LOGD("composeHardwareLayerRect"); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 974 | const Rect& texCoords = layer->texCoords; |
| 975 | resetDrawTextureTexCoords(texCoords.left, texCoords.top, |
| 976 | texCoords.right, texCoords.bottom); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 977 | |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 978 | float x = rect.left; |
| 979 | float y = rect.top; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 980 | bool simpleTransform = currentTransform()->isPureTranslate() && |
Romain Guy | ec19b4a | 2011-07-07 21:05:04 -0700 | [diff] [blame] | 981 | layer->getWidth() == (uint32_t) rect.getWidth() && |
Romain Guy | b247915 | 2011-07-08 11:57:29 -0700 | [diff] [blame] | 982 | layer->getHeight() == (uint32_t) rect.getHeight(); |
| 983 | |
| 984 | if (simpleTransform) { |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 985 | // When we're swapping, the layer is already in screen coordinates |
| 986 | if (!swap) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 987 | x = (int) floorf(rect.left + currentTransform()->getTranslateX() + 0.5f); |
| 988 | y = (int) floorf(rect.top + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 989 | } |
| 990 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 991 | layer->setFilter(GL_NEAREST, true); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 992 | } else { |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 993 | layer->setFilter(GL_LINEAR, true); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 994 | } |
| 995 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 996 | SkPaint layerPaint; |
| 997 | layerPaint.setAlpha(getLayerAlpha(layer) * 255); |
| 998 | layerPaint.setXfermodeMode(layer->getMode()); |
| 999 | layerPaint.setColorFilter(layer->getColorFilter()); |
| 1000 | |
| 1001 | bool blend = layer->isBlend() || getLayerAlpha(layer) < 1.0f; |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 1002 | drawTextureMesh(x, y, x + rect.getWidth(), y + rect.getHeight(), |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1003 | layer->getTexture(), &layerPaint, blend, |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 1004 | &mMeshVertices[0].x, &mMeshVertices[0].u, |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 1005 | GL_TRIANGLE_STRIP, gMeshCount, swap, swap || simpleTransform); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1006 | |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 1007 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 1008 | } |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1009 | } |
| 1010 | |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 1011 | /** |
| 1012 | * Issues the command X, and if we're composing a save layer to the fbo or drawing a newly updated |
| 1013 | * hardware layer with overdraw debug on, draws again to the stencil only, so that these draw |
| 1014 | * operations are correctly counted twice for overdraw. NOTE: assumes composeLayerRegion only used |
| 1015 | * by saveLayer's restore |
| 1016 | */ |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1017 | #define DRAW_DOUBLE_STENCIL_IF(COND, DRAW_COMMAND) { \ |
| 1018 | DRAW_COMMAND; \ |
| 1019 | if (CC_UNLIKELY(mCaches.debugOverdraw && onGetTargetFbo() == 0 && COND)) { \ |
| 1020 | glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE); \ |
| 1021 | DRAW_COMMAND; \ |
| 1022 | glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE); \ |
| 1023 | } \ |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | #define DRAW_DOUBLE_STENCIL(DRAW_COMMAND) DRAW_DOUBLE_STENCIL_IF(true, DRAW_COMMAND) |
| 1027 | |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1028 | // This class is purely for inspection. It inherits from SkShader, but Skia does not know how to |
| 1029 | // use it. The OpenGLRenderer will look at it to find its Layer and whether it is opaque. |
| 1030 | class LayerShader : public SkShader { |
| 1031 | public: |
| 1032 | LayerShader(Layer* layer, const SkMatrix* localMatrix) |
| 1033 | : INHERITED(localMatrix) |
| 1034 | , mLayer(layer) { |
| 1035 | } |
| 1036 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1037 | virtual bool asACustomShader(void** data) const override { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1038 | if (data) { |
| 1039 | *data = static_cast<void*>(mLayer); |
| 1040 | } |
| 1041 | return true; |
| 1042 | } |
| 1043 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1044 | virtual bool isOpaque() const override { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1045 | return !mLayer->isBlend(); |
| 1046 | } |
| 1047 | |
| 1048 | protected: |
Andreas Gampe | 64bb413 | 2014-11-22 00:35:09 +0000 | [diff] [blame] | 1049 | virtual void shadeSpan(int x, int y, SkPMColor[], int count) { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1050 | LOG_ALWAYS_FATAL("LayerShader should never be drawn with raster backend."); |
| 1051 | } |
| 1052 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1053 | virtual void flatten(SkWriteBuffer&) const override { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1054 | LOG_ALWAYS_FATAL("LayerShader should never be flattened."); |
| 1055 | } |
| 1056 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1057 | virtual Factory getFactory() const override { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1058 | LOG_ALWAYS_FATAL("LayerShader should never be created from a stream."); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1059 | return nullptr; |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1060 | } |
| 1061 | private: |
| 1062 | // Unowned. |
| 1063 | Layer* mLayer; |
| 1064 | typedef SkShader INHERITED; |
| 1065 | }; |
| 1066 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1067 | void OpenGLRenderer::composeLayerRegion(Layer* layer, const Rect& rect) { |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1068 | if (CC_UNLIKELY(layer->region.isEmpty())) return; // nothing to draw |
| 1069 | |
| 1070 | if (layer->getConvexMask()) { |
| 1071 | save(SkCanvas::kClip_SaveFlag | SkCanvas::kMatrix_SaveFlag); |
| 1072 | |
| 1073 | // clip to the area of the layer the mask can be larger |
| 1074 | clipRect(rect.left, rect.top, rect.right, rect.bottom, SkRegion::kIntersect_Op); |
| 1075 | |
| 1076 | SkPaint paint; |
| 1077 | paint.setAntiAlias(true); |
| 1078 | paint.setColor(SkColorSetARGB(int(getLayerAlpha(layer) * 255), 0, 0, 0)); |
| 1079 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1080 | // create LayerShader to map SaveLayer content into subsequent draw |
| 1081 | SkMatrix shaderMatrix; |
| 1082 | shaderMatrix.setTranslate(rect.left, rect.bottom); |
| 1083 | shaderMatrix.preScale(1, -1); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1084 | LayerShader layerShader(layer, &shaderMatrix); |
| 1085 | paint.setShader(&layerShader); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1086 | |
| 1087 | // Since the drawing primitive is defined in local drawing space, |
| 1088 | // we don't need to modify the draw matrix |
| 1089 | const SkPath* maskPath = layer->getConvexMask(); |
| 1090 | DRAW_DOUBLE_STENCIL(drawConvexPath(*maskPath, &paint)); |
| 1091 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1092 | paint.setShader(nullptr); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1093 | restore(); |
| 1094 | |
| 1095 | return; |
| 1096 | } |
| 1097 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1098 | if (layer->region.isRect()) { |
Romain Guy | 9fc2781 | 2011-04-27 14:21:41 -0700 | [diff] [blame] | 1099 | layer->setRegionAsRect(); |
| 1100 | |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 1101 | DRAW_DOUBLE_STENCIL(composeLayerRect(layer, layer->regionRect)); |
Romain Guy | 9fc2781 | 2011-04-27 14:21:41 -0700 | [diff] [blame] | 1102 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1103 | layer->region.clear(); |
| 1104 | return; |
| 1105 | } |
| 1106 | |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 1107 | EVENT_LOGD("composeLayerRegion"); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1108 | // standard Region based draw |
| 1109 | size_t count; |
| 1110 | const android::Rect* rects; |
| 1111 | Region safeRegion; |
| 1112 | if (CC_LIKELY(hasRectToRectTransform())) { |
| 1113 | rects = layer->region.getArray(&count); |
| 1114 | } else { |
| 1115 | safeRegion = Region::createTJunctionFreeRegion(layer->region); |
| 1116 | rects = safeRegion.getArray(&count); |
| 1117 | } |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1118 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1119 | const float alpha = getLayerAlpha(layer); |
| 1120 | const float texX = 1.0f / float(layer->getWidth()); |
| 1121 | const float texY = 1.0f / float(layer->getHeight()); |
| 1122 | const float height = rect.getHeight(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1123 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1124 | setupDraw(); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1125 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1126 | // We must get (and therefore bind) the region mesh buffer |
| 1127 | // after we setup drawing in case we need to mess with the |
| 1128 | // stencil buffer in setupDraw() |
| 1129 | TextureVertex* mesh = mCaches.getRegionMesh(); |
| 1130 | uint32_t numQuads = 0; |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1131 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1132 | setupDrawWithTexture(); |
| 1133 | setupDrawColor(alpha, alpha, alpha, alpha); |
| 1134 | setupDrawColorFilter(layer->getColorFilter()); |
| 1135 | setupDrawBlending(layer); |
| 1136 | setupDrawProgram(); |
| 1137 | setupDrawDirtyRegionsDisabled(); |
| 1138 | setupDrawPureColorUniforms(); |
| 1139 | setupDrawColorFilterUniforms(layer->getColorFilter()); |
| 1140 | setupDrawTexture(layer->getTexture()); |
| 1141 | if (currentTransform()->isPureTranslate()) { |
| 1142 | const float x = (int) floorf(rect.left + currentTransform()->getTranslateX() + 0.5f); |
| 1143 | const float y = (int) floorf(rect.top + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 1144 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1145 | layer->setFilter(GL_NEAREST); |
| 1146 | setupDrawModelView(kModelViewMode_Translate, false, |
| 1147 | x, y, x + rect.getWidth(), y + rect.getHeight(), true); |
| 1148 | } else { |
| 1149 | layer->setFilter(GL_LINEAR); |
| 1150 | setupDrawModelView(kModelViewMode_Translate, false, |
| 1151 | rect.left, rect.top, rect.right, rect.bottom); |
| 1152 | } |
| 1153 | setupDrawMeshIndices(&mesh[0].x, &mesh[0].u); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1154 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1155 | for (size_t i = 0; i < count; i++) { |
| 1156 | const android::Rect* r = &rects[i]; |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1157 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1158 | const float u1 = r->left * texX; |
| 1159 | const float v1 = (height - r->top) * texY; |
| 1160 | const float u2 = r->right * texX; |
| 1161 | const float v2 = (height - r->bottom) * texY; |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1162 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1163 | // TODO: Reject quads outside of the clip |
| 1164 | TextureVertex::set(mesh++, r->left, r->top, u1, v1); |
| 1165 | TextureVertex::set(mesh++, r->right, r->top, u2, v1); |
| 1166 | TextureVertex::set(mesh++, r->left, r->bottom, u1, v2); |
| 1167 | TextureVertex::set(mesh++, r->right, r->bottom, u2, v2); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1168 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1169 | numQuads++; |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1170 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1171 | if (numQuads >= gMaxNumberOfQuads) { |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 1172 | DRAW_DOUBLE_STENCIL(glDrawElements(GL_TRIANGLES, numQuads * 6, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1173 | GL_UNSIGNED_SHORT, nullptr)); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1174 | numQuads = 0; |
| 1175 | mesh = mCaches.getRegionMesh(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1176 | } |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | if (numQuads > 0) { |
| 1180 | DRAW_DOUBLE_STENCIL(glDrawElements(GL_TRIANGLES, numQuads * 6, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1181 | GL_UNSIGNED_SHORT, nullptr)); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1182 | } |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1183 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1184 | #if DEBUG_LAYERS_AS_REGIONS |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1185 | drawRegionRectsDebug(layer->region); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1186 | #endif |
| 1187 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 1188 | layer->region.clear(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 1191 | #if DEBUG_LAYERS_AS_REGIONS |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 1192 | void OpenGLRenderer::drawRegionRectsDebug(const Region& region) { |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 1193 | size_t count; |
| 1194 | const android::Rect* rects = region.getArray(&count); |
| 1195 | |
| 1196 | uint32_t colors[] = { |
| 1197 | 0x7fff0000, 0x7f00ff00, |
| 1198 | 0x7f0000ff, 0x7fff00ff, |
| 1199 | }; |
| 1200 | |
| 1201 | int offset = 0; |
| 1202 | int32_t top = rects[0].top; |
| 1203 | |
| 1204 | for (size_t i = 0; i < count; i++) { |
| 1205 | if (top != rects[i].top) { |
| 1206 | offset ^= 0x2; |
| 1207 | top = rects[i].top; |
| 1208 | } |
| 1209 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1210 | SkPaint paint; |
| 1211 | paint.setColor(colors[offset + (i & 0x1)]); |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 1212 | Rect r(rects[i].left, rects[i].top, rects[i].right, rects[i].bottom); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1213 | drawColorRect(r.left, r.top, r.right, r.bottom, paint); |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 1214 | } |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 1215 | } |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 1216 | #endif |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 1217 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1218 | void OpenGLRenderer::drawRegionRects(const SkRegion& region, const SkPaint& paint, bool dirty) { |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1219 | Vector<float> rects; |
| 1220 | |
| 1221 | SkRegion::Iterator it(region); |
| 1222 | while (!it.done()) { |
| 1223 | const SkIRect& r = it.rect(); |
| 1224 | rects.push(r.fLeft); |
| 1225 | rects.push(r.fTop); |
| 1226 | rects.push(r.fRight); |
| 1227 | rects.push(r.fBottom); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1228 | it.next(); |
| 1229 | } |
| 1230 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1231 | drawColorRects(rects.array(), rects.size(), &paint, true, dirty, false); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1232 | } |
| 1233 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1234 | void OpenGLRenderer::dirtyLayer(const float left, const float top, |
| 1235 | const float right, const float bottom, const mat4 transform) { |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 1236 | if (hasLayer()) { |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1237 | Rect bounds(left, top, right, bottom); |
| 1238 | transform.mapRect(bounds); |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 1239 | dirtyLayerUnchecked(bounds, getRegion()); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1240 | } |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1241 | } |
| 1242 | |
| 1243 | void OpenGLRenderer::dirtyLayer(const float left, const float top, |
| 1244 | const float right, const float bottom) { |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 1245 | if (hasLayer()) { |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1246 | Rect bounds(left, top, right, bottom); |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 1247 | dirtyLayerUnchecked(bounds, getRegion()); |
Romain Guy | 1bd1bad | 2011-01-14 20:07:20 -0800 | [diff] [blame] | 1248 | } |
Romain Guy | 1bd1bad | 2011-01-14 20:07:20 -0800 | [diff] [blame] | 1249 | } |
| 1250 | |
| 1251 | void OpenGLRenderer::dirtyLayerUnchecked(Rect& bounds, Region* region) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1252 | if (bounds.intersect(*mState.currentClipRect())) { |
Romain Guy | 1bd1bad | 2011-01-14 20:07:20 -0800 | [diff] [blame] | 1253 | bounds.snapToPixelBoundaries(); |
| 1254 | android::Rect dirty(bounds.left, bounds.top, bounds.right, bounds.bottom); |
| 1255 | if (!dirty.isEmpty()) { |
| 1256 | region->orSelf(dirty); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1257 | } |
| 1258 | } |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 1259 | } |
| 1260 | |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1261 | void OpenGLRenderer::issueIndexedQuadDraw(Vertex* mesh, GLsizei quadsCount) { |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 1262 | GLsizei elementsCount = quadsCount * 6; |
| 1263 | while (elementsCount > 0) { |
| 1264 | GLsizei drawCount = min(elementsCount, (GLsizei) gMaxNumberOfQuads * 6); |
| 1265 | |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 1266 | setupDrawIndexedVertices(&mesh[0].x); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1267 | glDrawElements(GL_TRIANGLES, drawCount, GL_UNSIGNED_SHORT, nullptr); |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 1268 | |
| 1269 | elementsCount -= drawCount; |
| 1270 | // Though there are 4 vertices in a quad, we use 6 indices per |
| 1271 | // quad to draw with GL_TRIANGLES |
| 1272 | mesh += (drawCount / 6) * 4; |
| 1273 | } |
| 1274 | } |
| 1275 | |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1276 | void OpenGLRenderer::clearLayerRegions() { |
| 1277 | const size_t count = mLayers.size(); |
| 1278 | if (count == 0) return; |
| 1279 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1280 | if (!mState.currentlyIgnored()) { |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 1281 | EVENT_LOGD("clearLayerRegions"); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1282 | // Doing several glScissor/glClear here can negatively impact |
| 1283 | // GPUs with a tiler architecture, instead we draw quads with |
| 1284 | // the Clear blending mode |
| 1285 | |
| 1286 | // The list contains bounds that have already been clipped |
| 1287 | // against their initial clip rect, and the current clip |
| 1288 | // is likely different so we need to disable clipping here |
Romain Guy | 8a4ac61 | 2012-07-17 17:32:48 -0700 | [diff] [blame] | 1289 | bool scissorChanged = mCaches.disableScissor(); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1290 | |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 1291 | Vertex mesh[count * 4]; |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1292 | Vertex* vertex = mesh; |
| 1293 | |
| 1294 | for (uint32_t i = 0; i < count; i++) { |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 1295 | const Rect& bounds = mLayers[i]; |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1296 | |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 1297 | Vertex::set(vertex++, bounds.left, bounds.top); |
| 1298 | Vertex::set(vertex++, bounds.right, bounds.top); |
| 1299 | Vertex::set(vertex++, bounds.left, bounds.bottom); |
| 1300 | Vertex::set(vertex++, bounds.right, bounds.bottom); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1301 | } |
Romain Guy | e67307c | 2013-02-11 18:01:20 -0800 | [diff] [blame] | 1302 | // We must clear the list of dirty rects before we |
| 1303 | // call setupDraw() to prevent stencil setup to do |
| 1304 | // the same thing again |
| 1305 | mLayers.clear(); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1306 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1307 | SkPaint clearPaint; |
| 1308 | clearPaint.setXfermodeMode(SkXfermode::kClear_Mode); |
| 1309 | |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1310 | setupDraw(false); |
| 1311 | setupDrawColor(0.0f, 0.0f, 0.0f, 1.0f); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1312 | setupDrawBlending(&clearPaint, true); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1313 | setupDrawProgram(); |
| 1314 | setupDrawPureColorUniforms(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1315 | setupDrawModelView(kModelViewMode_Translate, false, |
| 1316 | 0.0f, 0.0f, 0.0f, 0.0f, true); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1317 | |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1318 | issueIndexedQuadDraw(&mesh[0], count); |
Romain Guy | 8a4ac61 | 2012-07-17 17:32:48 -0700 | [diff] [blame] | 1319 | |
| 1320 | if (scissorChanged) mCaches.enableScissor(); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1321 | } else { |
Romain Guy | e67307c | 2013-02-11 18:01:20 -0800 | [diff] [blame] | 1322 | mLayers.clear(); |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1323 | } |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1324 | } |
| 1325 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1326 | /////////////////////////////////////////////////////////////////////////////// |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1327 | // State Deferral |
| 1328 | /////////////////////////////////////////////////////////////////////////////// |
| 1329 | |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1330 | bool OpenGLRenderer::storeDisplayState(DeferredDisplayState& state, int stateDeferFlags) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1331 | const Rect* currentClip = mState.currentClipRect(); |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1332 | const mat4* currentMatrix = currentTransform(); |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1333 | |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1334 | if (stateDeferFlags & kStateDeferFlag_Draw) { |
| 1335 | // state has bounds initialized in local coordinates |
| 1336 | if (!state.mBounds.isEmpty()) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1337 | currentMatrix->mapRect(state.mBounds); |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1338 | Rect clippedBounds(state.mBounds); |
Chris Craik | 5e49b30 | 2013-07-30 19:05:20 -0700 | [diff] [blame] | 1339 | // NOTE: if we ever want to use this clipping info to drive whether the scissor |
| 1340 | // is used, it should more closely duplicate the quickReject logic (in how it uses |
| 1341 | // snapToPixelBoundaries) |
| 1342 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1343 | if(!clippedBounds.intersect(*currentClip)) { |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1344 | // quick rejected |
| 1345 | return true; |
| 1346 | } |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1347 | |
Chris Craik | a02c4ed | 2013-06-14 13:43:58 -0700 | [diff] [blame] | 1348 | state.mClipSideFlags = kClipSide_None; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1349 | if (!currentClip->contains(state.mBounds)) { |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1350 | int& flags = state.mClipSideFlags; |
| 1351 | // op partially clipped, so record which sides are clipped for clip-aware merging |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1352 | if (currentClip->left > state.mBounds.left) flags |= kClipSide_Left; |
| 1353 | if (currentClip->top > state.mBounds.top) flags |= kClipSide_Top; |
| 1354 | if (currentClip->right < state.mBounds.right) flags |= kClipSide_Right; |
| 1355 | if (currentClip->bottom < state.mBounds.bottom) flags |= kClipSide_Bottom; |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1356 | } |
| 1357 | state.mBounds.set(clippedBounds); |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1358 | } else { |
Chris Craik | d72b73c | 2013-06-17 13:52:06 -0700 | [diff] [blame] | 1359 | // Empty bounds implies size unknown. Label op as conservatively clipped to disable |
| 1360 | // overdraw avoidance (since we don't know what it overlaps) |
| 1361 | state.mClipSideFlags = kClipSide_ConservativeFull; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1362 | state.mBounds.set(*currentClip); |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1363 | } |
| 1364 | } |
| 1365 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1366 | state.mClipValid = (stateDeferFlags & kStateDeferFlag_Clip); |
| 1367 | if (state.mClipValid) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1368 | state.mClip.set(*currentClip); |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1369 | } |
| 1370 | |
Chris Craik | 7273daa | 2013-03-28 11:25:24 -0700 | [diff] [blame] | 1371 | // Transform, drawModifiers, and alpha always deferred, since they are used by state operations |
| 1372 | // (Note: saveLayer/restore use colorFilter and alpha, so we just save restore everything) |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1373 | state.mMatrix.load(*currentMatrix); |
Chris Craik | 7273daa | 2013-03-28 11:25:24 -0700 | [diff] [blame] | 1374 | state.mDrawModifiers = mDrawModifiers; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1375 | state.mAlpha = currentSnapshot()->alpha; |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1376 | |
| 1377 | // always store/restore, since it's just a pointer |
| 1378 | state.mRoundRectClipState = currentSnapshot()->roundRectClipState; |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1379 | return false; |
| 1380 | } |
| 1381 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1382 | void OpenGLRenderer::restoreDisplayState(const DeferredDisplayState& state, bool skipClipRestore) { |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 1383 | setMatrix(state.mMatrix); |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1384 | writableSnapshot()->alpha = state.mAlpha; |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 1385 | mDrawModifiers = state.mDrawModifiers; |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1386 | writableSnapshot()->roundRectClipState = state.mRoundRectClipState; |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1387 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1388 | if (state.mClipValid && !skipClipRestore) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1389 | writableSnapshot()->setClip(state.mClip.left, state.mClip.top, |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1390 | state.mClip.right, state.mClip.bottom); |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1391 | dirtyClip(); |
| 1392 | } |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1393 | } |
| 1394 | |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1395 | /** |
| 1396 | * Merged multidraw (such as in drawText and drawBitmaps rely on the fact that no clipping is done |
| 1397 | * in the draw path. Instead, clipping is done ahead of time - either as a single clip rect (when at |
| 1398 | * least one op is clipped), or disabled entirely (because no merged op is clipped) |
| 1399 | * |
| 1400 | * This method should be called when restoreDisplayState() won't be restoring the clip |
| 1401 | */ |
| 1402 | void OpenGLRenderer::setupMergedMultiDraw(const Rect* clipRect) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1403 | if (clipRect != nullptr) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1404 | writableSnapshot()->setClip(clipRect->left, clipRect->top, clipRect->right, clipRect->bottom); |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1405 | } else { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1406 | writableSnapshot()->setClip(0, 0, mState.getWidth(), mState.getHeight()); |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 1407 | } |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1408 | dirtyClip(); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1409 | mCaches.setScissorEnabled(clipRect != nullptr || mScissorOptimizationDisabled); |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1410 | } |
| 1411 | |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1412 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 1413 | // Clipping |
| 1414 | /////////////////////////////////////////////////////////////////////////////// |
| 1415 | |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 1416 | void OpenGLRenderer::setScissorFromClip() { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1417 | Rect clip(*mState.currentClipRect()); |
Romain Guy | e5ebcb0 | 2010-10-15 13:57:28 -0700 | [diff] [blame] | 1418 | clip.snapToPixelBoundaries(); |
Romain Guy | 8f85e80 | 2011-12-14 19:23:32 -0800 | [diff] [blame] | 1419 | |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 1420 | if (mCaches.setScissor(clip.left, getViewportHeight() - clip.bottom, |
Romain Guy | 8a4ac61 | 2012-07-17 17:32:48 -0700 | [diff] [blame] | 1421 | clip.getWidth(), clip.getHeight())) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1422 | mState.setDirtyClip(false); |
Romain Guy | 8a4ac61 | 2012-07-17 17:32:48 -0700 | [diff] [blame] | 1423 | } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 1424 | } |
| 1425 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1426 | void OpenGLRenderer::ensureStencilBuffer() { |
| 1427 | // Thanks to the mismatch between EGL and OpenGL ES FBO we |
| 1428 | // cannot attach a stencil buffer to fbo0 dynamically. Let's |
| 1429 | // just hope we have one when hasLayer() returns false. |
| 1430 | if (hasLayer()) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1431 | attachStencilBufferToLayer(currentSnapshot()->layer); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1432 | } |
| 1433 | } |
| 1434 | |
| 1435 | void OpenGLRenderer::attachStencilBufferToLayer(Layer* layer) { |
| 1436 | // The layer's FBO is already bound when we reach this stage |
| 1437 | if (!layer->getStencilRenderBuffer()) { |
Romain Guy | c3fedaf | 2013-01-29 17:26:25 -0800 | [diff] [blame] | 1438 | // GL_QCOM_tiled_rendering doesn't like it if a renderbuffer |
| 1439 | // is attached after we initiated tiling. We must turn it off, |
| 1440 | // attach the new render buffer then turn tiling back on |
| 1441 | endTiling(); |
| 1442 | |
Romain Guy | 8d4aeb7 | 2013-02-12 16:08:55 -0800 | [diff] [blame] | 1443 | RenderBuffer* buffer = mCaches.renderBufferCache.get( |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 1444 | Stencil::getSmallestStencilFormat(), layer->getWidth(), layer->getHeight()); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1445 | layer->setStencilRenderBuffer(buffer); |
Romain Guy | c3fedaf | 2013-01-29 17:26:25 -0800 | [diff] [blame] | 1446 | |
Romain Guy | f735c8e | 2013-01-31 17:45:55 -0800 | [diff] [blame] | 1447 | startTiling(layer->clipRect, layer->layer.getHeight()); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1448 | } |
| 1449 | } |
| 1450 | |
| 1451 | void OpenGLRenderer::setStencilFromClip() { |
| 1452 | if (!mCaches.debugOverdraw) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1453 | if (!currentSnapshot()->clipRegion->isEmpty()) { |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 1454 | EVENT_LOGD("setStencilFromClip - enabling"); |
| 1455 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1456 | // NOTE: The order here is important, we must set dirtyClip to false |
| 1457 | // before any draw call to avoid calling back into this method |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1458 | mState.setDirtyClip(false); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1459 | |
| 1460 | ensureStencilBuffer(); |
| 1461 | |
| 1462 | mCaches.stencil.enableWrite(); |
| 1463 | |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1464 | // Clear and update the stencil, but first make sure we restrict drawing |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1465 | // to the region's bounds |
| 1466 | bool resetScissor = mCaches.enableScissor(); |
| 1467 | if (resetScissor) { |
| 1468 | // The scissor was not set so we now need to update it |
| 1469 | setScissorFromClip(); |
| 1470 | } |
| 1471 | mCaches.stencil.clear(); |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1472 | |
| 1473 | // stash and disable the outline clip state, since stencil doesn't account for outline |
| 1474 | bool storedSkipOutlineClip = mSkipOutlineClip; |
| 1475 | mSkipOutlineClip = true; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1476 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1477 | SkPaint paint; |
Chris Craik | 98d608d | 2014-07-17 12:25:11 -0700 | [diff] [blame] | 1478 | paint.setColor(SK_ColorBLACK); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1479 | paint.setXfermodeMode(SkXfermode::kSrc_Mode); |
| 1480 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1481 | // NOTE: We could use the region contour path to generate a smaller mesh |
| 1482 | // Since we are using the stencil we could use the red book path |
| 1483 | // drawing technique. It might increase bandwidth usage though. |
| 1484 | |
| 1485 | // The last parameter is important: we are not drawing in the color buffer |
| 1486 | // so we don't want to dirty the current layer, if any |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1487 | drawRegionRects(*(currentSnapshot()->clipRegion), paint, false); |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1488 | if (resetScissor) mCaches.disableScissor(); |
| 1489 | mSkipOutlineClip = storedSkipOutlineClip; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1490 | |
| 1491 | mCaches.stencil.enableTest(); |
Romain Guy | 3ff0bfd | 2013-02-25 14:15:37 -0800 | [diff] [blame] | 1492 | |
| 1493 | // Draw the region used to generate the stencil if the appropriate debug |
| 1494 | // mode is enabled |
| 1495 | if (mCaches.debugStencilClip == Caches::kStencilShowRegion) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1496 | paint.setColor(0x7f0000ff); |
| 1497 | paint.setXfermodeMode(SkXfermode::kSrcOver_Mode); |
| 1498 | drawRegionRects(*(currentSnapshot()->clipRegion), paint); |
Romain Guy | 3ff0bfd | 2013-02-25 14:15:37 -0800 | [diff] [blame] | 1499 | } |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1500 | } else { |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 1501 | EVENT_LOGD("setStencilFromClip - disabling"); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1502 | mCaches.stencil.disable(); |
| 1503 | } |
| 1504 | } |
| 1505 | } |
| 1506 | |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 1507 | /** |
| 1508 | * Returns false and sets scissor enable based upon bounds if drawing won't be clipped out. |
| 1509 | * |
| 1510 | * @param paint if not null, the bounds will be expanded to account for stroke depending on paint |
| 1511 | * style, and tessellated AA ramp |
| 1512 | */ |
| 1513 | bool OpenGLRenderer::quickRejectSetupScissor(float left, float top, float right, float bottom, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 1514 | const SkPaint* paint) { |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 1515 | bool snapOut = paint && paint->isAntiAlias(); |
| 1516 | |
| 1517 | if (paint && paint->getStyle() != SkPaint::kFill_Style) { |
| 1518 | float outset = paint->getStrokeWidth() * 0.5f; |
| 1519 | left -= outset; |
| 1520 | top -= outset; |
| 1521 | right += outset; |
| 1522 | bottom += outset; |
| 1523 | } |
| 1524 | |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1525 | bool clipRequired = false; |
| 1526 | bool roundRectClipRequired = false; |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1527 | if (mState.calculateQuickRejectForScissor(left, top, right, bottom, |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1528 | &clipRequired, &roundRectClipRequired, snapOut)) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 1529 | return true; |
| 1530 | } |
| 1531 | |
Chris Craik | f23b25a | 2014-06-26 15:46:20 -0700 | [diff] [blame] | 1532 | // not quick rejected, so enable the scissor if clipRequired |
| 1533 | mCaches.setScissorEnabled(mScissorOptimizationDisabled || clipRequired); |
| 1534 | mSkipOutlineClip = !roundRectClipRequired; |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 1535 | return false; |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 1536 | } |
| 1537 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1538 | void OpenGLRenderer::debugClip() { |
| 1539 | #if DEBUG_CLIP_REGIONS |
Chris Craik | f23b25a | 2014-06-26 15:46:20 -0700 | [diff] [blame] | 1540 | if (!currentSnapshot()->clipRegion->isEmpty()) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1541 | SkPaint paint; |
| 1542 | paint.setColor(0x7f00ff00); |
| 1543 | drawRegionRects(*(currentSnapshot()->clipRegion, paint); |
| 1544 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1545 | } |
| 1546 | #endif |
| 1547 | } |
| 1548 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 1549 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1550 | // Drawing commands |
| 1551 | /////////////////////////////////////////////////////////////////////////////// |
| 1552 | |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 1553 | void OpenGLRenderer::setupDraw(bool clearLayer) { |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 1554 | // TODO: It would be best if we could do this before quickRejectSetupScissor() |
Romain Guy | 8a4ac61 | 2012-07-17 17:32:48 -0700 | [diff] [blame] | 1555 | // changes the scissor test state |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 1556 | if (clearLayer) clearLayerRegions(); |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 1557 | // Make sure setScissor & setStencil happen at the beginning of |
| 1558 | // this method |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1559 | if (mState.getDirtyClip()) { |
Chris Craik | b98a016 | 2013-02-21 11:30:22 -0800 | [diff] [blame] | 1560 | if (mCaches.scissorEnabled) { |
| 1561 | setScissorFromClip(); |
| 1562 | } |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 1563 | |
Dohyun Lee | adc0d9d | 2014-11-24 21:08:15 +0900 | [diff] [blame] | 1564 | setStencilFromClip(); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1565 | } |
Romain Guy | 3ff0bfd | 2013-02-25 14:15:37 -0800 | [diff] [blame] | 1566 | |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1567 | mDescription.reset(); |
Romain Guy | 3ff0bfd | 2013-02-25 14:15:37 -0800 | [diff] [blame] | 1568 | |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1569 | mSetShaderColor = false; |
| 1570 | mColorSet = false; |
| 1571 | mColorA = mColorR = mColorG = mColorB = 0.0f; |
| 1572 | mTextureUnit = 0; |
| 1573 | mTrackDirtyRegions = true; |
Romain Guy | 3ff0bfd | 2013-02-25 14:15:37 -0800 | [diff] [blame] | 1574 | |
| 1575 | // Enable debug highlight when what we're about to draw is tested against |
| 1576 | // the stencil buffer and if stencil highlight debugging is on |
| 1577 | mDescription.hasDebugHighlight = !mCaches.debugOverdraw && |
| 1578 | mCaches.debugStencilClip == Caches::kStencilShowHighlight && |
| 1579 | mCaches.stencil.isTestEnabled(); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1580 | } |
| 1581 | |
| 1582 | void OpenGLRenderer::setupDrawWithTexture(bool isAlpha8) { |
| 1583 | mDescription.hasTexture = true; |
| 1584 | mDescription.hasAlpha8Texture = isAlpha8; |
| 1585 | } |
| 1586 | |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 1587 | void OpenGLRenderer::setupDrawWithTextureAndColor(bool isAlpha8) { |
| 1588 | mDescription.hasTexture = true; |
| 1589 | mDescription.hasColors = true; |
| 1590 | mDescription.hasAlpha8Texture = isAlpha8; |
| 1591 | } |
| 1592 | |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 1593 | void OpenGLRenderer::setupDrawWithExternalTexture() { |
| 1594 | mDescription.hasExternalTexture = true; |
| 1595 | } |
| 1596 | |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1597 | void OpenGLRenderer::setupDrawNoTexture() { |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 1598 | mCaches.disableTexCoordsVertexArray(); |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1599 | } |
| 1600 | |
Chris Craik | 91a8c7c | 2014-08-12 14:31:35 -0700 | [diff] [blame] | 1601 | void OpenGLRenderer::setupDrawVertexAlpha(bool useShadowAlphaInterp) { |
| 1602 | mDescription.hasVertexAlpha = true; |
| 1603 | mDescription.useShadowAlphaInterp = useShadowAlphaInterp; |
Chet Haase | 5b0200b | 2011-04-13 17:58:08 -0700 | [diff] [blame] | 1604 | } |
| 1605 | |
Romain Guy | 8d0d478 | 2010-12-14 20:13:35 -0800 | [diff] [blame] | 1606 | void OpenGLRenderer::setupDrawColor(int color, int alpha) { |
| 1607 | mColorA = alpha / 255.0f; |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 1608 | mColorR = mColorA * ((color >> 16) & 0xFF) / 255.0f; |
| 1609 | mColorG = mColorA * ((color >> 8) & 0xFF) / 255.0f; |
| 1610 | mColorB = mColorA * ((color ) & 0xFF) / 255.0f; |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1611 | mColorSet = true; |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 1612 | mSetShaderColor = mDescription.setColorModulate(mColorA); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1613 | } |
| 1614 | |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 1615 | void OpenGLRenderer::setupDrawAlpha8Color(int color, int alpha) { |
| 1616 | mColorA = alpha / 255.0f; |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 1617 | mColorR = mColorA * ((color >> 16) & 0xFF) / 255.0f; |
| 1618 | mColorG = mColorA * ((color >> 8) & 0xFF) / 255.0f; |
| 1619 | mColorB = mColorA * ((color ) & 0xFF) / 255.0f; |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 1620 | mColorSet = true; |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 1621 | mSetShaderColor = mDescription.setAlpha8ColorModulate(mColorR, mColorG, mColorB, mColorA); |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 1622 | } |
| 1623 | |
Romain Guy | 4121063 | 2012-07-16 17:04:24 -0700 | [diff] [blame] | 1624 | void OpenGLRenderer::setupDrawTextGamma(const SkPaint* paint) { |
| 1625 | mCaches.fontRenderer->describe(mDescription, paint); |
| 1626 | } |
| 1627 | |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1628 | void OpenGLRenderer::setupDrawColor(float r, float g, float b, float a) { |
| 1629 | mColorA = a; |
| 1630 | mColorR = r; |
| 1631 | mColorG = g; |
| 1632 | mColorB = b; |
| 1633 | mColorSet = true; |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 1634 | mSetShaderColor = mDescription.setColorModulate(a); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1635 | } |
| 1636 | |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1637 | void OpenGLRenderer::setupDrawShader(const SkShader* shader) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1638 | if (shader != nullptr) { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1639 | SkiaShader::describe(&mCaches, mDescription, mExtensions, *shader); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1640 | } |
| 1641 | } |
| 1642 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1643 | void OpenGLRenderer::setupDrawColorFilter(const SkColorFilter* filter) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1644 | if (filter == nullptr) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1645 | return; |
| 1646 | } |
| 1647 | |
| 1648 | SkXfermode::Mode mode; |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1649 | if (filter->asColorMode(nullptr, &mode)) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1650 | mDescription.colorOp = ProgramDescription::kColorBlend; |
| 1651 | mDescription.colorMode = mode; |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1652 | } else if (filter->asColorMatrix(nullptr)) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1653 | mDescription.colorOp = ProgramDescription::kColorMatrix; |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1654 | } |
| 1655 | } |
| 1656 | |
Romain Guy | f09ef51 | 2011-05-27 11:43:46 -0700 | [diff] [blame] | 1657 | void OpenGLRenderer::accountForClear(SkXfermode::Mode mode) { |
| 1658 | if (mColorSet && mode == SkXfermode::kClear_Mode) { |
| 1659 | mColorA = 1.0f; |
| 1660 | mColorR = mColorG = mColorB = 0.0f; |
Romain Guy | 54be1cd | 2011-06-13 19:04:27 -0700 | [diff] [blame] | 1661 | mSetShaderColor = mDescription.modulate = true; |
Romain Guy | f09ef51 | 2011-05-27 11:43:46 -0700 | [diff] [blame] | 1662 | } |
| 1663 | } |
| 1664 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1665 | void OpenGLRenderer::setupDrawBlending(const Layer* layer, bool swapSrcDst) { |
| 1666 | SkXfermode::Mode mode = layer->getMode(); |
Romain Guy | f09ef51 | 2011-05-27 11:43:46 -0700 | [diff] [blame] | 1667 | // When the blending mode is kClear_Mode, we need to use a modulate color |
| 1668 | // argb=1,0,0,0 |
| 1669 | accountForClear(mode); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1670 | // TODO: check shader blending, once we have shader drawing support for layers. |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 1671 | bool blend = layer->isBlend() |
| 1672 | || getLayerAlpha(layer) < 1.0f |
| 1673 | || (mColorSet && mColorA < 1.0f) |
| 1674 | || PaintUtils::isBlendedColorFilter(layer->getColorFilter()); |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1675 | chooseBlending(blend, mode, mDescription, swapSrcDst); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1676 | } |
| 1677 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1678 | void OpenGLRenderer::setupDrawBlending(const SkPaint* paint, bool blend, bool swapSrcDst) { |
| 1679 | SkXfermode::Mode mode = getXfermodeDirect(paint); |
Romain Guy | f09ef51 | 2011-05-27 11:43:46 -0700 | [diff] [blame] | 1680 | // When the blending mode is kClear_Mode, we need to use a modulate color |
| 1681 | // argb=1,0,0,0 |
| 1682 | accountForClear(mode); |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1683 | blend |= (mColorSet && mColorA < 1.0f) || |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1684 | (getShader(paint) && !getShader(paint)->isOpaque()) || |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 1685 | PaintUtils::isBlendedColorFilter(getColorFilter(paint)); |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1686 | chooseBlending(blend, mode, mDescription, swapSrcDst); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1687 | } |
| 1688 | |
| 1689 | void OpenGLRenderer::setupDrawProgram() { |
| 1690 | useProgram(mCaches.programCache.get(mDescription)); |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1691 | if (mDescription.hasRoundRectClip) { |
| 1692 | // TODO: avoid doing this repeatedly, stashing state pointer in program |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 1693 | const RoundRectClipState* state = writableSnapshot()->roundRectClipState; |
Chris Craik | af4d04c | 2014-07-29 12:50:14 -0700 | [diff] [blame] | 1694 | const Rect& innerRect = state->innerRect; |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1695 | glUniform4f(mCaches.currentProgram->getUniform("roundRectInnerRectLTRB"), |
Chris Craik | af4d04c | 2014-07-29 12:50:14 -0700 | [diff] [blame] | 1696 | innerRect.left, innerRect.top, |
| 1697 | innerRect.right, innerRect.bottom); |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1698 | glUniformMatrix4fv(mCaches.currentProgram->getUniform("roundRectInvTransform"), |
| 1699 | 1, GL_FALSE, &state->matrix.data[0]); |
Chris Craik | 4340c26 | 2014-09-11 18:58:45 -0700 | [diff] [blame] | 1700 | |
| 1701 | // add half pixel to round out integer rect space to cover pixel centers |
| 1702 | float roundedOutRadius = state->radius + 0.5f; |
| 1703 | glUniform1f(mCaches.currentProgram->getUniform("roundRectRadius"), |
| 1704 | roundedOutRadius); |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 1705 | } |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1706 | } |
| 1707 | |
| 1708 | void OpenGLRenderer::setupDrawDirtyRegionsDisabled() { |
| 1709 | mTrackDirtyRegions = false; |
| 1710 | } |
| 1711 | |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1712 | void OpenGLRenderer::setupDrawModelView(ModelViewMode mode, bool offset, |
| 1713 | float left, float top, float right, float bottom, bool ignoreTransform) { |
Chris Craik | e10e827 | 2014-05-08 14:28:26 -0700 | [diff] [blame] | 1714 | mModelViewMatrix.loadTranslate(left, top, 0.0f); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1715 | if (mode == kModelViewMode_TranslateAndScale) { |
Chris Craik | e10e827 | 2014-05-08 14:28:26 -0700 | [diff] [blame] | 1716 | mModelViewMatrix.scale(right - left, bottom - top, 1.0f); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1717 | } |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1718 | |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 1719 | bool dirty = right - left > 0.0f && bottom - top > 0.0f; |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 1720 | const Matrix4& transformMatrix = ignoreTransform ? Matrix4::identity() : *currentTransform(); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1721 | mCaches.currentProgram->set(writableSnapshot()->getOrthoMatrix(), |
| 1722 | mModelViewMatrix, transformMatrix, offset); |
Chris Craik | a64a2be | 2014-05-14 14:17:01 -0700 | [diff] [blame] | 1723 | if (dirty && mTrackDirtyRegions) { |
| 1724 | if (!ignoreTransform) { |
| 1725 | dirtyLayer(left, top, right, bottom, *currentTransform()); |
| 1726 | } else { |
| 1727 | dirtyLayer(left, top, right, bottom); |
| 1728 | } |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 1729 | } |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1730 | } |
| 1731 | |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1732 | void OpenGLRenderer::setupDrawColorUniforms(bool hasShader) { |
| 1733 | if ((mColorSet && !hasShader) || (hasShader && mSetShaderColor)) { |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1734 | mCaches.currentProgram->setColor(mColorR, mColorG, mColorB, mColorA); |
| 1735 | } |
| 1736 | } |
| 1737 | |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 1738 | void OpenGLRenderer::setupDrawPureColorUniforms() { |
Romain Guy | 5536841 | 2010-12-14 10:59:41 -0800 | [diff] [blame] | 1739 | if (mSetShaderColor) { |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 1740 | mCaches.currentProgram->setColor(mColorR, mColorG, mColorB, mColorA); |
Romain Guy | 5536841 | 2010-12-14 10:59:41 -0800 | [diff] [blame] | 1741 | } |
| 1742 | } |
| 1743 | |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1744 | void OpenGLRenderer::setupDrawShaderUniforms(const SkShader* shader, bool ignoreTransform) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1745 | if (shader == nullptr) { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1746 | return; |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1747 | } |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 1748 | |
| 1749 | if (ignoreTransform) { |
| 1750 | // if ignoreTransform=true was passed to setupDrawModelView, undo currentTransform() |
| 1751 | // because it was built into modelView / the geometry, and the description needs to |
| 1752 | // compensate. |
| 1753 | mat4 modelViewWithoutTransform; |
| 1754 | modelViewWithoutTransform.loadInverse(*currentTransform()); |
| 1755 | modelViewWithoutTransform.multiply(mModelViewMatrix); |
| 1756 | mModelViewMatrix.load(modelViewWithoutTransform); |
| 1757 | } |
| 1758 | |
| 1759 | SkiaShader::setupProgram(&mCaches, mModelViewMatrix, &mTextureUnit, mExtensions, *shader); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1760 | } |
| 1761 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1762 | void OpenGLRenderer::setupDrawColorFilterUniforms(const SkColorFilter* filter) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1763 | if (nullptr == filter) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1764 | return; |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1765 | } |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1766 | |
| 1767 | SkColor color; |
| 1768 | SkXfermode::Mode mode; |
| 1769 | if (filter->asColorMode(&color, &mode)) { |
| 1770 | const int alpha = SkColorGetA(color); |
| 1771 | const GLfloat a = alpha / 255.0f; |
| 1772 | const GLfloat r = a * SkColorGetR(color) / 255.0f; |
| 1773 | const GLfloat g = a * SkColorGetG(color) / 255.0f; |
| 1774 | const GLfloat b = a * SkColorGetB(color) / 255.0f; |
| 1775 | glUniform4f(mCaches.currentProgram->getUniform("colorBlend"), r, g, b, a); |
| 1776 | return; |
| 1777 | } |
| 1778 | |
| 1779 | SkScalar srcColorMatrix[20]; |
| 1780 | if (filter->asColorMatrix(srcColorMatrix)) { |
| 1781 | |
| 1782 | float colorMatrix[16]; |
| 1783 | memcpy(colorMatrix, srcColorMatrix, 4 * sizeof(float)); |
| 1784 | memcpy(&colorMatrix[4], &srcColorMatrix[5], 4 * sizeof(float)); |
| 1785 | memcpy(&colorMatrix[8], &srcColorMatrix[10], 4 * sizeof(float)); |
| 1786 | memcpy(&colorMatrix[12], &srcColorMatrix[15], 4 * sizeof(float)); |
| 1787 | |
| 1788 | // Skia uses the range [0..255] for the addition vector, but we need |
| 1789 | // the [0..1] range to apply the vector in GLSL |
| 1790 | float colorVector[4]; |
| 1791 | colorVector[0] = srcColorMatrix[4] / 255.0f; |
| 1792 | colorVector[1] = srcColorMatrix[9] / 255.0f; |
| 1793 | colorVector[2] = srcColorMatrix[14] / 255.0f; |
| 1794 | colorVector[3] = srcColorMatrix[19] / 255.0f; |
| 1795 | |
| 1796 | glUniformMatrix4fv(mCaches.currentProgram->getUniform("colorMatrix"), 1, |
| 1797 | GL_FALSE, colorMatrix); |
| 1798 | glUniform4fv(mCaches.currentProgram->getUniform("colorMatrixVector"), 1, colorVector); |
| 1799 | return; |
| 1800 | } |
| 1801 | |
| 1802 | // it is an error if we ever get here |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1803 | } |
| 1804 | |
Romain Guy | 4121063 | 2012-07-16 17:04:24 -0700 | [diff] [blame] | 1805 | void OpenGLRenderer::setupDrawTextGammaUniforms() { |
| 1806 | mCaches.fontRenderer->setupProgram(mDescription, mCaches.currentProgram); |
| 1807 | } |
| 1808 | |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1809 | void OpenGLRenderer::setupDrawSimpleMesh() { |
Romain Guy | f3a910b4 | 2011-12-12 20:35:21 -0800 | [diff] [blame] | 1810 | bool force = mCaches.bindMeshBuffer(); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1811 | mCaches.bindPositionVertexPointer(force, nullptr); |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1812 | mCaches.unbindIndicesBuffer(); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1813 | } |
| 1814 | |
| 1815 | void OpenGLRenderer::setupDrawTexture(GLuint texture) { |
Romain Guy | 257ae35 | 2013-03-20 16:31:12 -0700 | [diff] [blame] | 1816 | if (texture) bindTexture(texture); |
Romain Guy | 2d4fd36 | 2011-12-13 22:00:19 -0800 | [diff] [blame] | 1817 | mTextureUnit++; |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1818 | mCaches.enableTexCoordsVertexArray(); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1819 | } |
| 1820 | |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 1821 | void OpenGLRenderer::setupDrawExternalTexture(GLuint texture) { |
| 1822 | bindExternalTexture(texture); |
Romain Guy | 2d4fd36 | 2011-12-13 22:00:19 -0800 | [diff] [blame] | 1823 | mTextureUnit++; |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1824 | mCaches.enableTexCoordsVertexArray(); |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 1825 | } |
| 1826 | |
Romain Guy | 8f0095c | 2011-05-02 17:24:22 -0700 | [diff] [blame] | 1827 | void OpenGLRenderer::setupDrawTextureTransform() { |
| 1828 | mDescription.hasTextureTransform = true; |
| 1829 | } |
| 1830 | |
| 1831 | void OpenGLRenderer::setupDrawTextureTransformUniforms(mat4& transform) { |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame] | 1832 | glUniformMatrix4fv(mCaches.currentProgram->getUniform("mainTextureTransform"), 1, |
| 1833 | GL_FALSE, &transform.data[0]); |
| 1834 | } |
| 1835 | |
Chris Craik | 564acf7 | 2014-01-02 16:46:18 -0800 | [diff] [blame] | 1836 | void OpenGLRenderer::setupDrawMesh(const GLvoid* vertices, |
| 1837 | const GLvoid* texCoords, GLuint vbo) { |
Romain Guy | f3a910b4 | 2011-12-12 20:35:21 -0800 | [diff] [blame] | 1838 | bool force = false; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1839 | if (!vertices || vbo) { |
Romain Guy | f3a910b4 | 2011-12-12 20:35:21 -0800 | [diff] [blame] | 1840 | force = mCaches.bindMeshBuffer(vbo == 0 ? mCaches.meshBuffer : vbo); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1841 | } else { |
Romain Guy | f3a910b4 | 2011-12-12 20:35:21 -0800 | [diff] [blame] | 1842 | force = mCaches.unbindMeshBuffer(); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1843 | } |
Romain Guy | d71dd36 | 2011-12-12 19:03:35 -0800 | [diff] [blame] | 1844 | |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 1845 | mCaches.bindPositionVertexPointer(force, vertices); |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1846 | if (mCaches.currentProgram->texCoords >= 0) { |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 1847 | mCaches.bindTexCoordsVertexPointer(force, texCoords); |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1848 | } |
| 1849 | |
| 1850 | mCaches.unbindIndicesBuffer(); |
| 1851 | } |
| 1852 | |
Chris Craik | 564acf7 | 2014-01-02 16:46:18 -0800 | [diff] [blame] | 1853 | void OpenGLRenderer::setupDrawMesh(const GLvoid* vertices, |
| 1854 | const GLvoid* texCoords, const GLvoid* colors) { |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 1855 | bool force = mCaches.unbindMeshBuffer(); |
| 1856 | GLsizei stride = sizeof(ColorTextureVertex); |
| 1857 | |
| 1858 | mCaches.bindPositionVertexPointer(force, vertices, stride); |
| 1859 | if (mCaches.currentProgram->texCoords >= 0) { |
| 1860 | mCaches.bindTexCoordsVertexPointer(force, texCoords, stride); |
| 1861 | } |
| 1862 | int slot = mCaches.currentProgram->getAttrib("colors"); |
| 1863 | if (slot >= 0) { |
| 1864 | glEnableVertexAttribArray(slot); |
| 1865 | glVertexAttribPointer(slot, 4, GL_FLOAT, GL_FALSE, stride, colors); |
| 1866 | } |
| 1867 | |
| 1868 | mCaches.unbindIndicesBuffer(); |
| 1869 | } |
| 1870 | |
Chris Craik | 564acf7 | 2014-01-02 16:46:18 -0800 | [diff] [blame] | 1871 | void OpenGLRenderer::setupDrawMeshIndices(const GLvoid* vertices, |
| 1872 | const GLvoid* texCoords, GLuint vbo) { |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1873 | bool force = false; |
| 1874 | // If vbo is != 0 we want to treat the vertices parameter as an offset inside |
| 1875 | // a VBO. However, if vertices is set to NULL and vbo == 0 then we want to |
| 1876 | // use the default VBO found in Caches |
| 1877 | if (!vertices || vbo) { |
| 1878 | force = mCaches.bindMeshBuffer(vbo == 0 ? mCaches.meshBuffer : vbo); |
| 1879 | } else { |
| 1880 | force = mCaches.unbindMeshBuffer(); |
| 1881 | } |
ztenghui | 63d41ab | 2014-02-14 13:13:41 -0800 | [diff] [blame] | 1882 | mCaches.bindQuadIndicesBuffer(); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1883 | |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 1884 | mCaches.bindPositionVertexPointer(force, vertices); |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 1885 | if (mCaches.currentProgram->texCoords >= 0) { |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 1886 | mCaches.bindTexCoordsVertexPointer(force, texCoords); |
Romain Guy | 8d0d478 | 2010-12-14 20:13:35 -0800 | [diff] [blame] | 1887 | } |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1888 | } |
| 1889 | |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 1890 | void OpenGLRenderer::setupDrawIndexedVertices(GLvoid* vertices) { |
Romain Guy | f3a910b4 | 2011-12-12 20:35:21 -0800 | [diff] [blame] | 1891 | bool force = mCaches.unbindMeshBuffer(); |
ztenghui | 63d41ab | 2014-02-14 13:13:41 -0800 | [diff] [blame] | 1892 | mCaches.bindQuadIndicesBuffer(); |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 1893 | mCaches.bindPositionVertexPointer(force, vertices, gVertexStride); |
Chet Haase | 5b0200b | 2011-04-13 17:58:08 -0700 | [diff] [blame] | 1894 | } |
| 1895 | |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 1896 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 1897 | // Drawing |
| 1898 | /////////////////////////////////////////////////////////////////////////////// |
| 1899 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1900 | void OpenGLRenderer::drawRenderNode(RenderNode* renderNode, Rect& dirty, int32_t replayFlags) { |
Romain Guy | 0fe478e | 2010-11-08 12:08:41 -0800 | [diff] [blame] | 1901 | // All the usual checks and setup operations (quickReject, setupDraw, etc.) |
| 1902 | // will be performed by the display list itself |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 1903 | if (renderNode && renderNode->isRenderable()) { |
Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 1904 | // compute 3d ordering |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 1905 | renderNode->computeOrdering(); |
Chris Craik | d90144d | 2013-03-19 15:03:48 -0700 | [diff] [blame] | 1906 | if (CC_UNLIKELY(mCaches.drawDeferDisabled)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1907 | startFrame(); |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1908 | ReplayStateStruct replayStruct(*this, dirty, replayFlags); |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 1909 | renderNode->replay(replayStruct, 0); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1910 | return; |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 1911 | } |
| 1912 | |
Chris Craik | ef8d6f2 | 2014-12-17 11:10:28 -0800 | [diff] [blame] | 1913 | // Don't avoid overdraw when visualizing, since that makes it harder to |
| 1914 | // debug where it's coming from, and when the problem occurs. |
| 1915 | bool avoidOverdraw = !mCaches.debugOverdraw; |
Chris Craik | a5f0918 | 2014-12-17 15:11:30 -0800 | [diff] [blame] | 1916 | DeferredDisplayList deferredList(*mState.currentClipRect(), avoidOverdraw); |
Chris Craik | ff78583 | 2013-03-08 13:12:16 -0800 | [diff] [blame] | 1917 | DeferStateStruct deferStruct(deferredList, *this, replayFlags); |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 1918 | renderNode->defer(deferStruct, 0); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 1919 | |
| 1920 | flushLayers(); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1921 | startFrame(); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 1922 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1923 | deferredList.flush(*this, dirty); |
| 1924 | } else { |
| 1925 | // Even if there is no drawing command(Ex: invisible), |
| 1926 | // it still needs startFrame to clear buffer and start tiling. |
| 1927 | startFrame(); |
Romain Guy | 0fe478e | 2010-11-08 12:08:41 -0800 | [diff] [blame] | 1928 | } |
| 1929 | } |
| 1930 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1931 | void OpenGLRenderer::drawAlphaBitmap(Texture* texture, float left, float top, |
| 1932 | const SkPaint* paint) { |
Romain Guy | a168d73 | 2011-03-18 16:50:13 -0700 | [diff] [blame] | 1933 | float x = left; |
| 1934 | float y = top; |
| 1935 | |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 1936 | texture->setWrap(GL_CLAMP_TO_EDGE, true); |
| 1937 | |
Romain Guy | a168d73 | 2011-03-18 16:50:13 -0700 | [diff] [blame] | 1938 | bool ignoreTransform = false; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 1939 | if (currentTransform()->isPureTranslate()) { |
| 1940 | x = (int) floorf(left + currentTransform()->getTranslateX() + 0.5f); |
| 1941 | y = (int) floorf(top + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | a168d73 | 2011-03-18 16:50:13 -0700 | [diff] [blame] | 1942 | ignoreTransform = true; |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 1943 | |
| 1944 | texture->setFilter(GL_NEAREST, true); |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 1945 | } else { |
Chris Craik | 67862524 | 2014-02-28 12:26:34 -0800 | [diff] [blame] | 1946 | texture->setFilter(getFilter(paint), true); |
Romain Guy | a168d73 | 2011-03-18 16:50:13 -0700 | [diff] [blame] | 1947 | } |
| 1948 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1949 | // No need to check for a UV mapper on the texture object, only ARGB_8888 |
| 1950 | // bitmaps get packed in the atlas |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 1951 | drawAlpha8TextureMesh(x, y, x + texture->width, y + texture->height, texture->id, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 1952 | paint, (GLvoid*) nullptr, (GLvoid*) gMeshTextureOffset, |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1953 | GL_TRIANGLE_STRIP, gMeshCount, ignoreTransform); |
Romain Guy | a168d73 | 2011-03-18 16:50:13 -0700 | [diff] [blame] | 1954 | } |
| 1955 | |
Romain Guy | 03c00b5 | 2013-06-20 18:30:28 -0700 | [diff] [blame] | 1956 | /** |
| 1957 | * Important note: this method is intended to draw batches of bitmaps and |
| 1958 | * will not set the scissor enable or dirty the current layer, if any. |
| 1959 | * The caller is responsible for properly dirtying the current layer. |
| 1960 | */ |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1961 | void OpenGLRenderer::drawBitmaps(const SkBitmap* bitmap, AssetAtlas::Entry* entry, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 1962 | int bitmapCount, TextureVertex* vertices, bool pureTranslate, |
| 1963 | const Rect& bounds, const SkPaint* paint) { |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1964 | mCaches.activeTexture(0); |
Romain Guy | 55b6f95 | 2013-06-27 15:27:09 -0700 | [diff] [blame] | 1965 | Texture* texture = entry ? entry->texture : mCaches.textureCache.get(bitmap); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1966 | if (!texture) return; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1967 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1968 | const AutoTexture autoCleanup(texture); |
| 1969 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1970 | texture->setWrap(GL_CLAMP_TO_EDGE, true); |
Chris Craik | 67862524 | 2014-02-28 12:26:34 -0800 | [diff] [blame] | 1971 | texture->setFilter(pureTranslate ? GL_NEAREST : getFilter(paint), true); |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1972 | |
| 1973 | const float x = (int) floorf(bounds.left + 0.5f); |
| 1974 | const float y = (int) floorf(bounds.top + 0.5f); |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 1975 | if (CC_UNLIKELY(bitmap->colorType() == kAlpha_8_SkColorType)) { |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1976 | drawAlpha8TextureMesh(x, y, x + bounds.getWidth(), y + bounds.getHeight(), |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1977 | texture->id, paint, &vertices[0].x, &vertices[0].u, |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1978 | GL_TRIANGLES, bitmapCount * 6, true, |
| 1979 | kModelViewMode_Translate, false); |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1980 | } else { |
| 1981 | drawTextureMesh(x, y, x + bounds.getWidth(), y + bounds.getHeight(), |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 1982 | texture->id, paint, texture->blend, &vertices[0].x, &vertices[0].u, |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 1983 | GL_TRIANGLES, bitmapCount * 6, false, true, 0, |
| 1984 | kModelViewMode_Translate, false); |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1985 | } |
| 1986 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1987 | mDirty = true; |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 1988 | } |
| 1989 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1990 | void OpenGLRenderer::drawBitmap(const SkBitmap* bitmap, const SkPaint* paint) { |
Chris Craik | 7964750 | 2014-08-06 13:42:24 -0700 | [diff] [blame] | 1991 | if (quickRejectSetupScissor(0, 0, bitmap->width(), bitmap->height())) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1992 | return; |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 1993 | } |
| 1994 | |
Romain Guy | a1d3c91 | 2011-12-13 14:55:06 -0800 | [diff] [blame] | 1995 | mCaches.activeTexture(0); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 1996 | Texture* texture = getTexture(bitmap); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 1997 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 1998 | const AutoTexture autoCleanup(texture); |
| 1999 | |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 2000 | if (CC_UNLIKELY(bitmap->colorType() == kAlpha_8_SkColorType)) { |
Chris Craik | 7964750 | 2014-08-06 13:42:24 -0700 | [diff] [blame] | 2001 | drawAlphaBitmap(texture, 0, 0, paint); |
Romain Guy | a168d73 | 2011-03-18 16:50:13 -0700 | [diff] [blame] | 2002 | } else { |
Chris Craik | 7964750 | 2014-08-06 13:42:24 -0700 | [diff] [blame] | 2003 | drawTextureRect(0, 0, bitmap->width(), bitmap->height(), texture, paint); |
Romain Guy | a168d73 | 2011-03-18 16:50:13 -0700 | [diff] [blame] | 2004 | } |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2005 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2006 | mDirty = true; |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 2007 | } |
| 2008 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2009 | void OpenGLRenderer::drawBitmapData(const SkBitmap* bitmap, const SkPaint* paint) { |
Chris Craik | 7964750 | 2014-08-06 13:42:24 -0700 | [diff] [blame] | 2010 | if (quickRejectSetupScissor(0, 0, bitmap->width(), bitmap->height())) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2011 | return; |
Romain Guy | e651cc6 | 2012-05-14 19:44:40 -0700 | [diff] [blame] | 2012 | } |
| 2013 | |
| 2014 | mCaches.activeTexture(0); |
| 2015 | Texture* texture = mCaches.textureCache.getTransient(bitmap); |
| 2016 | const AutoTexture autoCleanup(texture); |
| 2017 | |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 2018 | if (CC_UNLIKELY(bitmap->colorType() == kAlpha_8_SkColorType)) { |
Chris Craik | 7964750 | 2014-08-06 13:42:24 -0700 | [diff] [blame] | 2019 | drawAlphaBitmap(texture, 0, 0, paint); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2020 | } else { |
Chris Craik | 7964750 | 2014-08-06 13:42:24 -0700 | [diff] [blame] | 2021 | drawTextureRect(0, 0, bitmap->width(), bitmap->height(), texture, paint); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2022 | } |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2023 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2024 | mDirty = true; |
Romain Guy | e651cc6 | 2012-05-14 19:44:40 -0700 | [diff] [blame] | 2025 | } |
| 2026 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2027 | void OpenGLRenderer::drawBitmapMesh(const SkBitmap* bitmap, int meshWidth, int meshHeight, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2028 | const float* vertices, const int* colors, const SkPaint* paint) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2029 | if (!vertices || mState.currentlyIgnored()) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2030 | return; |
Romain Guy | 5a7b466 | 2011-01-20 19:09:30 -0800 | [diff] [blame] | 2031 | } |
| 2032 | |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 2033 | // TODO: use quickReject on bounds from vertices |
| 2034 | mCaches.enableScissor(); |
| 2035 | |
Romain Guy | b18d2d0 | 2011-02-10 15:52:54 -0800 | [diff] [blame] | 2036 | float left = FLT_MAX; |
| 2037 | float top = FLT_MAX; |
| 2038 | float right = FLT_MIN; |
| 2039 | float bottom = FLT_MIN; |
| 2040 | |
Romain Guy | a92bb4d | 2012-10-16 11:08:44 -0700 | [diff] [blame] | 2041 | const uint32_t count = meshWidth * meshHeight * 6; |
Romain Guy | b18d2d0 | 2011-02-10 15:52:54 -0800 | [diff] [blame] | 2042 | |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 2043 | std::unique_ptr<ColorTextureVertex[]> mesh(new ColorTextureVertex[count]); |
| 2044 | ColorTextureVertex* vertex = &mesh[0]; |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2045 | |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 2046 | std::unique_ptr<int[]> tempColors; |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2047 | if (!colors) { |
| 2048 | uint32_t colorsCount = (meshWidth + 1) * (meshHeight + 1); |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 2049 | tempColors.reset(new int[colorsCount]); |
| 2050 | memset(tempColors.get(), 0xff, colorsCount * sizeof(int)); |
| 2051 | colors = tempColors.get(); |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2052 | } |
Romain Guy | a92bb4d | 2012-10-16 11:08:44 -0700 | [diff] [blame] | 2053 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2054 | mCaches.activeTexture(0); |
John Reck | ebd5261 | 2014-12-10 16:47:36 -0800 | [diff] [blame] | 2055 | Texture* texture = mRenderState.assetAtlas().getEntryTexture(bitmap); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2056 | const UvMapper& mapper(getMapper(texture)); |
| 2057 | |
Romain Guy | 5a7b466 | 2011-01-20 19:09:30 -0800 | [diff] [blame] | 2058 | for (int32_t y = 0; y < meshHeight; y++) { |
| 2059 | for (int32_t x = 0; x < meshWidth; x++) { |
| 2060 | uint32_t i = (y * (meshWidth + 1) + x) * 2; |
| 2061 | |
| 2062 | float u1 = float(x) / meshWidth; |
| 2063 | float u2 = float(x + 1) / meshWidth; |
| 2064 | float v1 = float(y) / meshHeight; |
| 2065 | float v2 = float(y + 1) / meshHeight; |
| 2066 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2067 | mapper.map(u1, v1, u2, v2); |
| 2068 | |
Romain Guy | 5a7b466 | 2011-01-20 19:09:30 -0800 | [diff] [blame] | 2069 | int ax = i + (meshWidth + 1) * 2; |
| 2070 | int ay = ax + 1; |
| 2071 | int bx = i; |
| 2072 | int by = bx + 1; |
| 2073 | int cx = i + 2; |
| 2074 | int cy = cx + 1; |
| 2075 | int dx = i + (meshWidth + 1) * 2 + 2; |
| 2076 | int dy = dx + 1; |
| 2077 | |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2078 | ColorTextureVertex::set(vertex++, vertices[dx], vertices[dy], u2, v2, colors[dx / 2]); |
| 2079 | ColorTextureVertex::set(vertex++, vertices[ax], vertices[ay], u1, v2, colors[ax / 2]); |
| 2080 | ColorTextureVertex::set(vertex++, vertices[bx], vertices[by], u1, v1, colors[bx / 2]); |
Romain Guy | 5a7b466 | 2011-01-20 19:09:30 -0800 | [diff] [blame] | 2081 | |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2082 | ColorTextureVertex::set(vertex++, vertices[dx], vertices[dy], u2, v2, colors[dx / 2]); |
| 2083 | ColorTextureVertex::set(vertex++, vertices[bx], vertices[by], u1, v1, colors[bx / 2]); |
| 2084 | ColorTextureVertex::set(vertex++, vertices[cx], vertices[cy], u2, v1, colors[cx / 2]); |
Romain Guy | b18d2d0 | 2011-02-10 15:52:54 -0800 | [diff] [blame] | 2085 | |
Romain Guy | a92bb4d | 2012-10-16 11:08:44 -0700 | [diff] [blame] | 2086 | left = fminf(left, fminf(vertices[ax], fminf(vertices[bx], vertices[cx]))); |
| 2087 | top = fminf(top, fminf(vertices[ay], fminf(vertices[by], vertices[cy]))); |
| 2088 | right = fmaxf(right, fmaxf(vertices[ax], fmaxf(vertices[bx], vertices[cx]))); |
| 2089 | bottom = fmaxf(bottom, fmaxf(vertices[ay], fmaxf(vertices[by], vertices[cy]))); |
Romain Guy | 5a7b466 | 2011-01-20 19:09:30 -0800 | [diff] [blame] | 2090 | } |
| 2091 | } |
| 2092 | |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 2093 | if (quickRejectSetupScissor(left, top, right, bottom)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2094 | return; |
Romain Guy | a92bb4d | 2012-10-16 11:08:44 -0700 | [diff] [blame] | 2095 | } |
| 2096 | |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2097 | if (!texture) { |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2098 | texture = mCaches.textureCache.get(bitmap); |
| 2099 | if (!texture) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2100 | return; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2101 | } |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2102 | } |
Romain Guy | a92bb4d | 2012-10-16 11:08:44 -0700 | [diff] [blame] | 2103 | const AutoTexture autoCleanup(texture); |
| 2104 | |
| 2105 | texture->setWrap(GL_CLAMP_TO_EDGE, true); |
Chris Craik | 67862524 | 2014-02-28 12:26:34 -0800 | [diff] [blame] | 2106 | texture->setFilter(getFilter(paint), true); |
Romain Guy | a92bb4d | 2012-10-16 11:08:44 -0700 | [diff] [blame] | 2107 | |
| 2108 | int alpha; |
| 2109 | SkXfermode::Mode mode; |
| 2110 | getAlphaAndMode(paint, &alpha, &mode); |
| 2111 | |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2112 | float a = alpha / 255.0f; |
| 2113 | |
Romain Guy | a92bb4d | 2012-10-16 11:08:44 -0700 | [diff] [blame] | 2114 | if (hasLayer()) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2115 | dirtyLayer(left, top, right, bottom, *currentTransform()); |
Romain Guy | b18d2d0 | 2011-02-10 15:52:54 -0800 | [diff] [blame] | 2116 | } |
Romain Guy | b18d2d0 | 2011-02-10 15:52:54 -0800 | [diff] [blame] | 2117 | |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2118 | setupDraw(); |
| 2119 | setupDrawWithTextureAndColor(); |
| 2120 | setupDrawColor(a, a, a, a); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2121 | setupDrawColorFilter(getColorFilter(paint)); |
| 2122 | setupDrawBlending(paint, true); |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2123 | setupDrawProgram(); |
| 2124 | setupDrawDirtyRegionsDisabled(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 2125 | setupDrawModelView(kModelViewMode_TranslateAndScale, false, 0.0f, 0.0f, 1.0f, 1.0f); |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2126 | setupDrawTexture(texture->id); |
| 2127 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2128 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 2129 | setupDrawMesh(&mesh[0].x, &mesh[0].u, &mesh[0].r); |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2130 | |
| 2131 | glDrawArrays(GL_TRIANGLES, 0, count); |
| 2132 | |
Romain Guy | ff316ec | 2013-02-13 18:39:43 -0800 | [diff] [blame] | 2133 | int slot = mCaches.currentProgram->getAttrib("colors"); |
| 2134 | if (slot >= 0) { |
| 2135 | glDisableVertexAttribArray(slot); |
| 2136 | } |
| 2137 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2138 | mDirty = true; |
Romain Guy | 5a7b466 | 2011-01-20 19:09:30 -0800 | [diff] [blame] | 2139 | } |
| 2140 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2141 | void OpenGLRenderer::drawBitmap(const SkBitmap* bitmap, |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 2142 | float srcLeft, float srcTop, float srcRight, float srcBottom, |
| 2143 | float dstLeft, float dstTop, float dstRight, float dstBottom, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2144 | const SkPaint* paint) { |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 2145 | if (quickRejectSetupScissor(dstLeft, dstTop, dstRight, dstBottom)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2146 | return; |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 2147 | } |
| 2148 | |
Romain Guy | a1d3c91 | 2011-12-13 14:55:06 -0800 | [diff] [blame] | 2149 | mCaches.activeTexture(0); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2150 | Texture* texture = getTexture(bitmap); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2151 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 2152 | const AutoTexture autoCleanup(texture); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 2153 | |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 2154 | const float width = texture->width; |
| 2155 | const float height = texture->height; |
| 2156 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2157 | float u1 = fmax(0.0f, srcLeft / width); |
| 2158 | float v1 = fmax(0.0f, srcTop / height); |
| 2159 | float u2 = fmin(1.0f, srcRight / width); |
| 2160 | float v2 = fmin(1.0f, srcBottom / height); |
| 2161 | |
| 2162 | getMapper(texture).map(u1, v1, u2, v2); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 2163 | |
Romain Guy | 03750a0 | 2010-10-18 14:06:08 -0700 | [diff] [blame] | 2164 | mCaches.unbindMeshBuffer(); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 2165 | resetDrawTextureTexCoords(u1, v1, u2, v2); |
| 2166 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 2167 | texture->setWrap(GL_CLAMP_TO_EDGE, true); |
| 2168 | |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2169 | float scaleX = (dstRight - dstLeft) / (srcRight - srcLeft); |
| 2170 | float scaleY = (dstBottom - dstTop) / (srcBottom - srcTop); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2171 | |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2172 | bool scaled = scaleX != 1.0f || scaleY != 1.0f; |
| 2173 | // Apply a scale transform on the canvas only when a shader is in use |
| 2174 | // Skia handles the ratio between the dst and src rects as a scale factor |
| 2175 | // when a shader is set |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 2176 | bool useScaleTransform = getShader(paint) && scaled; |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2177 | bool ignoreTransform = false; |
Romain Guy | b501498 | 2011-07-28 15:39:12 -0700 | [diff] [blame] | 2178 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2179 | if (CC_LIKELY(currentTransform()->isPureTranslate() && !useScaleTransform)) { |
| 2180 | float x = (int) floorf(dstLeft + currentTransform()->getTranslateX() + 0.5f); |
| 2181 | float y = (int) floorf(dstTop + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2182 | |
| 2183 | dstRight = x + (dstRight - dstLeft); |
| 2184 | dstBottom = y + (dstBottom - dstTop); |
| 2185 | |
| 2186 | dstLeft = x; |
| 2187 | dstTop = y; |
| 2188 | |
Chris Craik | 67862524 | 2014-02-28 12:26:34 -0800 | [diff] [blame] | 2189 | texture->setFilter(scaled ? getFilter(paint) : GL_NEAREST, true); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2190 | ignoreTransform = true; |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2191 | } else { |
Chris Craik | 67862524 | 2014-02-28 12:26:34 -0800 | [diff] [blame] | 2192 | texture->setFilter(getFilter(paint), true); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2193 | } |
| 2194 | |
| 2195 | if (CC_UNLIKELY(useScaleTransform)) { |
| 2196 | save(SkCanvas::kMatrix_SaveFlag); |
| 2197 | translate(dstLeft, dstTop); |
| 2198 | scale(scaleX, scaleY); |
| 2199 | |
| 2200 | dstLeft = 0.0f; |
| 2201 | dstTop = 0.0f; |
| 2202 | |
| 2203 | dstRight = srcRight - srcLeft; |
| 2204 | dstBottom = srcBottom - srcTop; |
| 2205 | } |
| 2206 | |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 2207 | if (CC_UNLIKELY(bitmap->colorType() == kAlpha_8_SkColorType)) { |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2208 | drawAlpha8TextureMesh(dstLeft, dstTop, dstRight, dstBottom, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2209 | texture->id, paint, |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 2210 | &mMeshVertices[0].x, &mMeshVertices[0].u, |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2211 | GL_TRIANGLE_STRIP, gMeshCount, ignoreTransform); |
| 2212 | } else { |
| 2213 | drawTextureMesh(dstLeft, dstTop, dstRight, dstBottom, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2214 | texture->id, paint, texture->blend, |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 2215 | &mMeshVertices[0].x, &mMeshVertices[0].u, |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 2216 | GL_TRIANGLE_STRIP, gMeshCount, false, ignoreTransform); |
| 2217 | } |
| 2218 | |
| 2219 | if (CC_UNLIKELY(useScaleTransform)) { |
| 2220 | restore(); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2221 | } |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 2222 | |
| 2223 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2224 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2225 | mDirty = true; |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 2226 | } |
| 2227 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2228 | void OpenGLRenderer::drawPatch(const SkBitmap* bitmap, const Res_png_9patch* patch, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2229 | float left, float top, float right, float bottom, const SkPaint* paint) { |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 2230 | if (quickRejectSetupScissor(left, top, right, bottom)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2231 | return; |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 2232 | } |
| 2233 | |
John Reck | ebd5261 | 2014-12-10 16:47:36 -0800 | [diff] [blame] | 2234 | AssetAtlas::Entry* entry = mRenderState.assetAtlas().getEntry(bitmap); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2235 | const Patch* mesh = mCaches.patchCache.get(entry, bitmap->width(), bitmap->height(), |
| 2236 | right - left, bottom - top, patch); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 2237 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2238 | drawPatch(bitmap, mesh, entry, left, top, right, bottom, paint); |
Romain Guy | 4c2547f | 2013-06-11 16:19:24 -0700 | [diff] [blame] | 2239 | } |
| 2240 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2241 | void OpenGLRenderer::drawPatch(const SkBitmap* bitmap, const Patch* mesh, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2242 | AssetAtlas::Entry* entry, float left, float top, float right, float bottom, |
| 2243 | const SkPaint* paint) { |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 2244 | if (quickRejectSetupScissor(left, top, right, bottom)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2245 | return; |
Romain Guy | 4c2547f | 2013-06-11 16:19:24 -0700 | [diff] [blame] | 2246 | } |
| 2247 | |
Romain Guy | 211370f | 2012-02-01 16:10:55 -0800 | [diff] [blame] | 2248 | if (CC_LIKELY(mesh && mesh->verticesCount > 0)) { |
Romain Guy | a4adcf0 | 2013-02-28 12:15:35 -0800 | [diff] [blame] | 2249 | mCaches.activeTexture(0); |
Romain Guy | a404e16 | 2013-05-24 16:19:19 -0700 | [diff] [blame] | 2250 | Texture* texture = entry ? entry->texture : mCaches.textureCache.get(bitmap); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2251 | if (!texture) return; |
Romain Guy | a4adcf0 | 2013-02-28 12:15:35 -0800 | [diff] [blame] | 2252 | const AutoTexture autoCleanup(texture); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2253 | |
Romain Guy | a4adcf0 | 2013-02-28 12:15:35 -0800 | [diff] [blame] | 2254 | texture->setWrap(GL_CLAMP_TO_EDGE, true); |
| 2255 | texture->setFilter(GL_LINEAR, true); |
| 2256 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2257 | const bool pureTranslate = currentTransform()->isPureTranslate(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 2258 | // Mark the current layer dirty where we are going to draw the patch |
Romain Guy | 8168396 | 2011-01-24 20:40:18 -0800 | [diff] [blame] | 2259 | if (hasLayer() && mesh->hasEmptyQuads) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2260 | const float offsetX = left + currentTransform()->getTranslateX(); |
| 2261 | const float offsetY = top + currentTransform()->getTranslateY(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 2262 | const size_t count = mesh->quads.size(); |
| 2263 | for (size_t i = 0; i < count; i++) { |
Romain Guy | 8ab4079 | 2010-12-07 13:30:10 -0800 | [diff] [blame] | 2264 | const Rect& bounds = mesh->quads.itemAt(i); |
Romain Guy | 211370f | 2012-02-01 16:10:55 -0800 | [diff] [blame] | 2265 | if (CC_LIKELY(pureTranslate)) { |
Romain Guy | c78b5d5 | 2011-02-04 14:00:42 -0800 | [diff] [blame] | 2266 | const float x = (int) floorf(bounds.left + offsetX + 0.5f); |
| 2267 | const float y = (int) floorf(bounds.top + offsetY + 0.5f); |
| 2268 | dirtyLayer(x, y, x + bounds.getWidth(), y + bounds.getHeight()); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2269 | } else { |
Romain Guy | c78b5d5 | 2011-02-04 14:00:42 -0800 | [diff] [blame] | 2270 | dirtyLayer(left + bounds.left, top + bounds.top, |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2271 | left + bounds.right, top + bounds.bottom, *currentTransform()); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2272 | } |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 2273 | } |
| 2274 | } |
| 2275 | |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 2276 | bool ignoreTransform = false; |
Romain Guy | 211370f | 2012-02-01 16:10:55 -0800 | [diff] [blame] | 2277 | if (CC_LIKELY(pureTranslate)) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2278 | const float x = (int) floorf(left + currentTransform()->getTranslateX() + 0.5f); |
| 2279 | const float y = (int) floorf(top + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2280 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 2281 | right = x + right - left; |
| 2282 | bottom = y + bottom - top; |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 2283 | left = x; |
| 2284 | top = y; |
| 2285 | ignoreTransform = true; |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2286 | } |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2287 | drawIndexedTextureMesh(left, top, right, bottom, texture->id, paint, |
| 2288 | texture->blend, (GLvoid*) mesh->offset, (GLvoid*) mesh->textureOffset, |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 2289 | GL_TRIANGLES, mesh->indexCount, false, ignoreTransform, |
| 2290 | mCaches.patchCache.getMeshBuffer(), kModelViewMode_Translate, !mesh->hasEmptyQuads); |
Romain Guy | 054dc18 | 2010-10-15 17:55:25 -0700 | [diff] [blame] | 2291 | } |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2292 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2293 | mDirty = true; |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 2294 | } |
| 2295 | |
Romain Guy | 03c00b5 | 2013-06-20 18:30:28 -0700 | [diff] [blame] | 2296 | /** |
| 2297 | * Important note: this method is intended to draw batches of 9-patch objects and |
| 2298 | * will not set the scissor enable or dirty the current layer, if any. |
| 2299 | * The caller is responsible for properly dirtying the current layer. |
| 2300 | */ |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2301 | void OpenGLRenderer::drawPatches(const SkBitmap* bitmap, AssetAtlas::Entry* entry, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2302 | TextureVertex* vertices, uint32_t indexCount, const SkPaint* paint) { |
Romain Guy | 03c00b5 | 2013-06-20 18:30:28 -0700 | [diff] [blame] | 2303 | mCaches.activeTexture(0); |
| 2304 | Texture* texture = entry ? entry->texture : mCaches.textureCache.get(bitmap); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2305 | if (!texture) return; |
Romain Guy | 03c00b5 | 2013-06-20 18:30:28 -0700 | [diff] [blame] | 2306 | const AutoTexture autoCleanup(texture); |
| 2307 | |
| 2308 | texture->setWrap(GL_CLAMP_TO_EDGE, true); |
| 2309 | texture->setFilter(GL_LINEAR, true); |
| 2310 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2311 | drawIndexedTextureMesh(0.0f, 0.0f, 1.0f, 1.0f, texture->id, paint, |
| 2312 | texture->blend, &vertices[0].x, &vertices[0].u, |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 2313 | GL_TRIANGLES, indexCount, false, true, 0, kModelViewMode_Translate, false); |
Romain Guy | 03c00b5 | 2013-06-20 18:30:28 -0700 | [diff] [blame] | 2314 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2315 | mDirty = true; |
Romain Guy | 03c00b5 | 2013-06-20 18:30:28 -0700 | [diff] [blame] | 2316 | } |
| 2317 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2318 | void OpenGLRenderer::drawVertexBuffer(float translateX, float translateY, |
Chris Craik | bf75945 | 2014-08-11 16:00:44 -0700 | [diff] [blame] | 2319 | const VertexBuffer& vertexBuffer, const SkPaint* paint, int displayFlags) { |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 2320 | // not missing call to quickReject/dirtyLayer, always done at a higher level |
Chris Craik | 6d29c8d | 2013-05-08 18:35:44 -0700 | [diff] [blame] | 2321 | if (!vertexBuffer.getVertexCount()) { |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2322 | // no vertices to draw |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2323 | return; |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2324 | } |
| 2325 | |
Chris Craik | 0d5ac95 | 2014-07-15 13:01:02 -0700 | [diff] [blame] | 2326 | Rect bounds(vertexBuffer.getBounds()); |
| 2327 | bounds.translate(translateX, translateY); |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2328 | dirtyLayer(bounds.left, bounds.top, bounds.right, bounds.bottom, *currentTransform()); |
| 2329 | |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 2330 | int color = paint->getColor(); |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 2331 | bool isAA = paint->isAntiAlias(); |
| 2332 | |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2333 | setupDraw(); |
| 2334 | setupDrawNoTexture(); |
Chris Craik | 91a8c7c | 2014-08-12 14:31:35 -0700 | [diff] [blame] | 2335 | if (isAA) setupDrawVertexAlpha((displayFlags & kVertexBuffer_ShadowInterp)); |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2336 | setupDrawColor(color, ((color >> 24) & 0xFF) * writableSnapshot()->alpha); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2337 | setupDrawColorFilter(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 2338 | setupDrawShader(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2339 | setupDrawBlending(paint, isAA); |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2340 | setupDrawProgram(); |
Chris Craik | bf75945 | 2014-08-11 16:00:44 -0700 | [diff] [blame] | 2341 | setupDrawModelView(kModelViewMode_Translate, (displayFlags & kVertexBuffer_Offset), |
| 2342 | translateX, translateY, 0, 0); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 2343 | setupDrawColorUniforms(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2344 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 2345 | setupDrawShaderUniforms(getShader(paint)); |
Chet Haase | 858aa93 | 2011-05-12 09:06:00 -0700 | [diff] [blame] | 2346 | |
ztenghui | 55bfb4e | 2013-12-03 10:38:55 -0800 | [diff] [blame] | 2347 | const void* vertices = vertexBuffer.getBuffer(); |
Andreas Gampe | edaecc1 | 2014-11-10 20:54:07 -0800 | [diff] [blame] | 2348 | mCaches.unbindMeshBuffer(); |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 2349 | mCaches.bindPositionVertexPointer(true, vertices, isAA ? gAlphaVertexStride : gVertexStride); |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2350 | mCaches.resetTexCoordsVertexPointer(); |
ztenghui | 63d41ab | 2014-02-14 13:13:41 -0800 | [diff] [blame] | 2351 | |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2352 | int alphaSlot = -1; |
| 2353 | if (isAA) { |
| 2354 | void* alphaCoords = ((GLbyte*) vertices) + gVertexAlphaOffset; |
| 2355 | alphaSlot = mCaches.currentProgram->getAttrib("vtxAlpha"); |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2356 | // TODO: avoid enable/disable in back to back uses of the alpha attribute |
Chris Craik | 6ebdc11 | 2012-08-31 18:24:33 -0700 | [diff] [blame] | 2357 | glEnableVertexAttribArray(alphaSlot); |
| 2358 | glVertexAttribPointer(alphaSlot, 1, GL_FLOAT, GL_FALSE, gAlphaVertexStride, alphaCoords); |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2359 | } |
Romain Guy | 0429938 | 2012-07-18 17:15:41 -0700 | [diff] [blame] | 2360 | |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2361 | const VertexBuffer::Mode mode = vertexBuffer.getMode(); |
| 2362 | if (mode == VertexBuffer::kStandard) { |
ztenghui | 63d41ab | 2014-02-14 13:13:41 -0800 | [diff] [blame] | 2363 | mCaches.unbindIndicesBuffer(); |
| 2364 | glDrawArrays(GL_TRIANGLE_STRIP, 0, vertexBuffer.getVertexCount()); |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2365 | } else if (mode == VertexBuffer::kOnePolyRingShadow) { |
ztenghui | 63d41ab | 2014-02-14 13:13:41 -0800 | [diff] [blame] | 2366 | mCaches.bindShadowIndicesBuffer(); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2367 | glDrawElements(GL_TRIANGLE_STRIP, ONE_POLY_RING_SHADOW_INDEX_COUNT, |
| 2368 | GL_UNSIGNED_SHORT, nullptr); |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2369 | } else if (mode == VertexBuffer::kTwoPolyRingShadow) { |
ztenghui | 50ecf84 | 2014-03-11 16:52:30 -0700 | [diff] [blame] | 2370 | mCaches.bindShadowIndicesBuffer(); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2371 | glDrawElements(GL_TRIANGLE_STRIP, TWO_POLY_RING_SHADOW_INDEX_COUNT, |
| 2372 | GL_UNSIGNED_SHORT, nullptr); |
ztenghui | d5e8ade | 2014-08-13 15:48:02 -0700 | [diff] [blame] | 2373 | } else if (mode == VertexBuffer::kIndices) { |
| 2374 | mCaches.unbindIndicesBuffer(); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2375 | glDrawElements(GL_TRIANGLE_STRIP, vertexBuffer.getIndexCount(), |
| 2376 | GL_UNSIGNED_SHORT, vertexBuffer.getIndices()); |
ztenghui | 63d41ab | 2014-02-14 13:13:41 -0800 | [diff] [blame] | 2377 | } |
Romain Guy | 0429938 | 2012-07-18 17:15:41 -0700 | [diff] [blame] | 2378 | |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2379 | if (isAA) { |
Chris Craik | 6ebdc11 | 2012-08-31 18:24:33 -0700 | [diff] [blame] | 2380 | glDisableVertexAttribArray(alphaSlot); |
Romain Guy | 0429938 | 2012-07-18 17:15:41 -0700 | [diff] [blame] | 2381 | } |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2382 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2383 | mDirty = true; |
Chet Haase | 858aa93 | 2011-05-12 09:06:00 -0700 | [diff] [blame] | 2384 | } |
| 2385 | |
| 2386 | /** |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2387 | * Renders a convex path via tessellation. For AA paths, this function uses a similar approach to |
| 2388 | * that of AA lines in the drawLines() function. We expand the convex path by a half pixel in |
| 2389 | * screen space in all directions. However, instead of using a fragment shader to compute the |
| 2390 | * translucency of the color from its position, we simply use a varying parameter to define how far |
| 2391 | * a given pixel is from the edge. For non-AA paths, the expansion and alpha varying are not used. |
| 2392 | * |
| 2393 | * Doesn't yet support joins, caps, or path effects. |
| 2394 | */ |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2395 | void OpenGLRenderer::drawConvexPath(const SkPath& path, const SkPaint* paint) { |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2396 | VertexBuffer vertexBuffer; |
| 2397 | // TODO: try clipping large paths to viewport |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2398 | PathTessellator::tessellatePath(path, paint, *currentTransform(), vertexBuffer); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2399 | drawVertexBuffer(vertexBuffer, paint); |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2400 | } |
| 2401 | |
| 2402 | /** |
| 2403 | * We create tristrips for the lines much like shape stroke tessellation, using a per-vertex alpha |
| 2404 | * and additional geometry for defining an alpha slope perimeter. |
| 2405 | * |
| 2406 | * Using GL_LINES can be difficult because the rasterization rules for those lines produces some |
| 2407 | * unexpected results, and may vary between hardware devices. Previously we used a varying-base |
| 2408 | * in-shader alpha region, but found it to be taxing on some GPUs. |
| 2409 | * |
| 2410 | * TODO: try using a fixed input buffer for non-capped lines as in text rendering. this may reduce |
| 2411 | * memory transfer by removing need for degenerate vertices. |
Chet Haase | 99ecdc4 | 2011-05-06 12:06:34 -0700 | [diff] [blame] | 2412 | */ |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2413 | void OpenGLRenderer::drawLines(const float* points, int count, const SkPaint* paint) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2414 | if (mState.currentlyIgnored() || count < 4) return; |
Chet Haase | 8a5cc92 | 2011-04-26 07:28:09 -0700 | [diff] [blame] | 2415 | |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2416 | count &= ~0x3; // round down to nearest four |
Romain Guy | 7b63142 | 2012-04-04 11:38:54 -0700 | [diff] [blame] | 2417 | |
Chris Craik | 65cd612 | 2012-12-10 17:56:27 -0800 | [diff] [blame] | 2418 | VertexBuffer buffer; |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2419 | PathTessellator::tessellateLines(points, count, paint, *currentTransform(), buffer); |
| 2420 | const Rect& bounds = buffer.getBounds(); |
Romain Guy | d71ff91d | 2013-02-08 13:46:40 -0800 | [diff] [blame] | 2421 | |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2422 | if (quickRejectSetupScissor(bounds.left, bounds.top, bounds.right, bounds.bottom)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2423 | return; |
Romain Guy | d71ff91d | 2013-02-08 13:46:40 -0800 | [diff] [blame] | 2424 | } |
| 2425 | |
Chris Craik | bf75945 | 2014-08-11 16:00:44 -0700 | [diff] [blame] | 2426 | int displayFlags = paint->isAntiAlias() ? 0 : kVertexBuffer_Offset; |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2427 | drawVertexBuffer(buffer, paint, displayFlags); |
Chet Haase | 5b0200b | 2011-04-13 17:58:08 -0700 | [diff] [blame] | 2428 | } |
| 2429 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2430 | void OpenGLRenderer::drawPoints(const float* points, int count, const SkPaint* paint) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2431 | if (mState.currentlyIgnored() || count < 2) return; |
Romain Guy | ed6fcb0 | 2011-03-21 13:11:28 -0700 | [diff] [blame] | 2432 | |
Chris Craik | 6d29c8d | 2013-05-08 18:35:44 -0700 | [diff] [blame] | 2433 | count &= ~0x1; // round down to nearest two |
Romain Guy | ed6fcb0 | 2011-03-21 13:11:28 -0700 | [diff] [blame] | 2434 | |
Chris Craik | 6d29c8d | 2013-05-08 18:35:44 -0700 | [diff] [blame] | 2435 | VertexBuffer buffer; |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2436 | PathTessellator::tessellatePoints(points, count, paint, *currentTransform(), buffer); |
Romain Guy | d71ff91d | 2013-02-08 13:46:40 -0800 | [diff] [blame] | 2437 | |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 2438 | const Rect& bounds = buffer.getBounds(); |
| 2439 | if (quickRejectSetupScissor(bounds.left, bounds.top, bounds.right, bounds.bottom)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2440 | return; |
Romain Guy | ed6fcb0 | 2011-03-21 13:11:28 -0700 | [diff] [blame] | 2441 | } |
| 2442 | |
Chris Craik | bf75945 | 2014-08-11 16:00:44 -0700 | [diff] [blame] | 2443 | int displayFlags = paint->isAntiAlias() ? 0 : kVertexBuffer_Offset; |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2444 | drawVertexBuffer(buffer, paint, displayFlags); |
| 2445 | |
| 2446 | mDirty = true; |
Romain Guy | ed6fcb0 | 2011-03-21 13:11:28 -0700 | [diff] [blame] | 2447 | } |
| 2448 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2449 | void OpenGLRenderer::drawColor(int color, SkXfermode::Mode mode) { |
Romain Guy | e45362c | 2010-11-03 19:58:32 -0700 | [diff] [blame] | 2450 | // No need to check against the clip, we fill the clip region |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2451 | if (mState.currentlyIgnored()) return; |
Romain Guy | e45362c | 2010-11-03 19:58:32 -0700 | [diff] [blame] | 2452 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2453 | Rect clip(*mState.currentClipRect()); |
Romain Guy | ae88e5e | 2010-10-22 17:49:18 -0700 | [diff] [blame] | 2454 | clip.snapToPixelBoundaries(); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 2455 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2456 | SkPaint paint; |
| 2457 | paint.setColor(color); |
| 2458 | paint.setXfermodeMode(mode); |
| 2459 | |
| 2460 | drawColorRect(clip.left, clip.top, clip.right, clip.bottom, &paint, true); |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2461 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2462 | mDirty = true; |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 2463 | } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 2464 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2465 | void OpenGLRenderer::drawShape(float left, float top, const PathTexture* texture, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2466 | const SkPaint* paint) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2467 | if (!texture) return; |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 2468 | const AutoTexture autoCleanup(texture); |
| 2469 | |
| 2470 | const float x = left + texture->left - texture->offset; |
| 2471 | const float y = top + texture->top - texture->offset; |
| 2472 | |
| 2473 | drawPathTexture(texture, x, y, paint); |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2474 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2475 | mDirty = true; |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 2476 | } |
| 2477 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2478 | void OpenGLRenderer::drawRoundRect(float left, float top, float right, float bottom, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2479 | float rx, float ry, const SkPaint* p) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2480 | if (mState.currentlyIgnored() |
Chris Craik | 947eabf | 2014-08-19 10:21:12 -0700 | [diff] [blame] | 2481 | || quickRejectSetupScissor(left, top, right, bottom, p) |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 2482 | || PaintUtils::paintWillNotDraw(*p)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2483 | return; |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2484 | } |
Romain Guy | c1cd9ba3 | 2011-01-23 14:18:41 -0800 | [diff] [blame] | 2485 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2486 | if (p->getPathEffect() != nullptr) { |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2487 | mCaches.activeTexture(0); |
Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 2488 | const PathTexture* texture = mCaches.pathCache.getRoundRect( |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2489 | right - left, bottom - top, rx, ry, p); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2490 | drawShape(left, top, texture, p); |
| 2491 | } else { |
| 2492 | const VertexBuffer* vertexBuffer = mCaches.tessellationCache.getRoundRect( |
| 2493 | *currentTransform(), *p, right - left, bottom - top, rx, ry); |
| 2494 | drawVertexBuffer(left, top, *vertexBuffer, p); |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2495 | } |
Romain Guy | c1cd9ba3 | 2011-01-23 14:18:41 -0800 | [diff] [blame] | 2496 | } |
| 2497 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2498 | void OpenGLRenderer::drawCircle(float x, float y, float radius, const SkPaint* p) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2499 | if (mState.currentlyIgnored() |
Chris Craik | 947eabf | 2014-08-19 10:21:12 -0700 | [diff] [blame] | 2500 | || quickRejectSetupScissor(x - radius, y - radius, x + radius, y + radius, p) |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 2501 | || PaintUtils::paintWillNotDraw(*p)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2502 | return; |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2503 | } |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2504 | if (p->getPathEffect() != nullptr) { |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2505 | mCaches.activeTexture(0); |
Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 2506 | const PathTexture* texture = mCaches.pathCache.getCircle(radius, p); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2507 | drawShape(x - radius, y - radius, texture, p); |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 2508 | } else { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2509 | SkPath path; |
| 2510 | if (p->getStyle() == SkPaint::kStrokeAndFill_Style) { |
| 2511 | path.addCircle(x, y, radius + p->getStrokeWidth() / 2); |
| 2512 | } else { |
| 2513 | path.addCircle(x, y, radius); |
| 2514 | } |
| 2515 | drawConvexPath(path, p); |
Chris Craik | cb4d600 | 2012-09-25 12:00:29 -0700 | [diff] [blame] | 2516 | } |
Romain Guy | c1cd9ba3 | 2011-01-23 14:18:41 -0800 | [diff] [blame] | 2517 | } |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 2518 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2519 | void OpenGLRenderer::drawOval(float left, float top, float right, float bottom, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2520 | const SkPaint* p) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2521 | if (mState.currentlyIgnored() |
Chris Craik | 947eabf | 2014-08-19 10:21:12 -0700 | [diff] [blame] | 2522 | || quickRejectSetupScissor(left, top, right, bottom, p) |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 2523 | || PaintUtils::paintWillNotDraw(*p)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2524 | return; |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2525 | } |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 2526 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2527 | if (p->getPathEffect() != nullptr) { |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2528 | mCaches.activeTexture(0); |
Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 2529 | const PathTexture* texture = mCaches.pathCache.getOval(right - left, bottom - top, p); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2530 | drawShape(left, top, texture, p); |
| 2531 | } else { |
| 2532 | SkPath path; |
| 2533 | SkRect rect = SkRect::MakeLTRB(left, top, right, bottom); |
| 2534 | if (p->getStyle() == SkPaint::kStrokeAndFill_Style) { |
| 2535 | rect.outset(p->getStrokeWidth() / 2, p->getStrokeWidth() / 2); |
| 2536 | } |
| 2537 | path.addOval(rect); |
| 2538 | drawConvexPath(path, p); |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2539 | } |
Romain Guy | c1cd9ba3 | 2011-01-23 14:18:41 -0800 | [diff] [blame] | 2540 | } |
| 2541 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2542 | void OpenGLRenderer::drawArc(float left, float top, float right, float bottom, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2543 | float startAngle, float sweepAngle, bool useCenter, const SkPaint* p) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2544 | if (mState.currentlyIgnored() |
Chris Craik | 947eabf | 2014-08-19 10:21:12 -0700 | [diff] [blame] | 2545 | || quickRejectSetupScissor(left, top, right, bottom, p) |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 2546 | || PaintUtils::paintWillNotDraw(*p)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2547 | return; |
Romain Guy | 8b2f526 | 2011-01-23 16:15:02 -0800 | [diff] [blame] | 2548 | } |
| 2549 | |
Chris Craik | 780c128 | 2012-10-04 14:10:49 -0700 | [diff] [blame] | 2550 | // TODO: support fills (accounting for concavity if useCenter && sweepAngle > 180) |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2551 | if (p->getStyle() != SkPaint::kStroke_Style || p->getPathEffect() != nullptr || useCenter) { |
Chris Craik | 780c128 | 2012-10-04 14:10:49 -0700 | [diff] [blame] | 2552 | mCaches.activeTexture(0); |
Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 2553 | const PathTexture* texture = mCaches.pathCache.getArc(right - left, bottom - top, |
Chris Craik | 780c128 | 2012-10-04 14:10:49 -0700 | [diff] [blame] | 2554 | startAngle, sweepAngle, useCenter, p); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2555 | drawShape(left, top, texture, p); |
| 2556 | return; |
Chris Craik | 780c128 | 2012-10-04 14:10:49 -0700 | [diff] [blame] | 2557 | } |
Chris Craik | 780c128 | 2012-10-04 14:10:49 -0700 | [diff] [blame] | 2558 | SkRect rect = SkRect::MakeLTRB(left, top, right, bottom); |
| 2559 | if (p->getStyle() == SkPaint::kStrokeAndFill_Style) { |
| 2560 | rect.outset(p->getStrokeWidth() / 2, p->getStrokeWidth() / 2); |
| 2561 | } |
| 2562 | |
| 2563 | SkPath path; |
| 2564 | if (useCenter) { |
| 2565 | path.moveTo(rect.centerX(), rect.centerY()); |
| 2566 | } |
| 2567 | path.arcTo(rect, startAngle, sweepAngle, !useCenter); |
| 2568 | if (useCenter) { |
| 2569 | path.close(); |
| 2570 | } |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2571 | drawConvexPath(path, p); |
Romain Guy | 8b2f526 | 2011-01-23 16:15:02 -0800 | [diff] [blame] | 2572 | } |
| 2573 | |
Romain Guy | cf8675e | 2012-10-02 12:32:25 -0700 | [diff] [blame] | 2574 | // See SkPaintDefaults.h |
| 2575 | #define SkPaintDefaults_MiterLimit SkIntToScalar(4) |
| 2576 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2577 | void OpenGLRenderer::drawRect(float left, float top, float right, float bottom, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2578 | const SkPaint* p) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2579 | if (mState.currentlyIgnored() |
Chris Craik | 947eabf | 2014-08-19 10:21:12 -0700 | [diff] [blame] | 2580 | || quickRejectSetupScissor(left, top, right, bottom, p) |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 2581 | || PaintUtils::paintWillNotDraw(*p)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2582 | return; |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 2583 | } |
| 2584 | |
Chris Craik | 710f46d | 2012-09-17 17:25:49 -0700 | [diff] [blame] | 2585 | if (p->getStyle() != SkPaint::kFill_Style) { |
Romain Guy | cf8675e | 2012-10-02 12:32:25 -0700 | [diff] [blame] | 2586 | // only fill style is supported by drawConvexPath, since others have to handle joins |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2587 | if (p->getPathEffect() != nullptr || p->getStrokeJoin() != SkPaint::kMiter_Join || |
Romain Guy | cf8675e | 2012-10-02 12:32:25 -0700 | [diff] [blame] | 2588 | p->getStrokeMiter() != SkPaintDefaults_MiterLimit) { |
| 2589 | mCaches.activeTexture(0); |
| 2590 | const PathTexture* texture = |
Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 2591 | mCaches.pathCache.getRect(right - left, bottom - top, p); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2592 | drawShape(left, top, texture, p); |
| 2593 | } else { |
| 2594 | SkPath path; |
| 2595 | SkRect rect = SkRect::MakeLTRB(left, top, right, bottom); |
| 2596 | if (p->getStyle() == SkPaint::kStrokeAndFill_Style) { |
| 2597 | rect.outset(p->getStrokeWidth() / 2, p->getStrokeWidth() / 2); |
| 2598 | } |
| 2599 | path.addRect(rect); |
| 2600 | drawConvexPath(path, p); |
Romain Guy | cf8675e | 2012-10-02 12:32:25 -0700 | [diff] [blame] | 2601 | } |
Chet Haase | 858aa93 | 2011-05-12 09:06:00 -0700 | [diff] [blame] | 2602 | } else { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2603 | if (p->isAntiAlias() && !currentTransform()->isSimple()) { |
| 2604 | SkPath path; |
| 2605 | path.addRect(left, top, right, bottom); |
| 2606 | drawConvexPath(path, p); |
| 2607 | } else { |
| 2608 | drawColorRect(left, top, right, bottom, p); |
| 2609 | |
| 2610 | mDirty = true; |
| 2611 | } |
Chet Haase | 858aa93 | 2011-05-12 09:06:00 -0700 | [diff] [blame] | 2612 | } |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 2613 | } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 2614 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2615 | void OpenGLRenderer::drawTextShadow(const SkPaint* paint, const char* text, |
| 2616 | int bytesCount, int count, const float* positions, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2617 | FontRenderer& fontRenderer, int alpha, float x, float y) { |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2618 | mCaches.activeTexture(0); |
| 2619 | |
Derek Sollenberger | c29a0a4 | 2014-03-31 13:52:39 -0400 | [diff] [blame] | 2620 | TextShadow textShadow; |
| 2621 | if (!getTextShadow(paint, &textShadow)) { |
| 2622 | LOG_ALWAYS_FATAL("failed to query shadow attributes"); |
| 2623 | } |
| 2624 | |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2625 | // NOTE: The drop shadow will not perform gamma correction |
| 2626 | // if shader-based correction is enabled |
| 2627 | mCaches.dropShadowCache.setFontRenderer(fontRenderer); |
| 2628 | const ShadowTexture* shadow = mCaches.dropShadowCache.get( |
Derek Sollenberger | c29a0a4 | 2014-03-31 13:52:39 -0400 | [diff] [blame] | 2629 | paint, text, bytesCount, count, textShadow.radius, positions); |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 2630 | // If the drop shadow exceeds the max texture size or couldn't be |
| 2631 | // allocated, skip drawing |
| 2632 | if (!shadow) return; |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2633 | const AutoTexture autoCleanup(shadow); |
| 2634 | |
Derek Sollenberger | c29a0a4 | 2014-03-31 13:52:39 -0400 | [diff] [blame] | 2635 | const float sx = x - shadow->left + textShadow.dx; |
| 2636 | const float sy = y - shadow->top + textShadow.dy; |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2637 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2638 | const int shadowAlpha = ((textShadow.color >> 24) & 0xFF) * writableSnapshot()->alpha; |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 2639 | if (getShader(paint)) { |
Derek Sollenberger | c29a0a4 | 2014-03-31 13:52:39 -0400 | [diff] [blame] | 2640 | textShadow.color = SK_ColorWHITE; |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2641 | } |
| 2642 | |
| 2643 | setupDraw(); |
| 2644 | setupDrawWithTexture(true); |
Derek Sollenberger | c29a0a4 | 2014-03-31 13:52:39 -0400 | [diff] [blame] | 2645 | setupDrawAlpha8Color(textShadow.color, shadowAlpha < 255 ? shadowAlpha : alpha); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2646 | setupDrawColorFilter(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 2647 | setupDrawShader(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2648 | setupDrawBlending(paint, true); |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2649 | setupDrawProgram(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 2650 | setupDrawModelView(kModelViewMode_TranslateAndScale, false, |
| 2651 | sx, sy, sx + shadow->width, sy + shadow->height); |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2652 | setupDrawTexture(shadow->id); |
| 2653 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2654 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 2655 | setupDrawShaderUniforms(getShader(paint)); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2656 | setupDrawMesh(nullptr, (GLvoid*) gMeshTextureOffset); |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2657 | |
| 2658 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
| 2659 | } |
| 2660 | |
Romain Guy | 768bffc | 2013-02-27 13:50:45 -0800 | [diff] [blame] | 2661 | bool OpenGLRenderer::canSkipText(const SkPaint* paint) const { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2662 | float alpha = (hasTextShadow(paint) ? 1.0f : paint->getAlpha()) * currentSnapshot()->alpha; |
Tom Hudson | 8dfaa49 | 2014-12-09 15:03:44 -0500 | [diff] [blame] | 2663 | return MathUtils::isZero(alpha) |
| 2664 | && PaintUtils::getXfermode(paint->getXfermode()) == SkXfermode::kSrcOver_Mode; |
Romain Guy | 768bffc | 2013-02-27 13:50:45 -0800 | [diff] [blame] | 2665 | } |
| 2666 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2667 | void OpenGLRenderer::drawPosText(const char* text, int bytesCount, int count, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2668 | const float* positions, const SkPaint* paint) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2669 | if (text == nullptr || count == 0 || mState.currentlyIgnored() || canSkipText(paint)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2670 | return; |
Romain Guy | eb9a536 | 2012-01-17 17:39:26 -0800 | [diff] [blame] | 2671 | } |
Romain Guy | eb9a536 | 2012-01-17 17:39:26 -0800 | [diff] [blame] | 2672 | |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2673 | // NOTE: Skia does not support perspective transform on drawPosText yet |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2674 | if (!currentTransform()->isSimple()) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2675 | return; |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2676 | } |
| 2677 | |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 2678 | mCaches.enableScissor(); |
| 2679 | |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2680 | float x = 0.0f; |
| 2681 | float y = 0.0f; |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2682 | const bool pureTranslate = currentTransform()->isPureTranslate(); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2683 | if (pureTranslate) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2684 | x = (int) floorf(x + currentTransform()->getTranslateX() + 0.5f); |
| 2685 | y = (int) floorf(y + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2686 | } |
| 2687 | |
Romain Guy | b1d0a4e | 2012-07-13 18:25:35 -0700 | [diff] [blame] | 2688 | FontRenderer& fontRenderer = mCaches.fontRenderer->getFontRenderer(paint); |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2689 | fontRenderer.setFont(paint, SkMatrix::I()); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2690 | |
| 2691 | int alpha; |
| 2692 | SkXfermode::Mode mode; |
| 2693 | getAlphaAndMode(paint, &alpha, &mode); |
| 2694 | |
Derek Sollenberger | c29a0a4 | 2014-03-31 13:52:39 -0400 | [diff] [blame] | 2695 | if (CC_UNLIKELY(hasTextShadow(paint))) { |
Romain Guy | e3a9b24 | 2013-01-08 11:15:30 -0800 | [diff] [blame] | 2696 | drawTextShadow(paint, text, bytesCount, count, positions, fontRenderer, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2697 | alpha, 0.0f, 0.0f); |
Raph Levien | 416a847 | 2012-07-19 22:48:17 -0700 | [diff] [blame] | 2698 | } |
| 2699 | |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2700 | // Pick the appropriate texture filtering |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2701 | bool linearFilter = currentTransform()->changesBounds(); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2702 | if (pureTranslate && !linearFilter) { |
| 2703 | linearFilter = fabs(y - (int) y) > 0.0f || fabs(x - (int) x) > 0.0f; |
| 2704 | } |
Romain Guy | 257ae35 | 2013-03-20 16:31:12 -0700 | [diff] [blame] | 2705 | fontRenderer.setTextureFiltering(linearFilter); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2706 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2707 | const Rect* clip = pureTranslate ? writableSnapshot()->clipRect : &writableSnapshot()->getLocalClip(); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2708 | Rect bounds(FLT_MAX / 2.0f, FLT_MAX / 2.0f, FLT_MIN / 2.0f, FLT_MIN / 2.0f); |
| 2709 | |
Romain Guy | 211370f | 2012-02-01 16:10:55 -0800 | [diff] [blame] | 2710 | const bool hasActiveLayer = hasLayer(); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2711 | |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 2712 | TextSetupFunctor functor(this, x, y, pureTranslate, alpha, mode, paint); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2713 | if (fontRenderer.renderPosText(paint, clip, text, 0, bytesCount, count, x, y, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2714 | positions, hasActiveLayer ? &bounds : nullptr, &functor)) { |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2715 | if (hasActiveLayer) { |
| 2716 | if (!pureTranslate) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2717 | currentTransform()->mapRect(bounds); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2718 | } |
| 2719 | dirtyLayerUnchecked(bounds, getRegion()); |
| 2720 | } |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 2721 | } |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2722 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2723 | mDirty = true; |
Romain Guy | eb9a536 | 2012-01-17 17:39:26 -0800 | [diff] [blame] | 2724 | } |
| 2725 | |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2726 | bool OpenGLRenderer::findBestFontTransform(const mat4& transform, SkMatrix* outMatrix) const { |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2727 | if (CC_LIKELY(transform.isPureTranslate())) { |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2728 | outMatrix->setIdentity(); |
| 2729 | return false; |
| 2730 | } else if (CC_UNLIKELY(transform.isPerspective())) { |
| 2731 | outMatrix->setIdentity(); |
| 2732 | return true; |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2733 | } |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2734 | |
| 2735 | /** |
Chris Craik | a736cd9 | 2014-08-04 13:18:38 -0700 | [diff] [blame] | 2736 | * Input is a non-perspective, scaling transform. Generate a scale-only transform, |
| 2737 | * with values rounded to the nearest int. |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2738 | */ |
| 2739 | float sx, sy; |
| 2740 | transform.decomposeScale(sx, sy); |
Chris Craik | a736cd9 | 2014-08-04 13:18:38 -0700 | [diff] [blame] | 2741 | outMatrix->setScale( |
| 2742 | roundf(fmaxf(1.0f, sx)), |
| 2743 | roundf(fmaxf(1.0f, sy))); |
| 2744 | return true; |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2745 | } |
| 2746 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2747 | int OpenGLRenderer::getSaveCount() const { |
| 2748 | return mState.getSaveCount(); |
| 2749 | } |
| 2750 | |
| 2751 | int OpenGLRenderer::save(int flags) { |
| 2752 | return mState.save(flags); |
| 2753 | } |
| 2754 | |
| 2755 | void OpenGLRenderer::restore() { |
| 2756 | return mState.restore(); |
| 2757 | } |
| 2758 | |
| 2759 | void OpenGLRenderer::restoreToCount(int saveCount) { |
| 2760 | return mState.restoreToCount(saveCount); |
| 2761 | } |
| 2762 | |
| 2763 | void OpenGLRenderer::translate(float dx, float dy, float dz) { |
| 2764 | return mState.translate(dx, dy, dz); |
| 2765 | } |
| 2766 | |
| 2767 | void OpenGLRenderer::rotate(float degrees) { |
| 2768 | return mState.rotate(degrees); |
| 2769 | } |
| 2770 | |
| 2771 | void OpenGLRenderer::scale(float sx, float sy) { |
| 2772 | return mState.scale(sx, sy); |
| 2773 | } |
| 2774 | |
| 2775 | void OpenGLRenderer::skew(float sx, float sy) { |
| 2776 | return mState.skew(sx, sy); |
| 2777 | } |
| 2778 | |
| 2779 | void OpenGLRenderer::setMatrix(const Matrix4& matrix) { |
| 2780 | mState.setMatrix(matrix); |
| 2781 | } |
| 2782 | |
| 2783 | void OpenGLRenderer::concatMatrix(const Matrix4& matrix) { |
| 2784 | mState.concatMatrix(matrix); |
| 2785 | } |
| 2786 | |
| 2787 | bool OpenGLRenderer::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) { |
| 2788 | return mState.clipRect(left, top, right, bottom, op); |
| 2789 | } |
| 2790 | |
| 2791 | bool OpenGLRenderer::clipPath(const SkPath* path, SkRegion::Op op) { |
| 2792 | return mState.clipPath(path, op); |
| 2793 | } |
| 2794 | |
| 2795 | bool OpenGLRenderer::clipRegion(const SkRegion* region, SkRegion::Op op) { |
| 2796 | return mState.clipRegion(region, op); |
| 2797 | } |
| 2798 | |
| 2799 | void OpenGLRenderer::setClippingOutline(LinearAllocator& allocator, const Outline* outline) { |
| 2800 | mState.setClippingOutline(allocator, outline); |
| 2801 | } |
| 2802 | |
| 2803 | void OpenGLRenderer::setClippingRoundRect(LinearAllocator& allocator, |
| 2804 | const Rect& rect, float radius, bool highPriority) { |
| 2805 | mState.setClippingRoundRect(allocator, rect, radius, highPriority); |
| 2806 | } |
| 2807 | |
| 2808 | |
| 2809 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2810 | void OpenGLRenderer::drawText(const char* text, int bytesCount, int count, float x, float y, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2811 | const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds, |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 2812 | DrawOpMode drawOpMode) { |
| 2813 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 2814 | if (drawOpMode == kDrawOpMode_Immediate) { |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 2815 | // The checks for corner-case ignorable text and quick rejection is only done for immediate |
| 2816 | // drawing as ops from DeferredDisplayList are already filtered for these |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2817 | if (text == nullptr || count == 0 || mState.currentlyIgnored() || canSkipText(paint) || |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 2818 | quickRejectSetupScissor(bounds)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2819 | return; |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 2820 | } |
Romain Guy | cac5fd3 | 2011-12-01 20:08:50 -0800 | [diff] [blame] | 2821 | } |
| 2822 | |
Romain Guy | 3a3fa1b | 2010-12-06 18:47:50 -0800 | [diff] [blame] | 2823 | const float oldX = x; |
| 2824 | const float oldY = y; |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2825 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2826 | const mat4& transform = *currentTransform(); |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2827 | const bool pureTranslate = transform.isPureTranslate(); |
Romain Guy | c74f45a | 2013-02-26 19:10:14 -0800 | [diff] [blame] | 2828 | |
Romain Guy | 211370f | 2012-02-01 16:10:55 -0800 | [diff] [blame] | 2829 | if (CC_LIKELY(pureTranslate)) { |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2830 | x = (int) floorf(x + transform.getTranslateX() + 0.5f); |
| 2831 | y = (int) floorf(y + transform.getTranslateY() + 0.5f); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 2832 | } |
| 2833 | |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 2834 | int alpha; |
| 2835 | SkXfermode::Mode mode; |
| 2836 | getAlphaAndMode(paint, &alpha, &mode); |
Romain Guy | 9d13fe25 | 2010-10-15 16:06:03 -0700 | [diff] [blame] | 2837 | |
Romain Guy | c74f45a | 2013-02-26 19:10:14 -0800 | [diff] [blame] | 2838 | FontRenderer& fontRenderer = mCaches.fontRenderer->getFontRenderer(paint); |
| 2839 | |
Derek Sollenberger | c29a0a4 | 2014-03-31 13:52:39 -0400 | [diff] [blame] | 2840 | if (CC_UNLIKELY(hasTextShadow(paint))) { |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2841 | fontRenderer.setFont(paint, SkMatrix::I()); |
Romain Guy | c74f45a | 2013-02-26 19:10:14 -0800 | [diff] [blame] | 2842 | drawTextShadow(paint, text, bytesCount, count, positions, fontRenderer, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2843 | alpha, oldX, oldY); |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 2844 | } |
| 2845 | |
Romain Guy | 19d4dd8 | 2013-03-04 11:14:26 -0800 | [diff] [blame] | 2846 | const bool hasActiveLayer = hasLayer(); |
| 2847 | |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2848 | // We only pass a partial transform to the font renderer. That partial |
| 2849 | // matrix defines how glyphs are rasterized. Typically we want glyphs |
| 2850 | // to be rasterized at their final size on screen, which means the partial |
| 2851 | // matrix needs to take the scale factor into account. |
| 2852 | // When a partial matrix is used to transform glyphs during rasterization, |
| 2853 | // the mesh is generated with the inverse transform (in the case of scale, |
| 2854 | // the mesh is generated at 1.0 / scale for instance.) This allows us to |
| 2855 | // apply the full transform matrix at draw time in the vertex shader. |
| 2856 | // Applying the full matrix in the shader is the easiest way to handle |
| 2857 | // rotation and perspective and allows us to always generated quads in the |
| 2858 | // font renderer which greatly simplifies the code, clipping in particular. |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2859 | SkMatrix fontTransform; |
| 2860 | bool linearFilter = findBestFontTransform(transform, &fontTransform) |
| 2861 | || fabs(y - (int) y) > 0.0f |
| 2862 | || fabs(x - (int) x) > 0.0f; |
Romain Guy | 3b75382 | 2013-03-05 10:27:35 -0800 | [diff] [blame] | 2863 | fontRenderer.setFont(paint, fontTransform); |
Romain Guy | 257ae35 | 2013-03-20 16:31:12 -0700 | [diff] [blame] | 2864 | fontRenderer.setTextureFiltering(linearFilter); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 2865 | |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2866 | // TODO: Implement better clipping for scaled/rotated text |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2867 | const Rect* clip = !pureTranslate ? nullptr : mState.currentClipRect(); |
Chris Craik | 4154182 | 2013-05-03 16:35:54 -0700 | [diff] [blame] | 2868 | Rect layerBounds(FLT_MAX / 2.0f, FLT_MAX / 2.0f, FLT_MIN / 2.0f, FLT_MIN / 2.0f); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 2869 | |
Raph Levien | 996e57c | 2012-07-23 15:22:52 -0700 | [diff] [blame] | 2870 | bool status; |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 2871 | TextSetupFunctor functor(this, x, y, pureTranslate, alpha, mode, paint); |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 2872 | |
| 2873 | // don't call issuedrawcommand, do it at end of batch |
| 2874 | bool forceFinish = (drawOpMode != kDrawOpMode_Defer); |
Romain Guy | a3dc55f | 2012-09-28 13:55:44 -0700 | [diff] [blame] | 2875 | if (CC_UNLIKELY(paint->getTextAlign() != SkPaint::kLeft_Align)) { |
Raph Levien | 8b4072d | 2012-07-30 15:50:00 -0700 | [diff] [blame] | 2876 | SkPaint paintCopy(*paint); |
| 2877 | paintCopy.setTextAlign(SkPaint::kLeft_Align); |
| 2878 | status = fontRenderer.renderPosText(&paintCopy, clip, text, 0, bytesCount, count, x, y, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2879 | positions, hasActiveLayer ? &layerBounds : nullptr, &functor, forceFinish); |
Raph Levien | 996e57c | 2012-07-23 15:22:52 -0700 | [diff] [blame] | 2880 | } else { |
Raph Levien | 8b4072d | 2012-07-30 15:50:00 -0700 | [diff] [blame] | 2881 | status = fontRenderer.renderPosText(paint, clip, text, 0, bytesCount, count, x, y, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2882 | positions, hasActiveLayer ? &layerBounds : nullptr, &functor, forceFinish); |
Raph Levien | 996e57c | 2012-07-23 15:22:52 -0700 | [diff] [blame] | 2883 | } |
Romain Guy | 4ff0cf4 | 2012-08-06 14:51:10 -0700 | [diff] [blame] | 2884 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 2885 | if ((status || drawOpMode != kDrawOpMode_Immediate) && hasActiveLayer) { |
Romain Guy | 624234f | 2013-03-05 16:43:31 -0800 | [diff] [blame] | 2886 | if (!pureTranslate) { |
Chris Craik | 4154182 | 2013-05-03 16:35:54 -0700 | [diff] [blame] | 2887 | transform.mapRect(layerBounds); |
Romain Guy | a4adcf0 | 2013-02-28 12:15:35 -0800 | [diff] [blame] | 2888 | } |
Chris Craik | 4154182 | 2013-05-03 16:35:54 -0700 | [diff] [blame] | 2889 | dirtyLayerUnchecked(layerBounds, getRegion()); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 2890 | } |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 2891 | |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 2892 | drawTextDecorations(totalAdvance, oldX, oldY, paint); |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2893 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2894 | mDirty = true; |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 2895 | } |
| 2896 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2897 | void OpenGLRenderer::drawTextOnPath(const char* text, int bytesCount, int count, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 2898 | const SkPath* path, float hOffset, float vOffset, const SkPaint* paint) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2899 | if (text == nullptr || count == 0 || mState.currentlyIgnored() || canSkipText(paint)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2900 | return; |
Romain Guy | 03d5852 | 2012-02-24 17:54:07 -0800 | [diff] [blame] | 2901 | } |
| 2902 | |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 2903 | // TODO: avoid scissor by calculating maximum bounds using path bounds + font metrics |
| 2904 | mCaches.enableScissor(); |
| 2905 | |
Romain Guy | b1d0a4e | 2012-07-13 18:25:35 -0700 | [diff] [blame] | 2906 | FontRenderer& fontRenderer = mCaches.fontRenderer->getFontRenderer(paint); |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 2907 | fontRenderer.setFont(paint, SkMatrix::I()); |
Romain Guy | 257ae35 | 2013-03-20 16:31:12 -0700 | [diff] [blame] | 2908 | fontRenderer.setTextureFiltering(true); |
Romain Guy | 03d5852 | 2012-02-24 17:54:07 -0800 | [diff] [blame] | 2909 | |
| 2910 | int alpha; |
| 2911 | SkXfermode::Mode mode; |
| 2912 | getAlphaAndMode(paint, &alpha, &mode); |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 2913 | TextSetupFunctor functor(this, 0.0f, 0.0f, false, alpha, mode, paint); |
Romain Guy | 03d5852 | 2012-02-24 17:54:07 -0800 | [diff] [blame] | 2914 | |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2915 | const Rect* clip = &writableSnapshot()->getLocalClip(); |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 2916 | Rect bounds(FLT_MAX / 2.0f, FLT_MAX / 2.0f, FLT_MIN / 2.0f, FLT_MIN / 2.0f); |
Romain Guy | 03d5852 | 2012-02-24 17:54:07 -0800 | [diff] [blame] | 2917 | |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 2918 | const bool hasActiveLayer = hasLayer(); |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 2919 | |
| 2920 | if (fontRenderer.renderTextOnPath(paint, clip, text, 0, bytesCount, count, path, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2921 | hOffset, vOffset, hasActiveLayer ? &bounds : nullptr, &functor)) { |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 2922 | if (hasActiveLayer) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2923 | currentTransform()->mapRect(bounds); |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 2924 | dirtyLayerUnchecked(bounds, getRegion()); |
| 2925 | } |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 2926 | } |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 2927 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2928 | mDirty = true; |
Romain Guy | 325740f | 2012-02-24 16:48:34 -0800 | [diff] [blame] | 2929 | } |
| 2930 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2931 | void OpenGLRenderer::drawPath(const SkPath* path, const SkPaint* paint) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 2932 | if (mState.currentlyIgnored()) return; |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 2933 | |
Romain Guy | a1d3c91 | 2011-12-13 14:55:06 -0800 | [diff] [blame] | 2934 | mCaches.activeTexture(0); |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 2935 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 2936 | const PathTexture* texture = mCaches.pathCache.get(path, paint); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2937 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 2938 | const AutoTexture autoCleanup(texture); |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 2939 | |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 2940 | const float x = texture->left - texture->offset; |
| 2941 | const float y = texture->top - texture->offset; |
| 2942 | |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 2943 | drawPathTexture(texture, x, y, paint); |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2944 | mDirty = true; |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 2945 | } |
| 2946 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2947 | void OpenGLRenderer::drawLayer(Layer* layer, float x, float y) { |
Romain Guy | 35643dd | 2012-09-18 15:40:58 -0700 | [diff] [blame] | 2948 | if (!layer) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2949 | return; |
Romain Guy | 35643dd | 2012-09-18 15:40:58 -0700 | [diff] [blame] | 2950 | } |
| 2951 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2952 | mat4* transform = nullptr; |
Romain Guy | b2e2f24 | 2012-10-17 18:18:35 -0700 | [diff] [blame] | 2953 | if (layer->isTextureLayer()) { |
| 2954 | transform = &layer->getTransform(); |
| 2955 | if (!transform->isIdentity()) { |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 2956 | save(SkCanvas::kMatrix_SaveFlag); |
Chris Craik | 14e5130 | 2013-12-30 15:32:54 -0800 | [diff] [blame] | 2957 | concatMatrix(*transform); |
Romain Guy | b2e2f24 | 2012-10-17 18:18:35 -0700 | [diff] [blame] | 2958 | } |
| 2959 | } |
| 2960 | |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 2961 | bool clipRequired = false; |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 2962 | const bool rejected = mState.calculateQuickRejectForScissor( |
| 2963 | x, y, x + layer->layer.getWidth(), y + layer->layer.getHeight(), |
| 2964 | &clipRequired, nullptr, false); |
Romain Guy | 35643dd | 2012-09-18 15:40:58 -0700 | [diff] [blame] | 2965 | |
| 2966 | if (rejected) { |
Romain Guy | b2e2f24 | 2012-10-17 18:18:35 -0700 | [diff] [blame] | 2967 | if (transform && !transform->isIdentity()) { |
| 2968 | restore(); |
| 2969 | } |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 2970 | return; |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 2971 | } |
| 2972 | |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 2973 | EVENT_LOGD("drawLayer," RECT_STRING ", clipRequired %d", x, y, |
| 2974 | x + layer->layer.getWidth(), y + layer->layer.getHeight(), clipRequired); |
| 2975 | |
Romain Guy | 5bb3c73 | 2012-11-29 17:52:58 -0800 | [diff] [blame] | 2976 | updateLayer(layer, true); |
Romain Guy | 2bf68f0 | 2012-03-02 13:37:47 -0800 | [diff] [blame] | 2977 | |
Chris Craik | 39a908c | 2013-06-13 14:39:01 -0700 | [diff] [blame] | 2978 | mCaches.setScissorEnabled(mScissorOptimizationDisabled || clipRequired); |
Romain Guy | a1d3c91 | 2011-12-13 14:55:06 -0800 | [diff] [blame] | 2979 | mCaches.activeTexture(0); |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 2980 | |
Romain Guy | 211370f | 2012-02-01 16:10:55 -0800 | [diff] [blame] | 2981 | if (CC_LIKELY(!layer->region.isEmpty())) { |
Romain Guy | c88e357 | 2011-01-22 00:32:12 -0800 | [diff] [blame] | 2982 | if (layer->region.isRect()) { |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 2983 | DRAW_DOUBLE_STENCIL_IF(!layer->hasDrawnSinceUpdate, |
| 2984 | composeLayerRect(layer, layer->regionRect)); |
Romain Guy | c88e357 | 2011-01-22 00:32:12 -0800 | [diff] [blame] | 2985 | } else if (layer->mesh) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2986 | |
Chris Craik | 16ecda5 | 2013-03-29 10:59:59 -0700 | [diff] [blame] | 2987 | const float a = getLayerAlpha(layer); |
Romain Guy | c88e357 | 2011-01-22 00:32:12 -0800 | [diff] [blame] | 2988 | setupDraw(); |
| 2989 | setupDrawWithTexture(); |
Romain Guy | 8168396 | 2011-01-24 20:40:18 -0800 | [diff] [blame] | 2990 | setupDrawColor(a, a, a, a); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2991 | setupDrawColorFilter(layer->getColorFilter()); |
| 2992 | setupDrawBlending(layer); |
Romain Guy | c88e357 | 2011-01-22 00:32:12 -0800 | [diff] [blame] | 2993 | setupDrawProgram(); |
Romain Guy | c88e357 | 2011-01-22 00:32:12 -0800 | [diff] [blame] | 2994 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 2995 | setupDrawColorFilterUniforms(layer->getColorFilter()); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 2996 | setupDrawTexture(layer->getTexture()); |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 2997 | if (CC_LIKELY(currentTransform()->isPureTranslate())) { |
| 2998 | int tx = (int) floorf(x + currentTransform()->getTranslateX() + 0.5f); |
| 2999 | int ty = (int) floorf(y + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 3000 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 3001 | layer->setFilter(GL_NEAREST); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3002 | setupDrawModelView(kModelViewMode_Translate, false, tx, ty, |
Romain Guy | 4ff0cf4 | 2012-08-06 14:51:10 -0700 | [diff] [blame] | 3003 | tx + layer->layer.getWidth(), ty + layer->layer.getHeight(), true); |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 3004 | } else { |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 3005 | layer->setFilter(GL_LINEAR); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3006 | setupDrawModelView(kModelViewMode_Translate, false, x, y, |
Romain Guy | 9ace8f5 | 2011-07-07 20:50:11 -0700 | [diff] [blame] | 3007 | x + layer->layer.getWidth(), y + layer->layer.getHeight()); |
| 3008 | } |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 3009 | |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 3010 | TextureVertex* mesh = &layer->mesh[0]; |
| 3011 | GLsizei elementsCount = layer->meshElementCount; |
| 3012 | |
| 3013 | while (elementsCount > 0) { |
| 3014 | GLsizei drawCount = min(elementsCount, (GLsizei) gMaxNumberOfQuads * 6); |
| 3015 | |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 3016 | setupDrawMeshIndices(&mesh[0].x, &mesh[0].u); |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 3017 | DRAW_DOUBLE_STENCIL_IF(!layer->hasDrawnSinceUpdate, |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3018 | glDrawElements(GL_TRIANGLES, drawCount, GL_UNSIGNED_SHORT, nullptr)); |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 3019 | |
| 3020 | elementsCount -= drawCount; |
| 3021 | // Though there are 4 vertices in a quad, we use 6 indices per |
| 3022 | // quad to draw with GL_TRIANGLES |
| 3023 | mesh += (drawCount / 6) * 4; |
| 3024 | } |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 3025 | |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 3026 | #if DEBUG_LAYERS_AS_REGIONS |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 3027 | drawRegionRectsDebug(layer->region); |
Romain Guy | 3a3133d | 2011-02-01 22:59:58 -0800 | [diff] [blame] | 3028 | #endif |
Romain Guy | c88e357 | 2011-01-22 00:32:12 -0800 | [diff] [blame] | 3029 | } |
Romain Guy | 4ff0cf4 | 2012-08-06 14:51:10 -0700 | [diff] [blame] | 3030 | |
Romain Guy | 5bb3c73 | 2012-11-29 17:52:58 -0800 | [diff] [blame] | 3031 | if (layer->debugDrawUpdate) { |
| 3032 | layer->debugDrawUpdate = false; |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3033 | |
| 3034 | SkPaint paint; |
| 3035 | paint.setColor(0x7f00ff00); |
| 3036 | drawColorRect(x, y, x + layer->layer.getWidth(), y + layer->layer.getHeight(), &paint); |
Romain Guy | 4ff0cf4 | 2012-08-06 14:51:10 -0700 | [diff] [blame] | 3037 | } |
Romain Guy | f219da5 | 2011-01-16 12:54:25 -0800 | [diff] [blame] | 3038 | } |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 3039 | layer->hasDrawnSinceUpdate = true; |
Chet Haase | 4865909 | 2012-05-31 15:21:51 -0700 | [diff] [blame] | 3040 | |
Romain Guy | b2e2f24 | 2012-10-17 18:18:35 -0700 | [diff] [blame] | 3041 | if (transform && !transform->isIdentity()) { |
| 3042 | restore(); |
| 3043 | } |
| 3044 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3045 | mDirty = true; |
Romain Guy | 6c319ca | 2011-01-11 14:29:25 -0800 | [diff] [blame] | 3046 | } |
| 3047 | |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 3048 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 5ff9df6 | 2012-01-23 17:09:05 -0800 | [diff] [blame] | 3049 | // Draw filters |
| 3050 | /////////////////////////////////////////////////////////////////////////////// |
Derek Sollenberger | 09c2d4f | 2014-10-15 09:21:10 -0400 | [diff] [blame] | 3051 | void OpenGLRenderer::setDrawFilter(SkDrawFilter* filter) { |
| 3052 | // We should never get here since we apply the draw filter when stashing |
| 3053 | // the paints in the DisplayList. |
| 3054 | LOG_ALWAYS_FATAL("OpenGLRenderer does not directly support DrawFilters"); |
Romain Guy | 5ff9df6 | 2012-01-23 17:09:05 -0800 | [diff] [blame] | 3055 | } |
| 3056 | |
| 3057 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 3058 | // Drawing implementation |
| 3059 | /////////////////////////////////////////////////////////////////////////////// |
| 3060 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 3061 | Texture* OpenGLRenderer::getTexture(const SkBitmap* bitmap) { |
John Reck | ebd5261 | 2014-12-10 16:47:36 -0800 | [diff] [blame] | 3062 | Texture* texture = mRenderState.assetAtlas().getEntryTexture(bitmap); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3063 | if (!texture) { |
| 3064 | return mCaches.textureCache.get(bitmap); |
| 3065 | } |
| 3066 | return texture; |
| 3067 | } |
| 3068 | |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 3069 | void OpenGLRenderer::drawPathTexture(const PathTexture* texture, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 3070 | float x, float y, const SkPaint* paint) { |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 3071 | if (quickRejectSetupScissor(x, y, x + texture->width, y + texture->height)) { |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 3072 | return; |
| 3073 | } |
| 3074 | |
| 3075 | int alpha; |
| 3076 | SkXfermode::Mode mode; |
| 3077 | getAlphaAndMode(paint, &alpha, &mode); |
| 3078 | |
| 3079 | setupDraw(); |
| 3080 | setupDrawWithTexture(true); |
| 3081 | setupDrawAlpha8Color(paint->getColor(), alpha); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3082 | setupDrawColorFilter(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3083 | setupDrawShader(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3084 | setupDrawBlending(paint, true); |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 3085 | setupDrawProgram(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3086 | setupDrawModelView(kModelViewMode_TranslateAndScale, false, |
| 3087 | x, y, x + texture->width, y + texture->height); |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 3088 | setupDrawTexture(texture->id); |
| 3089 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3090 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3091 | setupDrawShaderUniforms(getShader(paint)); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3092 | setupDrawMesh(nullptr, (GLvoid*) gMeshTextureOffset); |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 3093 | |
| 3094 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 3095 | } |
| 3096 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 3097 | // Same values used by Skia |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3098 | #define kStdStrikeThru_Offset (-6.0f / 21.0f) |
| 3099 | #define kStdUnderline_Offset (1.0f / 9.0f) |
| 3100 | #define kStdUnderline_Thickness (1.0f / 18.0f) |
| 3101 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 3102 | void OpenGLRenderer::drawTextDecorations(float underlineWidth, float x, float y, |
| 3103 | const SkPaint* paint) { |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3104 | // Handle underline and strike-through |
| 3105 | uint32_t flags = paint->getFlags(); |
| 3106 | if (flags & (SkPaint::kUnderlineText_Flag | SkPaint::kStrikeThruText_Flag)) { |
Romain Guy | 726aeba | 2011-06-01 14:52:00 -0700 | [diff] [blame] | 3107 | SkPaint paintCopy(*paint); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3108 | |
Romain Guy | 211370f | 2012-02-01 16:10:55 -0800 | [diff] [blame] | 3109 | if (CC_LIKELY(underlineWidth > 0.0f)) { |
Romain Guy | 726aeba | 2011-06-01 14:52:00 -0700 | [diff] [blame] | 3110 | const float textSize = paintCopy.getTextSize(); |
Romain Guy | f683447 | 2011-01-23 13:32:12 -0800 | [diff] [blame] | 3111 | const float strokeWidth = fmax(textSize * kStdUnderline_Thickness, 1.0f); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3112 | |
Raph Levien | 8b4072d | 2012-07-30 15:50:00 -0700 | [diff] [blame] | 3113 | const float left = x; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3114 | float top = 0.0f; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 3115 | |
Romain Guy | f683447 | 2011-01-23 13:32:12 -0800 | [diff] [blame] | 3116 | int linesCount = 0; |
| 3117 | if (flags & SkPaint::kUnderlineText_Flag) linesCount++; |
| 3118 | if (flags & SkPaint::kStrikeThruText_Flag) linesCount++; |
| 3119 | |
| 3120 | const int pointsCount = 4 * linesCount; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 3121 | float points[pointsCount]; |
| 3122 | int currentPoint = 0; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3123 | |
| 3124 | if (flags & SkPaint::kUnderlineText_Flag) { |
| 3125 | top = y + textSize * kStdUnderline_Offset; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 3126 | points[currentPoint++] = left; |
| 3127 | points[currentPoint++] = top; |
| 3128 | points[currentPoint++] = left + underlineWidth; |
| 3129 | points[currentPoint++] = top; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3130 | } |
| 3131 | |
| 3132 | if (flags & SkPaint::kStrikeThruText_Flag) { |
| 3133 | top = y + textSize * kStdStrikeThru_Offset; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 3134 | points[currentPoint++] = left; |
| 3135 | points[currentPoint++] = top; |
| 3136 | points[currentPoint++] = left + underlineWidth; |
| 3137 | points[currentPoint++] = top; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3138 | } |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 3139 | |
Romain Guy | 726aeba | 2011-06-01 14:52:00 -0700 | [diff] [blame] | 3140 | paintCopy.setStrokeWidth(strokeWidth); |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 3141 | |
Romain Guy | 726aeba | 2011-06-01 14:52:00 -0700 | [diff] [blame] | 3142 | drawLines(&points[0], pointsCount, &paintCopy); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 3143 | } |
| 3144 | } |
| 3145 | } |
| 3146 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3147 | void OpenGLRenderer::drawRects(const float* rects, int count, const SkPaint* paint) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 3148 | if (mState.currentlyIgnored()) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3149 | return; |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3150 | } |
| 3151 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3152 | drawColorRects(rects, count, paint, false, true, true); |
Romain Guy | 735738c | 2012-12-03 12:34:51 -0800 | [diff] [blame] | 3153 | } |
| 3154 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3155 | void OpenGLRenderer::drawShadow(float casterAlpha, |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 3156 | const VertexBuffer* ambientShadowVertexBuffer, const VertexBuffer* spotShadowVertexBuffer) { |
Tom Hudson | 984162f | 2014-10-10 13:38:16 -0400 | [diff] [blame] | 3157 | if (mState.currentlyIgnored()) return; |
Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 3158 | |
Chris Craik | 15a07a2 | 2014-01-26 13:43:53 -0800 | [diff] [blame] | 3159 | // TODO: use quickRejectWithScissor. For now, always force enable scissor. |
Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 3160 | mCaches.enableScissor(); |
| 3161 | |
| 3162 | SkPaint paint; |
Chris Craik | ba9b613 | 2013-12-15 17:10:19 -0800 | [diff] [blame] | 3163 | paint.setAntiAlias(true); // want to use AlphaVertex |
Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 3164 | |
ztenghui | 14a4e35 | 2014-08-13 10:44:39 -0700 | [diff] [blame] | 3165 | // The caller has made sure casterAlpha > 0. |
| 3166 | float ambientShadowAlpha = mAmbientShadowAlpha; |
| 3167 | if (CC_UNLIKELY(mCaches.propertyAmbientShadowStrength >= 0)) { |
| 3168 | ambientShadowAlpha = mCaches.propertyAmbientShadowStrength; |
| 3169 | } |
| 3170 | if (ambientShadowVertexBuffer && ambientShadowAlpha > 0) { |
| 3171 | paint.setARGB(casterAlpha * ambientShadowAlpha, 0, 0, 0); |
Chris Craik | 91a8c7c | 2014-08-12 14:31:35 -0700 | [diff] [blame] | 3172 | drawVertexBuffer(*ambientShadowVertexBuffer, &paint, kVertexBuffer_ShadowInterp); |
ztenghui | ef94c6f | 2014-02-13 17:09:45 -0800 | [diff] [blame] | 3173 | } |
ztenghui | 7b4516e | 2014-01-07 10:42:55 -0800 | [diff] [blame] | 3174 | |
ztenghui | 14a4e35 | 2014-08-13 10:44:39 -0700 | [diff] [blame] | 3175 | float spotShadowAlpha = mSpotShadowAlpha; |
| 3176 | if (CC_UNLIKELY(mCaches.propertySpotShadowStrength >= 0)) { |
| 3177 | spotShadowAlpha = mCaches.propertySpotShadowStrength; |
| 3178 | } |
| 3179 | if (spotShadowVertexBuffer && spotShadowAlpha > 0) { |
| 3180 | paint.setARGB(casterAlpha * spotShadowAlpha, 0, 0, 0); |
Chris Craik | 91a8c7c | 2014-08-12 14:31:35 -0700 | [diff] [blame] | 3181 | drawVertexBuffer(*spotShadowVertexBuffer, &paint, kVertexBuffer_ShadowInterp); |
ztenghui | ef94c6f | 2014-02-13 17:09:45 -0800 | [diff] [blame] | 3182 | } |
ztenghui | 7b4516e | 2014-01-07 10:42:55 -0800 | [diff] [blame] | 3183 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3184 | mDirty=true; |
Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 3185 | } |
| 3186 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3187 | void OpenGLRenderer::drawColorRects(const float* rects, int count, const SkPaint* paint, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3188 | bool ignoreTransform, bool dirty, bool clip) { |
Romain Guy | 3b75382 | 2013-03-05 10:27:35 -0800 | [diff] [blame] | 3189 | if (count == 0) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3190 | return; |
Romain Guy | 3b75382 | 2013-03-05 10:27:35 -0800 | [diff] [blame] | 3191 | } |
Romain Guy | 735738c | 2012-12-03 12:34:51 -0800 | [diff] [blame] | 3192 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3193 | int color = paint->getColor(); |
| 3194 | // If a shader is set, preserve only the alpha |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3195 | if (getShader(paint)) { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3196 | color |= 0x00ffffff; |
| 3197 | } |
| 3198 | |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3199 | float left = FLT_MAX; |
| 3200 | float top = FLT_MAX; |
| 3201 | float right = FLT_MIN; |
| 3202 | float bottom = FLT_MIN; |
| 3203 | |
Romain Guy | 448455f | 2013-07-22 13:57:50 -0700 | [diff] [blame] | 3204 | Vertex mesh[count]; |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3205 | Vertex* vertex = mesh; |
| 3206 | |
Chris Craik | 2af4635 | 2012-11-26 18:30:17 -0800 | [diff] [blame] | 3207 | for (int index = 0; index < count; index += 4) { |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3208 | float l = rects[index + 0]; |
| 3209 | float t = rects[index + 1]; |
| 3210 | float r = rects[index + 2]; |
| 3211 | float b = rects[index + 3]; |
| 3212 | |
Romain Guy | 3b75382 | 2013-03-05 10:27:35 -0800 | [diff] [blame] | 3213 | Vertex::set(vertex++, l, t); |
| 3214 | Vertex::set(vertex++, r, t); |
| 3215 | Vertex::set(vertex++, l, b); |
Romain Guy | 3b75382 | 2013-03-05 10:27:35 -0800 | [diff] [blame] | 3216 | Vertex::set(vertex++, r, b); |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3217 | |
Romain Guy | 3b75382 | 2013-03-05 10:27:35 -0800 | [diff] [blame] | 3218 | left = fminf(left, l); |
| 3219 | top = fminf(top, t); |
| 3220 | right = fmaxf(right, r); |
| 3221 | bottom = fmaxf(bottom, b); |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3222 | } |
| 3223 | |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 3224 | if (clip && quickRejectSetupScissor(left, top, right, bottom)) { |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3225 | return; |
Romain Guy | a362c69 | 2013-02-04 13:50:16 -0800 | [diff] [blame] | 3226 | } |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3227 | |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3228 | setupDraw(); |
| 3229 | setupDrawNoTexture(); |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 3230 | setupDrawColor(color, ((color >> 24) & 0xFF) * currentSnapshot()->alpha); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3231 | setupDrawShader(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3232 | setupDrawColorFilter(getColorFilter(paint)); |
| 3233 | setupDrawBlending(paint); |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3234 | setupDrawProgram(); |
| 3235 | setupDrawDirtyRegionsDisabled(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3236 | setupDrawModelView(kModelViewMode_Translate, false, |
| 3237 | 0.0f, 0.0f, 0.0f, 0.0f, ignoreTransform); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3238 | setupDrawColorUniforms(getShader(paint)); |
| 3239 | setupDrawShaderUniforms(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3240 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3241 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 3242 | if (dirty && hasLayer()) { |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 3243 | dirtyLayer(left, top, right, bottom, *currentTransform()); |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3244 | } |
| 3245 | |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3246 | issueIndexedQuadDraw(&mesh[0], count / 4); |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3247 | |
Tom Hudson | 107843d | 2014-09-08 11:26:26 -0400 | [diff] [blame] | 3248 | mDirty = true; |
Romain Guy | 672433d | 2013-01-04 19:05:13 -0800 | [diff] [blame] | 3249 | } |
| 3250 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 3251 | void OpenGLRenderer::drawColorRect(float left, float top, float right, float bottom, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3252 | const SkPaint* paint, bool ignoreTransform) { |
| 3253 | int color = paint->getColor(); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 3254 | // If a shader is set, preserve only the alpha |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3255 | if (getShader(paint)) { |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 3256 | color |= 0x00ffffff; |
| 3257 | } |
| 3258 | |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 3259 | setupDraw(); |
Romain Guy | 15bc643 | 2011-12-13 13:11:32 -0800 | [diff] [blame] | 3260 | setupDrawNoTexture(); |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 3261 | setupDrawColor(color, ((color >> 24) & 0xFF) * currentSnapshot()->alpha); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3262 | setupDrawShader(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3263 | setupDrawColorFilter(getColorFilter(paint)); |
| 3264 | setupDrawBlending(paint); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 3265 | setupDrawProgram(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3266 | setupDrawModelView(kModelViewMode_TranslateAndScale, false, |
| 3267 | left, top, right, bottom, ignoreTransform); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3268 | setupDrawColorUniforms(getShader(paint)); |
| 3269 | setupDrawShaderUniforms(getShader(paint), ignoreTransform); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3270 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 3271 | setupDrawSimpleMesh(); |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 3272 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 3273 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
| 3274 | } |
| 3275 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 3276 | void OpenGLRenderer::drawTextureRect(float left, float top, float right, float bottom, |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 3277 | Texture* texture, const SkPaint* paint) { |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 3278 | texture->setWrap(GL_CLAMP_TO_EDGE, true); |
Romain Guy | 8164c2d | 2010-10-25 18:03:28 -0700 | [diff] [blame] | 3279 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3280 | GLvoid* vertices = (GLvoid*) nullptr; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3281 | GLvoid* texCoords = (GLvoid*) gMeshTextureOffset; |
| 3282 | |
| 3283 | if (texture->uvMapper) { |
Romain Guy | 3380cfd | 2013-08-15 16:57:57 -0700 | [diff] [blame] | 3284 | vertices = &mMeshVertices[0].x; |
| 3285 | texCoords = &mMeshVertices[0].u; |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3286 | |
| 3287 | Rect uvs(0.0f, 0.0f, 1.0f, 1.0f); |
| 3288 | texture->uvMapper->map(uvs); |
| 3289 | |
| 3290 | resetDrawTextureTexCoords(uvs.left, uvs.top, uvs.right, uvs.bottom); |
| 3291 | } |
| 3292 | |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 3293 | if (CC_LIKELY(currentTransform()->isPureTranslate())) { |
| 3294 | const float x = (int) floorf(left + currentTransform()->getTranslateX() + 0.5f); |
| 3295 | const float y = (int) floorf(top + currentTransform()->getTranslateY() + 0.5f); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 3296 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 3297 | texture->setFilter(GL_NEAREST, true); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 3298 | drawTextureMesh(x, y, x + texture->width, y + texture->height, texture->id, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3299 | paint, texture->blend, vertices, texCoords, |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3300 | GL_TRIANGLE_STRIP, gMeshCount, false, true); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 3301 | } else { |
Chris Craik | 67862524 | 2014-02-28 12:26:34 -0800 | [diff] [blame] | 3302 | texture->setFilter(getFilter(paint), true); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3303 | drawTextureMesh(left, top, right, bottom, texture->id, paint, |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3304 | texture->blend, vertices, texCoords, GL_TRIANGLE_STRIP, gMeshCount); |
| 3305 | } |
| 3306 | |
| 3307 | if (texture->uvMapper) { |
| 3308 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
Romain Guy | 6620c6d | 2010-12-06 18:07:02 -0800 | [diff] [blame] | 3309 | } |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 3310 | } |
| 3311 | |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 3312 | void OpenGLRenderer::drawTextureMesh(float left, float top, float right, float bottom, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3313 | GLuint texture, const SkPaint* paint, bool blend, |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 3314 | GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3315 | bool swapSrcDst, bool ignoreTransform, GLuint vbo, |
| 3316 | ModelViewMode modelViewMode, bool dirty) { |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 3317 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3318 | int a; |
| 3319 | SkXfermode::Mode mode; |
| 3320 | getAlphaAndMode(paint, &a, &mode); |
| 3321 | const float alpha = a / 255.0f; |
| 3322 | |
Romain Guy | 746b740 | 2010-10-26 16:27:31 -0700 | [diff] [blame] | 3323 | setupDraw(); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 3324 | setupDrawWithTexture(); |
| 3325 | setupDrawColor(alpha, alpha, alpha, alpha); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3326 | setupDrawColorFilter(getColorFilter(paint)); |
| 3327 | setupDrawBlending(paint, blend, swapSrcDst); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 3328 | setupDrawProgram(); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3329 | if (!dirty) setupDrawDirtyRegionsDisabled(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3330 | setupDrawModelView(modelViewMode, false, left, top, right, bottom, ignoreTransform); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3331 | setupDrawTexture(texture); |
Romain Guy | 8656819 | 2010-12-14 15:55:39 -0800 | [diff] [blame] | 3332 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3333 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Romain Guy | 70ca14e | 2010-12-13 18:24:33 -0800 | [diff] [blame] | 3334 | setupDrawMesh(vertices, texCoords, vbo); |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 3335 | |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 3336 | glDrawArrays(drawMode, 0, elementsCount); |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 3337 | } |
| 3338 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3339 | void OpenGLRenderer::drawIndexedTextureMesh(float left, float top, float right, float bottom, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3340 | GLuint texture, const SkPaint* paint, bool blend, |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3341 | GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3342 | bool swapSrcDst, bool ignoreTransform, GLuint vbo, |
| 3343 | ModelViewMode modelViewMode, bool dirty) { |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3344 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3345 | int a; |
| 3346 | SkXfermode::Mode mode; |
| 3347 | getAlphaAndMode(paint, &a, &mode); |
| 3348 | const float alpha = a / 255.0f; |
| 3349 | |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3350 | setupDraw(); |
| 3351 | setupDrawWithTexture(); |
| 3352 | setupDrawColor(alpha, alpha, alpha, alpha); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3353 | setupDrawColorFilter(getColorFilter(paint)); |
| 3354 | setupDrawBlending(paint, blend, swapSrcDst); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3355 | setupDrawProgram(); |
| 3356 | if (!dirty) setupDrawDirtyRegionsDisabled(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3357 | setupDrawModelView(modelViewMode, false, left, top, right, bottom, ignoreTransform); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3358 | setupDrawTexture(texture); |
| 3359 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3360 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3361 | setupDrawMeshIndices(vertices, texCoords, vbo); |
| 3362 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3363 | glDrawElements(drawMode, elementsCount, GL_UNSIGNED_SHORT, nullptr); |
Romain Guy | 3b748a4 | 2013-04-17 18:54:38 -0700 | [diff] [blame] | 3364 | } |
| 3365 | |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3366 | void OpenGLRenderer::drawAlpha8TextureMesh(float left, float top, float right, float bottom, |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3367 | GLuint texture, const SkPaint* paint, |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3368 | GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3369 | bool ignoreTransform, ModelViewMode modelViewMode, bool dirty) { |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3370 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3371 | int color = paint != nullptr ? paint->getColor() : 0; |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3372 | int alpha; |
| 3373 | SkXfermode::Mode mode; |
| 3374 | getAlphaAndMode(paint, &alpha, &mode); |
| 3375 | |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3376 | setupDraw(); |
| 3377 | setupDrawWithTexture(true); |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3378 | if (paint != nullptr) { |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3379 | setupDrawAlpha8Color(color, alpha); |
| 3380 | } |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3381 | setupDrawColorFilter(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3382 | setupDrawShader(getShader(paint)); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3383 | setupDrawBlending(paint, true); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3384 | setupDrawProgram(); |
| 3385 | if (!dirty) setupDrawDirtyRegionsDisabled(); |
Chris Craik | 4063a0e | 2013-11-15 16:06:56 -0800 | [diff] [blame] | 3386 | setupDrawModelView(modelViewMode, false, left, top, right, bottom, ignoreTransform); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3387 | setupDrawTexture(texture); |
| 3388 | setupDrawPureColorUniforms(); |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3389 | setupDrawColorFilterUniforms(getColorFilter(paint)); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 3390 | setupDrawShaderUniforms(getShader(paint), ignoreTransform); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3391 | setupDrawMesh(vertices, texCoords); |
| 3392 | |
| 3393 | glDrawArrays(drawMode, 0, elementsCount); |
Romain Guy | 886b275 | 2013-01-04 12:26:18 -0800 | [diff] [blame] | 3394 | } |
| 3395 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 3396 | void OpenGLRenderer::chooseBlending(bool blend, SkXfermode::Mode mode, |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 3397 | ProgramDescription& description, bool swapSrcDst) { |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 3398 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3399 | if (writableSnapshot()->roundRectClipState != nullptr /*&& !mSkipOutlineClip*/) { |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 3400 | blend = true; |
| 3401 | mDescription.hasRoundRectClip = true; |
| 3402 | } |
| 3403 | mSkipOutlineClip = true; |
| 3404 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 3405 | blend = blend || mode != SkXfermode::kSrcOver_Mode; |
Romain Guy | c189ef5 | 2012-04-25 20:02:53 -0700 | [diff] [blame] | 3406 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 3407 | if (blend) { |
Romain Guy | 82bc7a7 | 2012-01-03 14:13:39 -0800 | [diff] [blame] | 3408 | // These blend modes are not supported by OpenGL directly and have |
| 3409 | // to be implemented using shaders. Since the shader will perform |
| 3410 | // the blending, turn blending off here |
| 3411 | // If the blend mode cannot be implemented using shaders, fall |
| 3412 | // back to the default SrcOver blend mode instead |
Romain Guy | 33fa1f7 | 2012-08-07 19:09:57 -0700 | [diff] [blame] | 3413 | if (CC_UNLIKELY(mode > SkXfermode::kScreen_Mode)) { |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 3414 | if (CC_UNLIKELY(mExtensions.hasFramebufferFetch())) { |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 3415 | description.framebufferMode = mode; |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 3416 | description.swapSrcDst = swapSrcDst; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 3417 | |
Romain Guy | 82bc7a7 | 2012-01-03 14:13:39 -0800 | [diff] [blame] | 3418 | if (mCaches.blend) { |
| 3419 | glDisable(GL_BLEND); |
| 3420 | mCaches.blend = false; |
| 3421 | } |
| 3422 | |
| 3423 | return; |
| 3424 | } else { |
| 3425 | mode = SkXfermode::kSrcOver_Mode; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 3426 | } |
Romain Guy | 82bc7a7 | 2012-01-03 14:13:39 -0800 | [diff] [blame] | 3427 | } |
| 3428 | |
| 3429 | if (!mCaches.blend) { |
| 3430 | glEnable(GL_BLEND); |
| 3431 | } |
| 3432 | |
| 3433 | GLenum sourceMode = swapSrcDst ? gBlendsSwap[mode].src : gBlends[mode].src; |
| 3434 | GLenum destMode = swapSrcDst ? gBlendsSwap[mode].dst : gBlends[mode].dst; |
| 3435 | |
| 3436 | if (sourceMode != mCaches.lastSrcMode || destMode != mCaches.lastDstMode) { |
| 3437 | glBlendFunc(sourceMode, destMode); |
| 3438 | mCaches.lastSrcMode = sourceMode; |
| 3439 | mCaches.lastDstMode = destMode; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 3440 | } |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 3441 | } else if (mCaches.blend) { |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 3442 | glDisable(GL_BLEND); |
| 3443 | } |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 3444 | mCaches.blend = blend; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 3445 | } |
| 3446 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 3447 | bool OpenGLRenderer::useProgram(Program* program) { |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 3448 | if (!program->isInUse()) { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3449 | if (mCaches.currentProgram != nullptr) mCaches.currentProgram->remove(); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 3450 | program->use(); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 3451 | mCaches.currentProgram = program; |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 3452 | return false; |
Romain Guy | 260e102 | 2010-07-12 14:41:06 -0700 | [diff] [blame] | 3453 | } |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 3454 | return true; |
Romain Guy | 260e102 | 2010-07-12 14:41:06 -0700 | [diff] [blame] | 3455 | } |
| 3456 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 3457 | void OpenGLRenderer::resetDrawTextureTexCoords(float u1, float v1, float u2, float v2) { |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 3458 | TextureVertex* v = &mMeshVertices[0]; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 3459 | TextureVertex::setUV(v++, u1, v1); |
| 3460 | TextureVertex::setUV(v++, u2, v1); |
| 3461 | TextureVertex::setUV(v++, u1, v2); |
| 3462 | TextureVertex::setUV(v++, u2, v2); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 3463 | } |
| 3464 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 3465 | void OpenGLRenderer::getAlphaAndMode(const SkPaint* paint, int* alpha, |
| 3466 | SkXfermode::Mode* mode) const { |
Romain Guy | be6f9dc | 2012-07-16 12:41:17 -0700 | [diff] [blame] | 3467 | getAlphaAndModeDirect(paint, alpha, mode); |
Chris Craik | 16ecda5 | 2013-03-29 10:59:59 -0700 | [diff] [blame] | 3468 | if (mDrawModifiers.mOverrideLayerAlpha < 1.0f) { |
| 3469 | // if drawing a layer, ignore the paint's alpha |
Romain Guy | 87b515c | 2013-05-03 17:42:27 -0700 | [diff] [blame] | 3470 | *alpha = mDrawModifiers.mOverrideLayerAlpha * 255; |
Chris Craik | 16ecda5 | 2013-03-29 10:59:59 -0700 | [diff] [blame] | 3471 | } |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 3472 | *alpha *= currentSnapshot()->alpha; |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 3473 | } |
| 3474 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 3475 | float OpenGLRenderer::getLayerAlpha(const Layer* layer) const { |
Chris Craik | 16ecda5 | 2013-03-29 10:59:59 -0700 | [diff] [blame] | 3476 | float alpha; |
| 3477 | if (mDrawModifiers.mOverrideLayerAlpha < 1.0f) { |
| 3478 | alpha = mDrawModifiers.mOverrideLayerAlpha; |
| 3479 | } else { |
| 3480 | alpha = layer->getAlpha() / 255.0f; |
| 3481 | } |
Chris Craik | d6b65f6 | 2014-01-01 14:45:21 -0800 | [diff] [blame] | 3482 | return alpha * currentSnapshot()->alpha; |
Chris Craik | 16ecda5 | 2013-03-29 10:59:59 -0700 | [diff] [blame] | 3483 | } |
| 3484 | |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 3485 | }; // namespace uirenderer |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 3486 | }; // namespace android |