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> |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 24 | #include <SkTypeface.h> |
Romain Guy | 5cbbce5 | 2010-06-27 22:59:20 -0700 | [diff] [blame] | 25 | |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 26 | #include <utils/Log.h> |
Romain Guy | e2d345e | 2010-09-24 18:39:22 -0700 | [diff] [blame] | 27 | #include <utils/StopWatch.h> |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 28 | |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 29 | #include "OpenGLRenderer.h" |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 30 | |
| 31 | namespace android { |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 32 | namespace uirenderer { |
| 33 | |
| 34 | /////////////////////////////////////////////////////////////////////////////// |
| 35 | // Defines |
| 36 | /////////////////////////////////////////////////////////////////////////////// |
| 37 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 38 | #define REQUIRED_TEXTURE_UNITS_COUNT 3 |
| 39 | |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 40 | // Generates simple and textured vertices |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 41 | #define FV(x, y, u, v) { { x, y }, { u, v } } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 42 | |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 43 | #define RAD_TO_DEG (180.0f / 3.14159265f) |
| 44 | #define MIN_ANGLE 0.001f |
| 45 | |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 46 | // TODO: This should be set in properties |
| 47 | #define ALPHA_THRESHOLD (0x7f / PANEL_BIT_DEPTH) |
| 48 | |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 49 | /////////////////////////////////////////////////////////////////////////////// |
| 50 | // Globals |
| 51 | /////////////////////////////////////////////////////////////////////////////// |
| 52 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 53 | // This array is never used directly but used as a memcpy source in the |
| 54 | // OpenGLRenderer constructor |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 55 | static const TextureVertex gMeshVertices[] = { |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 56 | FV(0.0f, 0.0f, 0.0f, 0.0f), |
| 57 | FV(1.0f, 0.0f, 1.0f, 0.0f), |
| 58 | FV(0.0f, 1.0f, 0.0f, 1.0f), |
| 59 | FV(1.0f, 1.0f, 1.0f, 1.0f) |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 60 | }; |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 61 | static const GLsizei gMeshStride = sizeof(TextureVertex); |
| 62 | static const GLsizei gMeshCount = 4; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 63 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 64 | /** |
| 65 | * Structure mapping Skia xfermodes to OpenGL blending factors. |
| 66 | */ |
| 67 | struct Blender { |
| 68 | SkXfermode::Mode mode; |
| 69 | GLenum src; |
| 70 | GLenum dst; |
| 71 | }; // struct Blender |
| 72 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 73 | // In this array, the index of each Blender equals the value of the first |
| 74 | // entry. For instance, gBlends[1] == gBlends[SkXfermode::kSrc_Mode] |
| 75 | static const Blender gBlends[] = { |
| 76 | { SkXfermode::kClear_Mode, GL_ZERO, GL_ZERO }, |
| 77 | { SkXfermode::kSrc_Mode, GL_ONE, GL_ZERO }, |
| 78 | { SkXfermode::kDst_Mode, GL_ZERO, GL_ONE }, |
| 79 | { SkXfermode::kSrcOver_Mode, GL_ONE, GL_ONE_MINUS_SRC_ALPHA }, |
| 80 | { SkXfermode::kDstOver_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE }, |
| 81 | { SkXfermode::kSrcIn_Mode, GL_DST_ALPHA, GL_ZERO }, |
| 82 | { SkXfermode::kDstIn_Mode, GL_ZERO, GL_SRC_ALPHA }, |
| 83 | { SkXfermode::kSrcOut_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ZERO }, |
| 84 | { SkXfermode::kDstOut_Mode, GL_ZERO, GL_ONE_MINUS_SRC_ALPHA }, |
| 85 | { SkXfermode::kSrcATop_Mode, GL_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA }, |
| 86 | { SkXfermode::kDstATop_Mode, GL_ONE_MINUS_DST_ALPHA, GL_SRC_ALPHA }, |
| 87 | { SkXfermode::kXor_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA } |
| 88 | }; |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 89 | |
Romain Guy | 87a7657 | 2010-09-13 18:11:21 -0700 | [diff] [blame] | 90 | // This array contains the swapped version of each SkXfermode. For instance |
| 91 | // this array's SrcOver blending mode is actually DstOver. You can refer to |
| 92 | // createLayer() for more information on the purpose of this array. |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 93 | static const Blender gBlendsSwap[] = { |
| 94 | { SkXfermode::kClear_Mode, GL_ZERO, GL_ZERO }, |
| 95 | { SkXfermode::kSrc_Mode, GL_ZERO, GL_ONE }, |
| 96 | { SkXfermode::kDst_Mode, GL_ONE, GL_ZERO }, |
| 97 | { SkXfermode::kSrcOver_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE }, |
| 98 | { SkXfermode::kDstOver_Mode, GL_ONE, GL_ONE_MINUS_SRC_ALPHA }, |
| 99 | { SkXfermode::kSrcIn_Mode, GL_ZERO, GL_SRC_ALPHA }, |
| 100 | { SkXfermode::kDstIn_Mode, GL_DST_ALPHA, GL_ZERO }, |
| 101 | { SkXfermode::kSrcOut_Mode, GL_ZERO, GL_ONE_MINUS_SRC_ALPHA }, |
| 102 | { SkXfermode::kDstOut_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ZERO }, |
| 103 | { SkXfermode::kSrcATop_Mode, GL_ONE_MINUS_DST_ALPHA, GL_SRC_ALPHA }, |
| 104 | { SkXfermode::kDstATop_Mode, GL_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA }, |
| 105 | { SkXfermode::kXor_Mode, GL_ONE_MINUS_DST_ALPHA, GL_ONE_MINUS_SRC_ALPHA } |
| 106 | }; |
| 107 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 108 | static const GLenum gTextureUnits[] = { |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 109 | GL_TEXTURE0, |
| 110 | GL_TEXTURE1, |
| 111 | GL_TEXTURE2 |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 112 | }; |
| 113 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 114 | /////////////////////////////////////////////////////////////////////////////// |
| 115 | // Constructors/destructor |
| 116 | /////////////////////////////////////////////////////////////////////////////// |
| 117 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 118 | OpenGLRenderer::OpenGLRenderer(): mCaches(Caches::getInstance()) { |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 119 | mShader = NULL; |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 120 | mColorFilter = NULL; |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 121 | mHasShadow = false; |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 122 | |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 123 | memcpy(mMeshVertices, gMeshVertices, sizeof(gMeshVertices)); |
| 124 | |
Romain Guy | ae5575b | 2010-07-29 18:48:04 -0700 | [diff] [blame] | 125 | mFirstSnapshot = new Snapshot; |
| 126 | |
| 127 | GLint maxTextureUnits; |
| 128 | glGetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxTextureUnits); |
| 129 | if (maxTextureUnits < REQUIRED_TEXTURE_UNITS_COUNT) { |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 130 | LOGW("At least %d texture units are required!", REQUIRED_TEXTURE_UNITS_COUNT); |
| 131 | } |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 132 | |
| 133 | glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 136 | OpenGLRenderer::~OpenGLRenderer() { |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 137 | // The context has already been destroyed at this point, do not call |
| 138 | // GL APIs. All GL state should be kept in Caches.h |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 141 | /////////////////////////////////////////////////////////////////////////////// |
| 142 | // Setup |
| 143 | /////////////////////////////////////////////////////////////////////////////// |
| 144 | |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 145 | void OpenGLRenderer::setViewport(int width, int height) { |
Romain Guy | 08ae317 | 2010-06-21 19:35:50 -0700 | [diff] [blame] | 146 | glViewport(0, 0, width, height); |
Romain Guy | 260e102 | 2010-07-12 14:41:06 -0700 | [diff] [blame] | 147 | mOrthoMatrix.loadOrtho(0, width, height, 0, -1, 1); |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 148 | |
| 149 | mWidth = width; |
| 150 | mHeight = height; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 151 | |
| 152 | mFirstSnapshot->height = height; |
| 153 | mFirstSnapshot->viewport.set(0, 0, width, height); |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Romain Guy | 6b7bd24 | 2010-10-06 19:49:23 -0700 | [diff] [blame] | 156 | void OpenGLRenderer::prepare(bool opaque) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 157 | mSnapshot = new Snapshot(mFirstSnapshot, |
| 158 | SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag); |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 159 | mSaveCount = 1; |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 160 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 161 | glViewport(0, 0, mWidth, mHeight); |
| 162 | |
Romain Guy | d90f23e | 2010-09-09 11:47:54 -0700 | [diff] [blame] | 163 | glDisable(GL_DITHER); |
Romain Guy | 08ae317 | 2010-06-21 19:35:50 -0700 | [diff] [blame] | 164 | glDisable(GL_SCISSOR_TEST); |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 165 | |
Romain Guy | 6b7bd24 | 2010-10-06 19:49:23 -0700 | [diff] [blame] | 166 | if (!opaque) { |
| 167 | glClearColor(0.0f, 0.0f, 0.0f, 0.0f); |
| 168 | glClear(GL_COLOR_BUFFER_BIT); |
| 169 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 170 | |
Romain Guy | 08ae317 | 2010-06-21 19:35:50 -0700 | [diff] [blame] | 171 | glEnable(GL_SCISSOR_TEST); |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 172 | glScissor(0, 0, mWidth, mHeight); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 173 | |
Romain Guy | b82da65 | 2010-07-30 11:36:12 -0700 | [diff] [blame] | 174 | mSnapshot->setClip(0.0f, 0.0f, mWidth, mHeight); |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 177 | void OpenGLRenderer::finish() { |
| 178 | #if DEBUG_OPENGL |
| 179 | GLenum status = GL_NO_ERROR; |
| 180 | while ((status = glGetError()) != GL_NO_ERROR) { |
| 181 | LOGD("GL error from OpenGLRenderer: 0x%x", status); |
| 182 | } |
| 183 | #endif |
| 184 | } |
| 185 | |
Romain Guy | da8532c | 2010-08-31 11:50:35 -0700 | [diff] [blame] | 186 | void OpenGLRenderer::acquireContext() { |
| 187 | if (mCaches.currentProgram) { |
| 188 | if (mCaches.currentProgram->isInUse()) { |
| 189 | mCaches.currentProgram->remove(); |
| 190 | mCaches.currentProgram = NULL; |
| 191 | } |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | void OpenGLRenderer::releaseContext() { |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 196 | glViewport(0, 0, mSnapshot->viewport.getWidth(), mSnapshot->viewport.getHeight()); |
Romain Guy | da8532c | 2010-08-31 11:50:35 -0700 | [diff] [blame] | 197 | |
| 198 | glEnable(GL_SCISSOR_TEST); |
| 199 | setScissorFromClip(); |
| 200 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 201 | glDisable(GL_DITHER); |
| 202 | |
| 203 | glBindFramebuffer(GL_FRAMEBUFFER, 0); |
| 204 | |
Romain Guy | da8532c | 2010-08-31 11:50:35 -0700 | [diff] [blame] | 205 | if (mCaches.blend) { |
| 206 | glEnable(GL_BLEND); |
| 207 | glBlendFunc(mCaches.lastSrcMode, mCaches.lastDstMode); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 208 | glBlendEquation(GL_FUNC_ADD); |
Romain Guy | da8532c | 2010-08-31 11:50:35 -0700 | [diff] [blame] | 209 | } else { |
| 210 | glDisable(GL_BLEND); |
| 211 | } |
| 212 | } |
| 213 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 214 | /////////////////////////////////////////////////////////////////////////////// |
| 215 | // State management |
| 216 | /////////////////////////////////////////////////////////////////////////////// |
| 217 | |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 218 | int OpenGLRenderer::getSaveCount() const { |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 219 | return mSaveCount; |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | int OpenGLRenderer::save(int flags) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 223 | return saveSnapshot(flags); |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | void OpenGLRenderer::restore() { |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 227 | if (mSaveCount > 1) { |
| 228 | restoreSnapshot(); |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 229 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | void OpenGLRenderer::restoreToCount(int saveCount) { |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 233 | if (saveCount < 1) saveCount = 1; |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 234 | |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 235 | while (mSaveCount > saveCount) { |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 236 | restoreSnapshot(); |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 237 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 240 | int OpenGLRenderer::saveSnapshot(int flags) { |
| 241 | mSnapshot = new Snapshot(mSnapshot, flags); |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 242 | return mSaveCount++; |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | bool OpenGLRenderer::restoreSnapshot() { |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 246 | bool restoreClip = mSnapshot->flags & Snapshot::kFlagClipSet; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 247 | bool restoreLayer = mSnapshot->flags & Snapshot::kFlagIsLayer; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 248 | bool restoreOrtho = mSnapshot->flags & Snapshot::kFlagDirtyOrtho; |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 249 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 250 | sp<Snapshot> current = mSnapshot; |
| 251 | sp<Snapshot> previous = mSnapshot->previous; |
| 252 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 253 | if (restoreOrtho) { |
| 254 | Rect& r = previous->viewport; |
| 255 | glViewport(r.left, r.top, r.right, r.bottom); |
| 256 | mOrthoMatrix.load(current->orthoMatrix); |
| 257 | } |
| 258 | |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 259 | mSaveCount--; |
| 260 | mSnapshot = previous; |
| 261 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 262 | if (restoreLayer) { |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 263 | composeLayer(current, previous); |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 266 | if (restoreClip) { |
| 267 | setScissorFromClip(); |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 268 | } |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 269 | |
| 270 | return restoreClip; |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 273 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 274 | // Layers |
| 275 | /////////////////////////////////////////////////////////////////////////////// |
| 276 | |
| 277 | int OpenGLRenderer::saveLayer(float left, float top, float right, float bottom, |
| 278 | const SkPaint* p, int flags) { |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 279 | const GLuint previousFbo = mSnapshot->fbo; |
| 280 | const int count = saveSnapshot(flags); |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 281 | |
| 282 | int alpha = 255; |
| 283 | SkXfermode::Mode mode; |
| 284 | |
| 285 | if (p) { |
| 286 | alpha = p->getAlpha(); |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 287 | if (!mExtensions.hasFramebufferFetch()) { |
| 288 | const bool isMode = SkXfermode::IsMode(p->getXfermode(), &mode); |
| 289 | if (!isMode) { |
| 290 | // Assume SRC_OVER |
| 291 | mode = SkXfermode::kSrcOver_Mode; |
| 292 | } |
| 293 | } else { |
| 294 | mode = getXfermode(p->getXfermode()); |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 295 | } |
| 296 | } else { |
| 297 | mode = SkXfermode::kSrcOver_Mode; |
| 298 | } |
| 299 | |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 300 | if (!mSnapshot->previous->invisible) { |
| 301 | createLayer(mSnapshot, left, top, right, bottom, alpha, mode, flags, previousFbo); |
| 302 | } |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 303 | |
| 304 | return count; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | int OpenGLRenderer::saveLayerAlpha(float left, float top, float right, float bottom, |
| 308 | int alpha, int flags) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 309 | if (alpha == 0xff) { |
| 310 | return saveLayer(left, top, right, bottom, NULL, flags); |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 311 | } else { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 312 | SkPaint paint; |
| 313 | paint.setAlpha(alpha); |
| 314 | return saveLayer(left, top, right, bottom, &paint, flags); |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 315 | } |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 316 | } |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 317 | |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 318 | /** |
| 319 | * Layers are viewed by Skia are slightly different than layers in image editing |
| 320 | * programs (for instance.) When a layer is created, previously created layers |
| 321 | * and the frame buffer still receive every drawing command. For instance, if a |
| 322 | * layer is created and a shape intersecting the bounds of the layers and the |
| 323 | * framebuffer is draw, the shape will be drawn on both (unless the layer was |
| 324 | * created with the SkCanvas::kClipToLayer_SaveFlag flag.) |
| 325 | * |
| 326 | * A way to implement layers is to create an FBO for each layer, backed by an RGBA |
| 327 | * texture. Unfortunately, this is inefficient as it requires every primitive to |
| 328 | * be drawn n + 1 times, where n is the number of active layers. In practice this |
| 329 | * means, for every primitive: |
| 330 | * - Switch active frame buffer |
| 331 | * - Change viewport, clip and projection matrix |
| 332 | * - Issue the drawing |
| 333 | * |
| 334 | * Switching rendering target n + 1 times per drawn primitive is extremely costly. |
Romain Guy | 6b7bd24 | 2010-10-06 19:49:23 -0700 | [diff] [blame] | 335 | * To avoid this, layers are implemented in a different way here, at least in the |
| 336 | * general case. FBOs are used, as an optimization, when the "clip to layer" flag |
| 337 | * is set. When this flag is set we can redirect all drawing operations into a |
| 338 | * single FBO. |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 339 | * |
| 340 | * This implementation relies on the frame buffer being at least RGBA 8888. When |
| 341 | * a layer is created, only a texture is created, not an FBO. The content of the |
| 342 | * 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] | 343 | * 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] | 344 | * buffer and drawing continues as normal. This technique therefore treats the |
| 345 | * frame buffer as a scratch buffer for the layers. |
| 346 | * |
| 347 | * To compose the layers back onto the frame buffer, each layer texture |
| 348 | * (containing the original frame buffer data) is drawn as a simple quad over |
| 349 | * the frame buffer. The trick is that the quad is set as the composition |
| 350 | * destination in the blending equation, and the frame buffer becomes the source |
| 351 | * of the composition. |
| 352 | * |
| 353 | * Drawing layers with an alpha value requires an extra step before composition. |
| 354 | * An empty quad is drawn over the layer's region in the frame buffer. This quad |
| 355 | * is drawn with the rgba color (0,0,0,alpha). The alpha value offered by the |
| 356 | * quad is used to multiply the colors in the frame buffer. This is achieved by |
| 357 | * changing the GL blend functions for the GL_FUNC_ADD blend equation to |
| 358 | * GL_ZERO, GL_SRC_ALPHA. |
| 359 | * |
| 360 | * Because glCopyTexImage2D() can be slow, an alternative implementation might |
| 361 | * be use to draw a single clipped layer. The implementation described above |
| 362 | * is correct in every case. |
Romain Guy | 87a7657 | 2010-09-13 18:11:21 -0700 | [diff] [blame] | 363 | * |
| 364 | * (1) The frame buffer is actually not cleared right away. To allow the GPU |
| 365 | * to potentially optimize series of calls to glCopyTexImage2D, the frame |
| 366 | * buffer is left untouched until the first drawing operation. Only when |
| 367 | * something actually gets drawn are the layers regions cleared. |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 368 | */ |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 369 | bool OpenGLRenderer::createLayer(sp<Snapshot> snapshot, float left, float top, |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 370 | float right, float bottom, int alpha, SkXfermode::Mode mode, |
| 371 | int flags, GLuint previousFbo) { |
| 372 | LAYER_LOGD("Requesting layer %.2fx%.2f", right - left, bottom - top); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 373 | LAYER_LOGD("Layer cache size = %d", mCaches.layerCache.getSize()); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 374 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 375 | const bool fboLayer = flags & SkCanvas::kClipToLayer_SaveFlag; |
| 376 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 377 | // Window coordinates of the layer |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 378 | Rect bounds(left, top, right, bottom); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 379 | if (!fboLayer) { |
| 380 | mSnapshot->transform->mapRect(bounds); |
| 381 | // Layers only make sense if they are in the framebuffer's bounds |
| 382 | bounds.intersect(*mSnapshot->clipRect); |
| 383 | bounds.snapToPixelBoundaries(); |
| 384 | } |
Romain Guy | bf43411 | 2010-09-16 14:40:17 -0700 | [diff] [blame] | 385 | |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 386 | if (bounds.isEmpty() || bounds.getWidth() > mMaxTextureSize || |
| 387 | bounds.getHeight() > mMaxTextureSize) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 388 | snapshot->invisible = true; |
| 389 | } else { |
| 390 | // TODO: Should take the mode into account |
| 391 | snapshot->invisible = snapshot->previous->invisible || alpha <= ALPHA_THRESHOLD; |
| 392 | } |
| 393 | |
| 394 | // Bail out if we won't draw in this snapshot |
| 395 | if (snapshot->invisible) { |
Romain Guy | b025b9c | 2010-09-16 14:16:48 -0700 | [diff] [blame] | 396 | return false; |
| 397 | } |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 398 | |
Romain Guy | 0bb5667 | 2010-10-01 00:25:02 -0700 | [diff] [blame] | 399 | glActiveTexture(GL_TEXTURE0); |
| 400 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 401 | Layer* layer = mCaches.layerCache.get(bounds.getWidth(), bounds.getHeight()); |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 402 | if (!layer) { |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 403 | return false; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 404 | } |
| 405 | |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 406 | layer->mode = mode; |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 407 | layer->alpha = alpha; |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 408 | layer->layer.set(bounds); |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 409 | layer->texCoords.set(0.0f, bounds.getHeight() / float(layer->height), |
| 410 | bounds.getWidth() / float(layer->width), 0.0f); |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 411 | |
Romain Guy | 8fb9542 | 2010-08-17 18:38:51 -0700 | [diff] [blame] | 412 | // Save the layer in the snapshot |
| 413 | snapshot->flags |= Snapshot::kFlagIsLayer; |
Romain Guy | dda57020 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 414 | snapshot->layer = layer; |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 415 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 416 | if (fboLayer) { |
| 417 | layer->fbo = mCaches.fboCache.get(); |
Romain Guy | 38c85b9 | 2010-09-22 22:48:20 -0700 | [diff] [blame] | 418 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 419 | snapshot->flags |= Snapshot::kFlagIsFboLayer; |
| 420 | snapshot->fbo = layer->fbo; |
| 421 | snapshot->resetTransform(-bounds.left, -bounds.top, 0.0f); |
| 422 | snapshot->resetClip(0.0f, 0.0f, bounds.getWidth(), bounds.getHeight()); |
| 423 | snapshot->viewport.set(0.0f, 0.0f, bounds.getWidth(), bounds.getHeight()); |
| 424 | snapshot->height = bounds.getHeight(); |
| 425 | snapshot->flags |= Snapshot::kFlagDirtyOrtho; |
| 426 | snapshot->orthoMatrix.load(mOrthoMatrix); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 427 | |
Romain Guy | 0bb5667 | 2010-10-01 00:25:02 -0700 | [diff] [blame] | 428 | setScissorFromClip(); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 429 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 430 | // Bind texture to FBO |
| 431 | glBindFramebuffer(GL_FRAMEBUFFER, layer->fbo); |
| 432 | glBindTexture(GL_TEXTURE_2D, layer->texture); |
| 433 | |
| 434 | // Initialize the texture if needed |
| 435 | if (layer->empty) { |
| 436 | layer->empty = false; |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 437 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, layer->width, layer->height, 0, |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 438 | GL_RGBA, GL_UNSIGNED_BYTE, NULL); |
| 439 | } |
| 440 | |
| 441 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, |
| 442 | layer->texture, 0); |
| 443 | |
| 444 | GLenum status = glCheckFramebufferStatus(GL_FRAMEBUFFER); |
| 445 | if (status != GL_FRAMEBUFFER_COMPLETE) { |
| 446 | LOGE("Framebuffer incomplete (GL error code 0x%x)", status); |
| 447 | |
| 448 | glBindFramebuffer(GL_FRAMEBUFFER, previousFbo); |
| 449 | glDeleteTextures(1, &layer->texture); |
| 450 | mCaches.fboCache.put(layer->fbo); |
| 451 | |
| 452 | delete layer; |
| 453 | |
| 454 | return false; |
| 455 | } |
| 456 | |
| 457 | // Clear the FBO |
| 458 | glDisable(GL_SCISSOR_TEST); |
| 459 | glClearColor(0.0f, 0.0f, 0.0f, 0.0f); |
| 460 | glClear(GL_COLOR_BUFFER_BIT); |
| 461 | glEnable(GL_SCISSOR_TEST); |
| 462 | |
| 463 | // Change the ortho projection |
| 464 | glViewport(0, 0, bounds.getWidth(), bounds.getHeight()); |
| 465 | mOrthoMatrix.loadOrtho(0.0f, bounds.getWidth(), bounds.getHeight(), 0.0f, -1.0f, 1.0f); |
| 466 | } else { |
| 467 | // Copy the framebuffer into the layer |
| 468 | glBindTexture(GL_TEXTURE_2D, layer->texture); |
| 469 | |
| 470 | // TODO: Workaround for b/3054204 |
| 471 | glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bounds.left, mHeight - bounds.bottom, |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 472 | layer->width, layer->height, 0); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 473 | |
| 474 | // TODO: Waiting for b/3054204 to be fixed |
| 475 | // if (layer->empty) { |
| 476 | // glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bounds.left, mHeight - bounds.bottom, |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 477 | // layer->width, layer->height, 0); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 478 | // layer->empty = false; |
| 479 | // } else { |
| 480 | // glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, bounds.left, mHeight - bounds.bottom, |
| 481 | // bounds.getWidth(), bounds.getHeight()); |
| 482 | // } |
| 483 | |
| 484 | // Enqueue the buffer coordinates to clear the corresponding region later |
| 485 | mLayers.push(new Rect(bounds)); |
| 486 | } |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 487 | |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 488 | return true; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 491 | /** |
| 492 | * Read the documentation of createLayer() before doing anything in this method. |
| 493 | */ |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 494 | void OpenGLRenderer::composeLayer(sp<Snapshot> current, sp<Snapshot> previous) { |
| 495 | if (!current->layer) { |
| 496 | LOGE("Attempting to compose a layer that does not exist"); |
| 497 | return; |
| 498 | } |
| 499 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 500 | const bool fboLayer = current->flags & SkCanvas::kClipToLayer_SaveFlag; |
| 501 | |
| 502 | if (fboLayer) { |
| 503 | // Unbind current FBO and restore previous one |
| 504 | glBindFramebuffer(GL_FRAMEBUFFER, previous->fbo); |
| 505 | } |
| 506 | |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 507 | // Restore the clip from the previous snapshot |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 508 | const Rect& clip = *previous->clipRect; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 509 | glScissor(clip.left, previous->height - clip.bottom, clip.getWidth(), clip.getHeight()); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 510 | |
| 511 | Layer* layer = current->layer; |
| 512 | const Rect& rect = layer->layer; |
| 513 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 514 | if (!fboLayer && layer->alpha < 255) { |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 515 | drawColorRect(rect.left, rect.top, rect.right, rect.bottom, |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 516 | layer->alpha << 24, SkXfermode::kDstIn_Mode, true); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 519 | const Rect& texCoords = layer->texCoords; |
| 520 | resetDrawTextureTexCoords(texCoords.left, texCoords.top, texCoords.right, texCoords.bottom); |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 521 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 522 | if (fboLayer) { |
| 523 | drawTextureRect(rect.left, rect.top, rect.right, rect.bottom, |
| 524 | layer->texture, layer->alpha / 255.0f, layer->mode, layer->blend); |
| 525 | } else { |
| 526 | drawTextureMesh(rect.left, rect.top, rect.right, rect.bottom, layer->texture, |
| 527 | 1.0f, layer->mode, layer->blend, &mMeshVertices[0].position[0], |
| 528 | &mMeshVertices[0].texture[0], GL_TRIANGLE_STRIP, gMeshCount, true, true); |
| 529 | } |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 530 | |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 531 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
| 532 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 533 | if (fboLayer) { |
| 534 | // Detach the texture from the FBO |
| 535 | glBindFramebuffer(GL_FRAMEBUFFER, current->fbo); |
| 536 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, 0, 0); |
| 537 | glBindFramebuffer(GL_FRAMEBUFFER, previous->fbo); |
| 538 | |
| 539 | // Put the FBO name back in the cache, if it doesn't fit, it will be destroyed |
| 540 | mCaches.fboCache.put(current->fbo); |
| 541 | } |
| 542 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 543 | // Failing to add the layer to the cache should happen only if the layer is too large |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 544 | if (!mCaches.layerCache.put(layer)) { |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 545 | LAYER_LOGD("Deleting layer"); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 546 | glDeleteTextures(1, &layer->texture); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 547 | delete layer; |
| 548 | } |
| 549 | } |
| 550 | |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 551 | void OpenGLRenderer::clearLayerRegions() { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 552 | if (mLayers.size() == 0 || mSnapshot->invisible) return; |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 553 | |
| 554 | for (uint32_t i = 0; i < mLayers.size(); i++) { |
| 555 | Rect* bounds = mLayers.itemAt(i); |
| 556 | |
| 557 | // Clear the framebuffer where the layer will draw |
| 558 | glScissor(bounds->left, mHeight - bounds->bottom, |
| 559 | bounds->getWidth(), bounds->getHeight()); |
| 560 | glClearColor(0.0f, 0.0f, 0.0f, 0.0f); |
| 561 | glClear(GL_COLOR_BUFFER_BIT); |
| 562 | |
| 563 | delete bounds; |
| 564 | } |
| 565 | mLayers.clear(); |
| 566 | |
| 567 | // Restore the clip |
| 568 | setScissorFromClip(); |
| 569 | } |
| 570 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 571 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 572 | // Transforms |
| 573 | /////////////////////////////////////////////////////////////////////////////// |
| 574 | |
| 575 | void OpenGLRenderer::translate(float dx, float dy) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 576 | mSnapshot->transform->translate(dx, dy, 0.0f); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | void OpenGLRenderer::rotate(float degrees) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 580 | mSnapshot->transform->rotate(degrees, 0.0f, 0.0f, 1.0f); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | void OpenGLRenderer::scale(float sx, float sy) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 584 | mSnapshot->transform->scale(sx, sy, 1.0f); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | void OpenGLRenderer::setMatrix(SkMatrix* matrix) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 588 | mSnapshot->transform->load(*matrix); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | void OpenGLRenderer::getMatrix(SkMatrix* matrix) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 592 | mSnapshot->transform->copyTo(*matrix); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | void OpenGLRenderer::concatMatrix(SkMatrix* matrix) { |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 596 | mat4 m(*matrix); |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 597 | mSnapshot->transform->multiply(m); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | /////////////////////////////////////////////////////////////////////////////// |
| 601 | // Clipping |
| 602 | /////////////////////////////////////////////////////////////////////////////// |
| 603 | |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 604 | void OpenGLRenderer::setScissorFromClip() { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 605 | const Rect& clip = *mSnapshot->clipRect; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 606 | glScissor(clip.left, mSnapshot->height - clip.bottom, clip.getWidth(), clip.getHeight()); |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | const Rect& OpenGLRenderer::getClipBounds() { |
Romain Guy | 079ba2c | 2010-07-16 14:12:24 -0700 | [diff] [blame] | 610 | return mSnapshot->getLocalClip(); |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 613 | bool OpenGLRenderer::quickReject(float left, float top, float right, float bottom) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 614 | if (mSnapshot->invisible) { |
| 615 | return true; |
| 616 | } |
| 617 | |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 618 | Rect r(left, top, right, bottom); |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 619 | mSnapshot->transform->mapRect(r); |
| 620 | return !mSnapshot->clipRect->intersects(r); |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 621 | } |
| 622 | |
Romain Guy | 079ba2c | 2010-07-16 14:12:24 -0700 | [diff] [blame] | 623 | bool OpenGLRenderer::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) { |
| 624 | bool clipped = mSnapshot->clip(left, top, right, bottom, op); |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 625 | if (clipped) { |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 626 | setScissorFromClip(); |
| 627 | } |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 628 | return !mSnapshot->clipRect->isEmpty(); |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 629 | } |
| 630 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 631 | /////////////////////////////////////////////////////////////////////////////// |
| 632 | // Drawing |
| 633 | /////////////////////////////////////////////////////////////////////////////// |
| 634 | |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 635 | void OpenGLRenderer::drawBitmap(SkBitmap* bitmap, float left, float top, const SkPaint* paint) { |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 636 | const float right = left + bitmap->width(); |
| 637 | const float bottom = top + bitmap->height(); |
| 638 | |
| 639 | if (quickReject(left, top, right, bottom)) { |
| 640 | return; |
| 641 | } |
| 642 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 643 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 644 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 645 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 646 | const AutoTexture autoCleanup(texture); |
| 647 | |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 648 | drawTextureRect(left, top, right, bottom, texture, paint); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 649 | } |
| 650 | |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 651 | void OpenGLRenderer::drawBitmap(SkBitmap* bitmap, const SkMatrix* matrix, const SkPaint* paint) { |
| 652 | Rect r(0.0f, 0.0f, bitmap->width(), bitmap->height()); |
| 653 | const mat4 transform(*matrix); |
| 654 | transform.mapRect(r); |
| 655 | |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 656 | if (quickReject(r.left, r.top, r.right, r.bottom)) { |
| 657 | return; |
| 658 | } |
| 659 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 660 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 661 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 662 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 663 | const AutoTexture autoCleanup(texture); |
| 664 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 665 | drawTextureRect(r.left, r.top, r.right, r.bottom, texture, paint); |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 666 | } |
| 667 | |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 668 | void OpenGLRenderer::drawBitmap(SkBitmap* bitmap, |
| 669 | float srcLeft, float srcTop, float srcRight, float srcBottom, |
| 670 | float dstLeft, float dstTop, float dstRight, float dstBottom, |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 671 | const SkPaint* paint) { |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 672 | if (quickReject(dstLeft, dstTop, dstRight, dstBottom)) { |
| 673 | return; |
| 674 | } |
| 675 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 676 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 677 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 678 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 679 | const AutoTexture autoCleanup(texture); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 680 | |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 681 | const float width = texture->width; |
| 682 | const float height = texture->height; |
| 683 | |
| 684 | const float u1 = srcLeft / width; |
| 685 | const float v1 = srcTop / height; |
| 686 | const float u2 = srcRight / width; |
| 687 | const float v2 = srcBottom / height; |
| 688 | |
| 689 | resetDrawTextureTexCoords(u1, v1, u2, v2); |
| 690 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 691 | drawTextureRect(dstLeft, dstTop, dstRight, dstBottom, texture, paint); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 692 | |
| 693 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
| 694 | } |
| 695 | |
Romain Guy | 4aa9057 | 2010-09-26 18:40:37 -0700 | [diff] [blame] | 696 | void OpenGLRenderer::drawPatch(SkBitmap* bitmap, const int32_t* xDivs, const int32_t* yDivs, |
| 697 | uint32_t width, uint32_t height, float left, float top, float right, float bottom, |
| 698 | const SkPaint* paint) { |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 699 | if (quickReject(left, top, right, bottom)) { |
| 700 | return; |
| 701 | } |
| 702 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 703 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 704 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 705 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 706 | const AutoTexture autoCleanup(texture); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 707 | |
| 708 | int alpha; |
| 709 | SkXfermode::Mode mode; |
| 710 | getAlphaAndMode(paint, &alpha, &mode); |
| 711 | |
Romain Guy | 2728f96 | 2010-10-08 18:36:15 -0700 | [diff] [blame] | 712 | const Patch* mesh = mCaches.patchCache.get(bitmap->width(), bitmap->height(), |
| 713 | right - left, bottom - top, xDivs, yDivs, width, height); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 714 | |
| 715 | // Specify right and bottom as +1.0f from left/top to prevent scaling since the |
| 716 | // patch mesh already defines the final size |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 717 | drawTextureMesh(left, top, left + 1.0f, top + 1.0f, texture->id, alpha / 255.0f, |
| 718 | mode, texture->blend, &mesh->vertices[0].position[0], |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 719 | &mesh->vertices[0].texture[0], GL_TRIANGLES, mesh->verticesCount); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 722 | void OpenGLRenderer::drawLines(float* points, int count, const SkPaint* paint) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 723 | if (mSnapshot->invisible) return; |
| 724 | |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 725 | int alpha; |
| 726 | SkXfermode::Mode mode; |
| 727 | getAlphaAndMode(paint, &alpha, &mode); |
| 728 | |
| 729 | uint32_t color = paint->getColor(); |
| 730 | const GLfloat a = alpha / 255.0f; |
| 731 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 732 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 733 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 734 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 735 | const bool isAA = paint->isAntiAlias(); |
| 736 | if (isAA) { |
| 737 | GLuint textureUnit = 0; |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 738 | setupTextureAlpha8(mCaches.line.getTexture(), 0, 0, textureUnit, 0.0f, 0.0f, r, g, b, a, |
| 739 | mode, false, true, mCaches.line.getVertices(), mCaches.line.getTexCoords()); |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 740 | } else { |
| 741 | setupColorRect(0.0f, 0.0f, 1.0f, 1.0f, r, g, b, a, mode, false); |
| 742 | } |
| 743 | |
| 744 | const float strokeWidth = paint->getStrokeWidth(); |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 745 | const GLsizei elementsCount = isAA ? mCaches.line.getElementsCount() : gMeshCount; |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 746 | const GLenum drawMode = isAA ? GL_TRIANGLES : GL_TRIANGLE_STRIP; |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 747 | |
| 748 | for (int i = 0; i < count; i += 4) { |
| 749 | float tx = 0.0f; |
| 750 | float ty = 0.0f; |
| 751 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 752 | if (isAA) { |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 753 | mCaches.line.update(points[i], points[i + 1], points[i + 2], points[i + 3], |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 754 | strokeWidth, tx, ty); |
| 755 | } else { |
Romain Guy | b5ab417 | 2010-09-17 15:36:56 -0700 | [diff] [blame] | 756 | ty = strokeWidth <= 1.0f ? 0.0f : -strokeWidth * 0.5f; |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 757 | } |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 758 | |
| 759 | const float dx = points[i + 2] - points[i]; |
| 760 | const float dy = points[i + 3] - points[i + 1]; |
| 761 | const float mag = sqrtf(dx * dx + dy * dy); |
| 762 | const float angle = acos(dx / mag); |
| 763 | |
| 764 | mModelView.loadTranslate(points[i], points[i + 1], 0.0f); |
| 765 | if (angle > MIN_ANGLE || angle < -MIN_ANGLE) { |
| 766 | mModelView.rotate(angle * RAD_TO_DEG, 0.0f, 0.0f, 1.0f); |
| 767 | } |
| 768 | mModelView.translate(tx, ty, 0.0f); |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 769 | if (!isAA) { |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 770 | float length = mCaches.line.getLength(points[i], points[i + 1], |
| 771 | points[i + 2], points[i + 3]); |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 772 | mModelView.scale(length, strokeWidth, 1.0f); |
| 773 | } |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 774 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
| 775 | |
| 776 | if (mShader) { |
| 777 | mShader->updateTransforms(mCaches.currentProgram, mModelView, *mSnapshot); |
| 778 | } |
| 779 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 780 | glDrawArrays(drawMode, 0, elementsCount); |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 781 | } |
| 782 | |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 783 | if (isAA) { |
| 784 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
| 785 | } |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 786 | } |
| 787 | |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 788 | void OpenGLRenderer::drawColor(int color, SkXfermode::Mode mode) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 789 | const Rect& clip = *mSnapshot->clipRect; |
Romain Guy | 3d58c03 | 2010-07-14 16:34:53 -0700 | [diff] [blame] | 790 | drawColorRect(clip.left, clip.top, clip.right, clip.bottom, color, mode, true); |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 791 | } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 792 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 793 | void OpenGLRenderer::drawRect(float left, float top, float right, float bottom, const SkPaint* p) { |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 794 | if (quickReject(left, top, right, bottom)) { |
| 795 | return; |
| 796 | } |
| 797 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 798 | SkXfermode::Mode mode; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 799 | if (!mExtensions.hasFramebufferFetch()) { |
| 800 | const bool isMode = SkXfermode::IsMode(p->getXfermode(), &mode); |
| 801 | if (!isMode) { |
| 802 | // Assume SRC_OVER |
| 803 | mode = SkXfermode::kSrcOver_Mode; |
| 804 | } |
| 805 | } else { |
| 806 | mode = getXfermode(p->getXfermode()); |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | // Skia draws using the color's alpha channel if < 255 |
| 810 | // Otherwise, it uses the paint's alpha |
| 811 | int color = p->getColor(); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 812 | if (((color >> 24) & 0xff) == 255) { |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 813 | color |= p->getAlpha() << 24; |
| 814 | } |
| 815 | |
| 816 | drawColorRect(left, top, right, bottom, color, mode); |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 817 | } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 818 | |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 819 | void OpenGLRenderer::drawText(const char* text, int bytesCount, int count, |
| 820 | float x, float y, SkPaint* paint) { |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 821 | if (text == NULL || count == 0 || (paint->getAlpha() == 0 && paint->getXfermode() == NULL)) { |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 822 | return; |
| 823 | } |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 824 | if (mSnapshot->invisible) return; |
Romain Guy | e2d345e | 2010-09-24 18:39:22 -0700 | [diff] [blame] | 825 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 826 | paint->setAntiAlias(true); |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 827 | |
Romain Guy | a674ab7 | 2010-08-10 17:26:42 -0700 | [diff] [blame] | 828 | float length = -1.0f; |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 829 | switch (paint->getTextAlign()) { |
| 830 | case SkPaint::kCenter_Align: |
| 831 | length = paint->measureText(text, bytesCount); |
| 832 | x -= length / 2.0f; |
| 833 | break; |
| 834 | case SkPaint::kRight_Align: |
| 835 | length = paint->measureText(text, bytesCount); |
| 836 | x -= length; |
| 837 | break; |
| 838 | default: |
| 839 | break; |
| 840 | } |
| 841 | |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 842 | int alpha; |
| 843 | SkXfermode::Mode mode; |
| 844 | getAlphaAndMode(paint, &alpha, &mode); |
| 845 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 846 | uint32_t color = paint->getColor(); |
| 847 | const GLfloat a = alpha / 255.0f; |
| 848 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 849 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 850 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 851 | |
Romain Guy | b45c0c9 | 2010-08-26 20:35:23 -0700 | [diff] [blame] | 852 | FontRenderer& fontRenderer = mCaches.fontRenderer.getFontRenderer(paint); |
| 853 | fontRenderer.setFont(paint, SkTypeface::UniqueID(paint->getTypeface()), |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 854 | paint->getTextSize()); |
Romain Guy | e2d345e | 2010-09-24 18:39:22 -0700 | [diff] [blame] | 855 | |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 856 | if (mHasShadow) { |
| 857 | glActiveTexture(gTextureUnits[0]); |
Romain Guy | b45c0c9 | 2010-08-26 20:35:23 -0700 | [diff] [blame] | 858 | mCaches.dropShadowCache.setFontRenderer(fontRenderer); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 859 | const ShadowTexture* shadow = mCaches.dropShadowCache.get(paint, text, bytesCount, |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 860 | count, mShadowRadius); |
| 861 | const AutoTexture autoCleanup(shadow); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 862 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 863 | setupShadow(shadow, x, y, mode, a); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 864 | |
| 865 | // Draw the mesh |
| 866 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 867 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 868 | } |
| 869 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 870 | GLuint textureUnit = 0; |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 871 | glActiveTexture(gTextureUnits[textureUnit]); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 872 | |
Romain Guy | e8cb9c14 | 2010-10-04 14:14:11 -0700 | [diff] [blame] | 873 | // Assume that the modelView matrix does not force scales, rotates, etc. |
| 874 | const bool linearFilter = mSnapshot->transform->changesBounds(); |
| 875 | setupTextureAlpha8(fontRenderer.getTexture(linearFilter), 0, 0, textureUnit, |
| 876 | x, y, r, g, b, a, mode, false, true); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 877 | |
Romain Guy | 09147fb | 2010-07-22 13:08:20 -0700 | [diff] [blame] | 878 | const Rect& clip = mSnapshot->getLocalClip(); |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 879 | clearLayerRegions(); |
Romain Guy | b45c0c9 | 2010-08-26 20:35:23 -0700 | [diff] [blame] | 880 | fontRenderer.renderText(paint, &clip, text, 0, bytesCount, count, x, y); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 881 | |
| 882 | glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 883 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
Romain Guy | a674ab7 | 2010-08-10 17:26:42 -0700 | [diff] [blame] | 884 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 885 | drawTextDecorations(text, bytesCount, length, x, y, paint); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 886 | } |
| 887 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 888 | void OpenGLRenderer::drawPath(SkPath* path, SkPaint* paint) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 889 | if (mSnapshot->invisible) return; |
| 890 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 891 | GLuint textureUnit = 0; |
| 892 | glActiveTexture(gTextureUnits[textureUnit]); |
| 893 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 894 | const PathTexture* texture = mCaches.pathCache.get(path, paint); |
Romain Guy | 9cccc2b | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 895 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 896 | const AutoTexture autoCleanup(texture); |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 897 | |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 898 | const float x = texture->left - texture->offset; |
| 899 | const float y = texture->top - texture->offset; |
| 900 | |
| 901 | if (quickReject(x, y, x + texture->width, y + texture->height)) { |
| 902 | return; |
| 903 | } |
| 904 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 905 | int alpha; |
| 906 | SkXfermode::Mode mode; |
| 907 | getAlphaAndMode(paint, &alpha, &mode); |
| 908 | |
| 909 | uint32_t color = paint->getColor(); |
| 910 | const GLfloat a = alpha / 255.0f; |
| 911 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 912 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 913 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 914 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 915 | setupTextureAlpha8(texture, textureUnit, x, y, r, g, b, a, mode, true, true); |
| 916 | |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 917 | clearLayerRegions(); |
| 918 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 919 | // Draw the mesh |
| 920 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 921 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 922 | } |
| 923 | |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 924 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 925 | // Shaders |
| 926 | /////////////////////////////////////////////////////////////////////////////// |
| 927 | |
| 928 | void OpenGLRenderer::resetShader() { |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 929 | mShader = NULL; |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 930 | } |
| 931 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 932 | void OpenGLRenderer::setupShader(SkiaShader* shader) { |
| 933 | mShader = shader; |
| 934 | if (mShader) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 935 | mShader->set(&mCaches.textureCache, &mCaches.gradientCache); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 936 | } |
Romain Guy | 7fac2e1 | 2010-07-16 17:10:13 -0700 | [diff] [blame] | 937 | } |
| 938 | |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 939 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 940 | // Color filters |
| 941 | /////////////////////////////////////////////////////////////////////////////// |
| 942 | |
| 943 | void OpenGLRenderer::resetColorFilter() { |
| 944 | mColorFilter = NULL; |
| 945 | } |
| 946 | |
| 947 | void OpenGLRenderer::setupColorFilter(SkiaColorFilter* filter) { |
| 948 | mColorFilter = filter; |
| 949 | } |
| 950 | |
| 951 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 952 | // Drop shadow |
| 953 | /////////////////////////////////////////////////////////////////////////////// |
| 954 | |
| 955 | void OpenGLRenderer::resetShadow() { |
| 956 | mHasShadow = false; |
| 957 | } |
| 958 | |
| 959 | void OpenGLRenderer::setupShadow(float radius, float dx, float dy, int color) { |
| 960 | mHasShadow = true; |
| 961 | mShadowRadius = radius; |
| 962 | mShadowDx = dx; |
| 963 | mShadowDy = dy; |
| 964 | mShadowColor = color; |
| 965 | } |
| 966 | |
| 967 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 968 | // Drawing implementation |
| 969 | /////////////////////////////////////////////////////////////////////////////// |
| 970 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 971 | void OpenGLRenderer::setupShadow(const ShadowTexture* texture, float x, float y, |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 972 | SkXfermode::Mode mode, float alpha) { |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 973 | const float sx = x - texture->left + mShadowDx; |
| 974 | const float sy = y - texture->top + mShadowDy; |
| 975 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 976 | const int shadowAlpha = ((mShadowColor >> 24) & 0xFF); |
| 977 | const GLfloat a = shadowAlpha < 255 ? shadowAlpha / 255.0f : alpha; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 978 | const GLfloat r = a * ((mShadowColor >> 16) & 0xFF) / 255.0f; |
| 979 | const GLfloat g = a * ((mShadowColor >> 8) & 0xFF) / 255.0f; |
| 980 | const GLfloat b = a * ((mShadowColor ) & 0xFF) / 255.0f; |
| 981 | |
| 982 | GLuint textureUnit = 0; |
| 983 | setupTextureAlpha8(texture, textureUnit, sx, sy, r, g, b, a, mode, true, false); |
| 984 | } |
| 985 | |
| 986 | void OpenGLRenderer::setupTextureAlpha8(const Texture* texture, GLuint& textureUnit, |
| 987 | float x, float y, float r, float g, float b, float a, SkXfermode::Mode mode, |
| 988 | bool transforms, bool applyFilters) { |
| 989 | setupTextureAlpha8(texture->id, texture->width, texture->height, textureUnit, |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 990 | x, y, r, g, b, a, mode, transforms, applyFilters, |
| 991 | &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0]); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | void OpenGLRenderer::setupTextureAlpha8(GLuint texture, uint32_t width, uint32_t height, |
| 995 | GLuint& textureUnit, float x, float y, float r, float g, float b, float a, |
| 996 | SkXfermode::Mode mode, bool transforms, bool applyFilters) { |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 997 | setupTextureAlpha8(texture, width, height, textureUnit, |
| 998 | x, y, r, g, b, a, mode, transforms, applyFilters, |
| 999 | &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0]); |
| 1000 | } |
| 1001 | |
| 1002 | void OpenGLRenderer::setupTextureAlpha8(GLuint texture, uint32_t width, uint32_t height, |
| 1003 | GLuint& textureUnit, float x, float y, float r, float g, float b, float a, |
| 1004 | SkXfermode::Mode mode, bool transforms, bool applyFilters, |
| 1005 | GLvoid* vertices, GLvoid* texCoords) { |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1006 | // Describe the required shaders |
| 1007 | ProgramDescription description; |
| 1008 | description.hasTexture = true; |
| 1009 | description.hasAlpha8Texture = true; |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1010 | const bool setColor = description.setAlpha8Color(r, g, b, a); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1011 | |
| 1012 | if (applyFilters) { |
| 1013 | if (mShader) { |
| 1014 | mShader->describe(description, mExtensions); |
| 1015 | } |
| 1016 | if (mColorFilter) { |
| 1017 | mColorFilter->describe(description, mExtensions); |
| 1018 | } |
| 1019 | } |
| 1020 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1021 | // Setup the blending mode |
| 1022 | chooseBlending(true, mode, description); |
| 1023 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1024 | // Build and use the appropriate shader |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1025 | useProgram(mCaches.programCache.get(description)); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1026 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1027 | bindTexture(texture, GL_CLAMP_TO_EDGE, GL_CLAMP_TO_EDGE, textureUnit); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1028 | glUniform1i(mCaches.currentProgram->getUniform("sampler"), textureUnit); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1029 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1030 | int texCoordsSlot = mCaches.currentProgram->getAttrib("texCoords"); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1031 | glEnableVertexAttribArray(texCoordsSlot); |
| 1032 | |
| 1033 | // Setup attributes |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1034 | glVertexAttribPointer(mCaches.currentProgram->position, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 1035 | gMeshStride, vertices); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1036 | glVertexAttribPointer(texCoordsSlot, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 1037 | gMeshStride, texCoords); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1038 | |
| 1039 | // Setup uniforms |
| 1040 | if (transforms) { |
| 1041 | mModelView.loadTranslate(x, y, 0.0f); |
| 1042 | mModelView.scale(width, height, 1.0f); |
| 1043 | } else { |
| 1044 | mModelView.loadIdentity(); |
| 1045 | } |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 1046 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1047 | if (setColor) { |
| 1048 | mCaches.currentProgram->setColor(r, g, b, a); |
| 1049 | } |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1050 | |
| 1051 | textureUnit++; |
| 1052 | if (applyFilters) { |
| 1053 | // Setup attributes and uniforms required by the shaders |
| 1054 | if (mShader) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1055 | mShader->setupProgram(mCaches.currentProgram, mModelView, *mSnapshot, &textureUnit); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1056 | } |
| 1057 | if (mColorFilter) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1058 | mColorFilter->setupProgram(mCaches.currentProgram); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1059 | } |
| 1060 | } |
| 1061 | } |
| 1062 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1063 | // Same values used by Skia |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1064 | #define kStdStrikeThru_Offset (-6.0f / 21.0f) |
| 1065 | #define kStdUnderline_Offset (1.0f / 9.0f) |
| 1066 | #define kStdUnderline_Thickness (1.0f / 18.0f) |
| 1067 | |
| 1068 | void OpenGLRenderer::drawTextDecorations(const char* text, int bytesCount, float length, |
| 1069 | float x, float y, SkPaint* paint) { |
| 1070 | // Handle underline and strike-through |
| 1071 | uint32_t flags = paint->getFlags(); |
| 1072 | if (flags & (SkPaint::kUnderlineText_Flag | SkPaint::kStrikeThruText_Flag)) { |
| 1073 | float underlineWidth = length; |
| 1074 | // If length is > 0.0f, we already measured the text for the text alignment |
| 1075 | if (length <= 0.0f) { |
| 1076 | underlineWidth = paint->measureText(text, bytesCount); |
| 1077 | } |
| 1078 | |
| 1079 | float offsetX = 0; |
| 1080 | switch (paint->getTextAlign()) { |
| 1081 | case SkPaint::kCenter_Align: |
| 1082 | offsetX = underlineWidth * 0.5f; |
| 1083 | break; |
| 1084 | case SkPaint::kRight_Align: |
| 1085 | offsetX = underlineWidth; |
| 1086 | break; |
| 1087 | default: |
| 1088 | break; |
| 1089 | } |
| 1090 | |
| 1091 | if (underlineWidth > 0.0f) { |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1092 | const float textSize = paint->getTextSize(); |
| 1093 | const float strokeWidth = textSize * kStdUnderline_Thickness; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1094 | |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1095 | const float left = x - offsetX; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1096 | float top = 0.0f; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1097 | |
| 1098 | const int pointsCount = 4 * (flags & SkPaint::kStrikeThruText_Flag ? 2 : 1); |
| 1099 | float points[pointsCount]; |
| 1100 | int currentPoint = 0; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1101 | |
| 1102 | if (flags & SkPaint::kUnderlineText_Flag) { |
| 1103 | top = y + textSize * kStdUnderline_Offset; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1104 | points[currentPoint++] = left; |
| 1105 | points[currentPoint++] = top; |
| 1106 | points[currentPoint++] = left + underlineWidth; |
| 1107 | points[currentPoint++] = top; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1108 | } |
| 1109 | |
| 1110 | if (flags & SkPaint::kStrikeThruText_Flag) { |
| 1111 | top = y + textSize * kStdStrikeThru_Offset; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1112 | points[currentPoint++] = left; |
| 1113 | points[currentPoint++] = top; |
| 1114 | points[currentPoint++] = left + underlineWidth; |
| 1115 | points[currentPoint++] = top; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1116 | } |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1117 | |
| 1118 | SkPaint linesPaint(*paint); |
| 1119 | linesPaint.setStrokeWidth(strokeWidth); |
| 1120 | |
| 1121 | drawLines(&points[0], pointsCount, &linesPaint); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1122 | } |
| 1123 | } |
| 1124 | } |
| 1125 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1126 | void OpenGLRenderer::drawColorRect(float left, float top, float right, float bottom, |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 1127 | int color, SkXfermode::Mode mode, bool ignoreTransform) { |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 1128 | clearLayerRegions(); |
| 1129 | |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1130 | // If a shader is set, preserve only the alpha |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1131 | if (mShader) { |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1132 | color |= 0x00ffffff; |
| 1133 | } |
| 1134 | |
| 1135 | // Render using pre-multiplied alpha |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1136 | const int alpha = (color >> 24) & 0xFF; |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1137 | const GLfloat a = alpha / 255.0f; |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 1138 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 1139 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 1140 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 1141 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 1142 | setupColorRect(left, top, right, bottom, r, g, b, a, mode, ignoreTransform); |
| 1143 | |
| 1144 | // Draw the mesh |
| 1145 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
| 1146 | } |
| 1147 | |
| 1148 | void OpenGLRenderer::setupColorRect(float left, float top, float right, float bottom, |
| 1149 | float r, float g, float b, float a, SkXfermode::Mode mode, bool ignoreTransform) { |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1150 | GLuint textureUnit = 0; |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 1151 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1152 | // Describe the required shaders |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1153 | ProgramDescription description; |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1154 | const bool setColor = description.setColor(r, g, b, a); |
| 1155 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1156 | if (mShader) { |
| 1157 | mShader->describe(description, mExtensions); |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 1158 | } |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1159 | if (mColorFilter) { |
| 1160 | mColorFilter->describe(description, mExtensions); |
| 1161 | } |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1162 | |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 1163 | // Setup the blending mode |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 1164 | chooseBlending(a < 1.0f || (mShader && mShader->blend()), mode, description); |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1165 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1166 | // Build and use the appropriate shader |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1167 | useProgram(mCaches.programCache.get(description)); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1168 | |
| 1169 | // Setup attributes |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1170 | glVertexAttribPointer(mCaches.currentProgram->position, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1171 | gMeshStride, &mMeshVertices[0].position[0]); |
| 1172 | |
| 1173 | // Setup uniforms |
| 1174 | mModelView.loadTranslate(left, top, 0.0f); |
| 1175 | mModelView.scale(right - left, bottom - top, 1.0f); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1176 | if (!ignoreTransform) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 1177 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1178 | } else { |
| 1179 | mat4 identity; |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1180 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, identity); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1181 | } |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1182 | mCaches.currentProgram->setColor(r, g, b, a); |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 1183 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1184 | // Setup attributes and uniforms required by the shaders |
| 1185 | if (mShader) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1186 | mShader->setupProgram(mCaches.currentProgram, mModelView, *mSnapshot, &textureUnit); |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 1187 | } |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1188 | if (mColorFilter) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1189 | mColorFilter->setupProgram(mCaches.currentProgram); |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1190 | } |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1193 | void OpenGLRenderer::drawTextureRect(float left, float top, float right, float bottom, |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1194 | const Texture* texture, const SkPaint* paint) { |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1195 | int alpha; |
| 1196 | SkXfermode::Mode mode; |
| 1197 | getAlphaAndMode(paint, &alpha, &mode); |
| 1198 | |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1199 | drawTextureMesh(left, top, right, bottom, texture->id, alpha / 255.0f, mode, |
| 1200 | texture->blend, &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0], |
| 1201 | GL_TRIANGLE_STRIP, gMeshCount); |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 1202 | } |
| 1203 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1204 | void OpenGLRenderer::drawTextureRect(float left, float top, float right, float bottom, |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1205 | GLuint texture, float alpha, SkXfermode::Mode mode, bool blend) { |
| 1206 | drawTextureMesh(left, top, right, bottom, texture, alpha, mode, blend, |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1207 | &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0], |
| 1208 | GL_TRIANGLE_STRIP, gMeshCount); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 1209 | } |
| 1210 | |
| 1211 | void OpenGLRenderer::drawTextureMesh(float left, float top, float right, float bottom, |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1212 | GLuint texture, float alpha, SkXfermode::Mode mode, bool blend, |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1213 | GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1214 | bool swapSrcDst, bool ignoreTransform) { |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 1215 | clearLayerRegions(); |
| 1216 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1217 | ProgramDescription description; |
| 1218 | description.hasTexture = true; |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1219 | const bool setColor = description.setColor(alpha, alpha, alpha, alpha); |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1220 | if (mColorFilter) { |
| 1221 | mColorFilter->describe(description, mExtensions); |
| 1222 | } |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1223 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1224 | mModelView.loadTranslate(left, top, 0.0f); |
| 1225 | mModelView.scale(right - left, bottom - top, 1.0f); |
| 1226 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1227 | chooseBlending(blend || alpha < 1.0f, mode, description, swapSrcDst); |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1228 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1229 | useProgram(mCaches.programCache.get(description)); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1230 | if (!ignoreTransform) { |
| 1231 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
| 1232 | } else { |
| 1233 | mat4 m; |
| 1234 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, m); |
| 1235 | } |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1236 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1237 | // Texture |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1238 | bindTexture(texture, GL_CLAMP_TO_EDGE, GL_CLAMP_TO_EDGE, 0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1239 | glUniform1i(mCaches.currentProgram->getUniform("sampler"), 0); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 1240 | |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1241 | // Always premultiplied |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1242 | if (setColor) { |
| 1243 | mCaches.currentProgram->setColor(alpha, alpha, alpha, alpha); |
| 1244 | } |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1245 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1246 | // Mesh |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1247 | int texCoordsSlot = mCaches.currentProgram->getAttrib("texCoords"); |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1248 | glEnableVertexAttribArray(texCoordsSlot); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1249 | glVertexAttribPointer(mCaches.currentProgram->position, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 1250 | gMeshStride, vertices); |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1251 | glVertexAttribPointer(texCoordsSlot, 2, GL_FLOAT, GL_FALSE, gMeshStride, texCoords); |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1252 | |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1253 | // Color filter |
| 1254 | if (mColorFilter) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1255 | mColorFilter->setupProgram(mCaches.currentProgram); |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1256 | } |
| 1257 | |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1258 | glDrawArrays(drawMode, 0, elementsCount); |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1259 | glDisableVertexAttribArray(texCoordsSlot); |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1260 | } |
| 1261 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1262 | void OpenGLRenderer::chooseBlending(bool blend, SkXfermode::Mode mode, |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1263 | ProgramDescription& description, bool swapSrcDst) { |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1264 | blend = blend || mode != SkXfermode::kSrcOver_Mode; |
| 1265 | if (blend) { |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1266 | if (mode < SkXfermode::kPlus_Mode) { |
| 1267 | if (!mCaches.blend) { |
| 1268 | glEnable(GL_BLEND); |
| 1269 | } |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1270 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1271 | GLenum sourceMode = swapSrcDst ? gBlendsSwap[mode].src : gBlends[mode].src; |
| 1272 | GLenum destMode = swapSrcDst ? gBlendsSwap[mode].dst : gBlends[mode].dst; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1273 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1274 | if (sourceMode != mCaches.lastSrcMode || destMode != mCaches.lastDstMode) { |
| 1275 | glBlendFunc(sourceMode, destMode); |
| 1276 | mCaches.lastSrcMode = sourceMode; |
| 1277 | mCaches.lastDstMode = destMode; |
| 1278 | } |
| 1279 | } else { |
| 1280 | // These blend modes are not supported by OpenGL directly and have |
| 1281 | // to be implemented using shaders. Since the shader will perform |
| 1282 | // the blending, turn blending off here |
| 1283 | if (mExtensions.hasFramebufferFetch()) { |
| 1284 | description.framebufferMode = mode; |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1285 | description.swapSrcDst = swapSrcDst; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1286 | } |
| 1287 | |
| 1288 | if (mCaches.blend) { |
| 1289 | glDisable(GL_BLEND); |
| 1290 | } |
| 1291 | blend = false; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1292 | } |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1293 | } else if (mCaches.blend) { |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1294 | glDisable(GL_BLEND); |
| 1295 | } |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1296 | mCaches.blend = blend; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1297 | } |
| 1298 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1299 | bool OpenGLRenderer::useProgram(Program* program) { |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1300 | if (!program->isInUse()) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1301 | if (mCaches.currentProgram != NULL) mCaches.currentProgram->remove(); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1302 | program->use(); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1303 | mCaches.currentProgram = program; |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 1304 | return false; |
Romain Guy | 260e102 | 2010-07-12 14:41:06 -0700 | [diff] [blame] | 1305 | } |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 1306 | return true; |
Romain Guy | 260e102 | 2010-07-12 14:41:06 -0700 | [diff] [blame] | 1307 | } |
| 1308 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1309 | void OpenGLRenderer::resetDrawTextureTexCoords(float u1, float v1, float u2, float v2) { |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 1310 | TextureVertex* v = &mMeshVertices[0]; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1311 | TextureVertex::setUV(v++, u1, v1); |
| 1312 | TextureVertex::setUV(v++, u2, v1); |
| 1313 | TextureVertex::setUV(v++, u1, v2); |
| 1314 | TextureVertex::setUV(v++, u2, v2); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 1315 | } |
| 1316 | |
| 1317 | void OpenGLRenderer::getAlphaAndMode(const SkPaint* paint, int* alpha, SkXfermode::Mode* mode) { |
| 1318 | if (paint) { |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1319 | if (!mExtensions.hasFramebufferFetch()) { |
| 1320 | const bool isMode = SkXfermode::IsMode(paint->getXfermode(), mode); |
| 1321 | if (!isMode) { |
| 1322 | // Assume SRC_OVER |
| 1323 | *mode = SkXfermode::kSrcOver_Mode; |
| 1324 | } |
| 1325 | } else { |
| 1326 | *mode = getXfermode(paint->getXfermode()); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 1327 | } |
| 1328 | |
| 1329 | // Skia draws using the color's alpha channel if < 255 |
| 1330 | // Otherwise, it uses the paint's alpha |
| 1331 | int color = paint->getColor(); |
| 1332 | *alpha = (color >> 24) & 0xFF; |
| 1333 | if (*alpha == 255) { |
| 1334 | *alpha = paint->getAlpha(); |
| 1335 | } |
| 1336 | } else { |
| 1337 | *mode = SkXfermode::kSrcOver_Mode; |
| 1338 | *alpha = 255; |
| 1339 | } |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1340 | } |
| 1341 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1342 | SkXfermode::Mode OpenGLRenderer::getXfermode(SkXfermode* mode) { |
| 1343 | if (mode == NULL) { |
| 1344 | return SkXfermode::kSrcOver_Mode; |
| 1345 | } |
| 1346 | return mode->fMode; |
| 1347 | } |
| 1348 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1349 | void OpenGLRenderer::bindTexture(GLuint texture, GLenum wrapS, GLenum wrapT, GLuint textureUnit) { |
| 1350 | glActiveTexture(gTextureUnits[textureUnit]); |
Romain Guy | ae5575b | 2010-07-29 18:48:04 -0700 | [diff] [blame] | 1351 | glBindTexture(GL_TEXTURE_2D, texture); |
Romain Guy | a1db574 | 2010-07-20 13:09:13 -0700 | [diff] [blame] | 1352 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, wrapS); |
| 1353 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, wrapT); |
| 1354 | } |
| 1355 | |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 1356 | }; // namespace uirenderer |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 1357 | }; // namespace android |