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 | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 428 | // Bind texture to FBO |
| 429 | glBindFramebuffer(GL_FRAMEBUFFER, layer->fbo); |
| 430 | glBindTexture(GL_TEXTURE_2D, layer->texture); |
| 431 | |
| 432 | // Initialize the texture if needed |
| 433 | if (layer->empty) { |
| 434 | layer->empty = false; |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 435 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, layer->width, layer->height, 0, |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 436 | GL_RGBA, GL_UNSIGNED_BYTE, NULL); |
| 437 | } |
| 438 | |
| 439 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, |
| 440 | layer->texture, 0); |
| 441 | |
Romain Guy | e910805 | 2010-10-12 18:15:42 -0700 | [diff] [blame] | 442 | #if DEBUG_LAYERS |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 443 | GLenum status = glCheckFramebufferStatus(GL_FRAMEBUFFER); |
| 444 | if (status != GL_FRAMEBUFFER_COMPLETE) { |
| 445 | LOGE("Framebuffer incomplete (GL error code 0x%x)", status); |
| 446 | |
| 447 | glBindFramebuffer(GL_FRAMEBUFFER, previousFbo); |
| 448 | glDeleteTextures(1, &layer->texture); |
| 449 | mCaches.fboCache.put(layer->fbo); |
| 450 | |
| 451 | delete layer; |
| 452 | |
| 453 | return false; |
| 454 | } |
Romain Guy | e910805 | 2010-10-12 18:15:42 -0700 | [diff] [blame] | 455 | #endif |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 456 | |
| 457 | // Clear the FBO |
Romain Guy | eb07af6 | 2010-10-12 18:40:36 -0700 | [diff] [blame] | 458 | glScissor(0.0f, 0.0f, bounds.getWidth(), bounds.getHeight()); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 459 | glClearColor(0.0f, 0.0f, 0.0f, 0.0f); |
| 460 | glClear(GL_COLOR_BUFFER_BIT); |
Romain Guy | eb07af6 | 2010-10-12 18:40:36 -0700 | [diff] [blame] | 461 | |
| 462 | setScissorFromClip(); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 463 | |
| 464 | // Change the ortho projection |
| 465 | glViewport(0, 0, bounds.getWidth(), bounds.getHeight()); |
| 466 | mOrthoMatrix.loadOrtho(0.0f, bounds.getWidth(), bounds.getHeight(), 0.0f, -1.0f, 1.0f); |
| 467 | } else { |
| 468 | // Copy the framebuffer into the layer |
| 469 | glBindTexture(GL_TEXTURE_2D, layer->texture); |
| 470 | |
Romain Guy | c00972b | 2010-10-12 11:31:07 -0700 | [diff] [blame] | 471 | if (layer->empty) { |
| 472 | glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bounds.left, mHeight - bounds.bottom, |
| 473 | layer->width, layer->height, 0); |
| 474 | layer->empty = false; |
| 475 | } else { |
| 476 | glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, bounds.left, mHeight - bounds.bottom, |
| 477 | bounds.getWidth(), bounds.getHeight()); |
| 478 | } |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 479 | |
| 480 | // Enqueue the buffer coordinates to clear the corresponding region later |
| 481 | mLayers.push(new Rect(bounds)); |
| 482 | } |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 483 | |
Romain Guy | d55a861 | 2010-06-28 17:42:46 -0700 | [diff] [blame] | 484 | return true; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 485 | } |
| 486 | |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 487 | /** |
| 488 | * Read the documentation of createLayer() before doing anything in this method. |
| 489 | */ |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 490 | void OpenGLRenderer::composeLayer(sp<Snapshot> current, sp<Snapshot> previous) { |
| 491 | if (!current->layer) { |
| 492 | LOGE("Attempting to compose a layer that does not exist"); |
| 493 | return; |
| 494 | } |
| 495 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 496 | const bool fboLayer = current->flags & SkCanvas::kClipToLayer_SaveFlag; |
| 497 | |
| 498 | if (fboLayer) { |
| 499 | // Unbind current FBO and restore previous one |
| 500 | glBindFramebuffer(GL_FRAMEBUFFER, previous->fbo); |
| 501 | } |
| 502 | |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 503 | // Restore the clip from the previous snapshot |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 504 | const Rect& clip = *previous->clipRect; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 505 | glScissor(clip.left, previous->height - clip.bottom, clip.getWidth(), clip.getHeight()); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 506 | |
| 507 | Layer* layer = current->layer; |
| 508 | const Rect& rect = layer->layer; |
| 509 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 510 | if (!fboLayer && layer->alpha < 255) { |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 511 | drawColorRect(rect.left, rect.top, rect.right, rect.bottom, |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 512 | layer->alpha << 24, SkXfermode::kDstIn_Mode, true); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 515 | const Rect& texCoords = layer->texCoords; |
| 516 | resetDrawTextureTexCoords(texCoords.left, texCoords.top, texCoords.right, texCoords.bottom); |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 517 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 518 | if (fboLayer) { |
| 519 | drawTextureRect(rect.left, rect.top, rect.right, rect.bottom, |
| 520 | layer->texture, layer->alpha / 255.0f, layer->mode, layer->blend); |
| 521 | } else { |
| 522 | drawTextureMesh(rect.left, rect.top, rect.right, rect.bottom, layer->texture, |
| 523 | 1.0f, layer->mode, layer->blend, &mMeshVertices[0].position[0], |
| 524 | &mMeshVertices[0].texture[0], GL_TRIANGLE_STRIP, gMeshCount, true, true); |
| 525 | } |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 526 | |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 527 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
| 528 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 529 | if (fboLayer) { |
| 530 | // Detach the texture from the FBO |
| 531 | glBindFramebuffer(GL_FRAMEBUFFER, current->fbo); |
| 532 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, 0, 0); |
| 533 | glBindFramebuffer(GL_FRAMEBUFFER, previous->fbo); |
| 534 | |
| 535 | // Put the FBO name back in the cache, if it doesn't fit, it will be destroyed |
| 536 | mCaches.fboCache.put(current->fbo); |
| 537 | } |
| 538 | |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 539 | // 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] | 540 | if (!mCaches.layerCache.put(layer)) { |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 541 | LAYER_LOGD("Deleting layer"); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 542 | glDeleteTextures(1, &layer->texture); |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 543 | delete layer; |
| 544 | } |
| 545 | } |
| 546 | |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 547 | void OpenGLRenderer::clearLayerRegions() { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 548 | if (mLayers.size() == 0 || mSnapshot->invisible) return; |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 549 | |
| 550 | for (uint32_t i = 0; i < mLayers.size(); i++) { |
| 551 | Rect* bounds = mLayers.itemAt(i); |
| 552 | |
| 553 | // Clear the framebuffer where the layer will draw |
| 554 | glScissor(bounds->left, mHeight - bounds->bottom, |
| 555 | bounds->getWidth(), bounds->getHeight()); |
| 556 | glClearColor(0.0f, 0.0f, 0.0f, 0.0f); |
| 557 | glClear(GL_COLOR_BUFFER_BIT); |
| 558 | |
| 559 | delete bounds; |
| 560 | } |
| 561 | mLayers.clear(); |
| 562 | |
| 563 | // Restore the clip |
| 564 | setScissorFromClip(); |
| 565 | } |
| 566 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 567 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 568 | // Transforms |
| 569 | /////////////////////////////////////////////////////////////////////////////// |
| 570 | |
| 571 | void OpenGLRenderer::translate(float dx, float dy) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 572 | mSnapshot->transform->translate(dx, dy, 0.0f); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | void OpenGLRenderer::rotate(float degrees) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 576 | mSnapshot->transform->rotate(degrees, 0.0f, 0.0f, 1.0f); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | void OpenGLRenderer::scale(float sx, float sy) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 580 | mSnapshot->transform->scale(sx, sy, 1.0f); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | void OpenGLRenderer::setMatrix(SkMatrix* matrix) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 584 | mSnapshot->transform->load(*matrix); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | void OpenGLRenderer::getMatrix(SkMatrix* matrix) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 588 | mSnapshot->transform->copyTo(*matrix); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | void OpenGLRenderer::concatMatrix(SkMatrix* matrix) { |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 592 | mat4 m(*matrix); |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 593 | mSnapshot->transform->multiply(m); |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | /////////////////////////////////////////////////////////////////////////////// |
| 597 | // Clipping |
| 598 | /////////////////////////////////////////////////////////////////////////////// |
| 599 | |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 600 | void OpenGLRenderer::setScissorFromClip() { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 601 | const Rect& clip = *mSnapshot->clipRect; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 602 | glScissor(clip.left, mSnapshot->height - clip.bottom, clip.getWidth(), clip.getHeight()); |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | const Rect& OpenGLRenderer::getClipBounds() { |
Romain Guy | 079ba2c | 2010-07-16 14:12:24 -0700 | [diff] [blame] | 606 | return mSnapshot->getLocalClip(); |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 609 | bool OpenGLRenderer::quickReject(float left, float top, float right, float bottom) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 610 | if (mSnapshot->invisible) { |
| 611 | return true; |
| 612 | } |
| 613 | |
Romain Guy | 1d83e19 | 2010-08-17 11:37:00 -0700 | [diff] [blame] | 614 | Rect r(left, top, right, bottom); |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 615 | mSnapshot->transform->mapRect(r); |
| 616 | return !mSnapshot->clipRect->intersects(r); |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Romain Guy | 079ba2c | 2010-07-16 14:12:24 -0700 | [diff] [blame] | 619 | bool OpenGLRenderer::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) { |
| 620 | bool clipped = mSnapshot->clip(left, top, right, bottom, op); |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 621 | if (clipped) { |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 622 | setScissorFromClip(); |
| 623 | } |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 624 | return !mSnapshot->clipRect->isEmpty(); |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Romain Guy | f6a11b8 | 2010-06-23 17:47:49 -0700 | [diff] [blame] | 627 | /////////////////////////////////////////////////////////////////////////////// |
| 628 | // Drawing |
| 629 | /////////////////////////////////////////////////////////////////////////////// |
| 630 | |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 631 | void OpenGLRenderer::drawBitmap(SkBitmap* bitmap, float left, float top, const SkPaint* paint) { |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 632 | const float right = left + bitmap->width(); |
| 633 | const float bottom = top + bitmap->height(); |
| 634 | |
| 635 | if (quickReject(left, top, right, bottom)) { |
| 636 | return; |
| 637 | } |
| 638 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 639 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 640 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b9 | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 641 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 642 | const AutoTexture autoCleanup(texture); |
| 643 | |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 644 | drawTextureRect(left, top, right, bottom, texture, paint); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 645 | } |
| 646 | |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 647 | void OpenGLRenderer::drawBitmap(SkBitmap* bitmap, const SkMatrix* matrix, const SkPaint* paint) { |
| 648 | Rect r(0.0f, 0.0f, bitmap->width(), bitmap->height()); |
| 649 | const mat4 transform(*matrix); |
| 650 | transform.mapRect(r); |
| 651 | |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 652 | if (quickReject(r.left, r.top, r.right, r.bottom)) { |
| 653 | return; |
| 654 | } |
| 655 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 656 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 657 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b9 | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 658 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 659 | const AutoTexture autoCleanup(texture); |
| 660 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 661 | drawTextureRect(r.left, r.top, r.right, r.bottom, texture, paint); |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 664 | void OpenGLRenderer::drawBitmap(SkBitmap* bitmap, |
| 665 | float srcLeft, float srcTop, float srcRight, float srcBottom, |
| 666 | float dstLeft, float dstTop, float dstRight, float dstBottom, |
Romain Guy | f86ef57 | 2010-07-01 11:05:42 -0700 | [diff] [blame] | 667 | const SkPaint* paint) { |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 668 | if (quickReject(dstLeft, dstTop, dstRight, dstBottom)) { |
| 669 | return; |
| 670 | } |
| 671 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 672 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 673 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b9 | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 674 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 675 | const AutoTexture autoCleanup(texture); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 676 | |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 677 | const float width = texture->width; |
| 678 | const float height = texture->height; |
| 679 | |
| 680 | const float u1 = srcLeft / width; |
| 681 | const float v1 = srcTop / height; |
| 682 | const float u2 = srcRight / width; |
| 683 | const float v2 = srcBottom / height; |
| 684 | |
| 685 | resetDrawTextureTexCoords(u1, v1, u2, v2); |
| 686 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 687 | drawTextureRect(dstLeft, dstTop, dstRight, dstBottom, texture, paint); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 688 | |
| 689 | resetDrawTextureTexCoords(0.0f, 0.0f, 1.0f, 1.0f); |
| 690 | } |
| 691 | |
Romain Guy | 4aa9057 | 2010-09-26 18:40:37 -0700 | [diff] [blame] | 692 | void OpenGLRenderer::drawPatch(SkBitmap* bitmap, const int32_t* xDivs, const int32_t* yDivs, |
Romain Guy | 4bb9420 | 2010-10-12 15:59:26 -0700 | [diff] [blame] | 693 | const uint32_t* colors, uint32_t width, uint32_t height, int8_t numColors, |
| 694 | float left, float top, float right, float bottom, const SkPaint* paint) { |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 695 | if (quickReject(left, top, right, bottom)) { |
| 696 | return; |
| 697 | } |
| 698 | |
Romain Guy | 61c8c9c | 2010-08-09 20:48:09 -0700 | [diff] [blame] | 699 | glActiveTexture(GL_TEXTURE0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 700 | const Texture* texture = mCaches.textureCache.get(bitmap); |
Romain Guy | 9cccc2b9 | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 701 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 702 | const AutoTexture autoCleanup(texture); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 703 | |
| 704 | int alpha; |
| 705 | SkXfermode::Mode mode; |
| 706 | getAlphaAndMode(paint, &alpha, &mode); |
| 707 | |
Romain Guy | 2728f96 | 2010-10-08 18:36:15 -0700 | [diff] [blame] | 708 | const Patch* mesh = mCaches.patchCache.get(bitmap->width(), bitmap->height(), |
Romain Guy | 4bb9420 | 2010-10-12 15:59:26 -0700 | [diff] [blame] | 709 | right - left, bottom - top, xDivs, yDivs, colors, width, height, numColors); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 710 | |
| 711 | // Specify right and bottom as +1.0f from left/top to prevent scaling since the |
| 712 | // patch mesh already defines the final size |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 713 | drawTextureMesh(left, top, left + 1.0f, top + 1.0f, texture->id, alpha / 255.0f, |
| 714 | mode, texture->blend, &mesh->vertices[0].position[0], |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 715 | &mesh->vertices[0].texture[0], GL_TRIANGLES, mesh->verticesCount); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 716 | } |
| 717 | |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 718 | void OpenGLRenderer::drawLines(float* points, int count, const SkPaint* paint) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 719 | if (mSnapshot->invisible) return; |
| 720 | |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 721 | int alpha; |
| 722 | SkXfermode::Mode mode; |
| 723 | getAlphaAndMode(paint, &alpha, &mode); |
| 724 | |
| 725 | uint32_t color = paint->getColor(); |
| 726 | const GLfloat a = alpha / 255.0f; |
| 727 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 728 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 729 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 730 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 731 | const bool isAA = paint->isAntiAlias(); |
| 732 | if (isAA) { |
| 733 | GLuint textureUnit = 0; |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 734 | setupTextureAlpha8(mCaches.line.getTexture(), 0, 0, textureUnit, 0.0f, 0.0f, r, g, b, a, |
| 735 | mode, false, true, mCaches.line.getVertices(), mCaches.line.getTexCoords()); |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 736 | } else { |
| 737 | setupColorRect(0.0f, 0.0f, 1.0f, 1.0f, r, g, b, a, mode, false); |
| 738 | } |
| 739 | |
| 740 | const float strokeWidth = paint->getStrokeWidth(); |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 741 | const GLsizei elementsCount = isAA ? mCaches.line.getElementsCount() : gMeshCount; |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 742 | const GLenum drawMode = isAA ? GL_TRIANGLES : GL_TRIANGLE_STRIP; |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 743 | |
| 744 | for (int i = 0; i < count; i += 4) { |
| 745 | float tx = 0.0f; |
| 746 | float ty = 0.0f; |
| 747 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 748 | if (isAA) { |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 749 | 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] | 750 | strokeWidth, tx, ty); |
| 751 | } else { |
Romain Guy | b5ab417 | 2010-09-17 15:36:56 -0700 | [diff] [blame] | 752 | ty = strokeWidth <= 1.0f ? 0.0f : -strokeWidth * 0.5f; |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 753 | } |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 754 | |
| 755 | const float dx = points[i + 2] - points[i]; |
| 756 | const float dy = points[i + 3] - points[i + 1]; |
| 757 | const float mag = sqrtf(dx * dx + dy * dy); |
| 758 | const float angle = acos(dx / mag); |
| 759 | |
| 760 | mModelView.loadTranslate(points[i], points[i + 1], 0.0f); |
| 761 | if (angle > MIN_ANGLE || angle < -MIN_ANGLE) { |
| 762 | mModelView.rotate(angle * RAD_TO_DEG, 0.0f, 0.0f, 1.0f); |
| 763 | } |
| 764 | mModelView.translate(tx, ty, 0.0f); |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 765 | if (!isAA) { |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 766 | float length = mCaches.line.getLength(points[i], points[i + 1], |
| 767 | points[i + 2], points[i + 3]); |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 768 | mModelView.scale(length, strokeWidth, 1.0f); |
| 769 | } |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 770 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
| 771 | |
| 772 | if (mShader) { |
| 773 | mShader->updateTransforms(mCaches.currentProgram, mModelView, *mSnapshot); |
| 774 | } |
| 775 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 776 | glDrawArrays(drawMode, 0, elementsCount); |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 777 | } |
| 778 | |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 779 | if (isAA) { |
| 780 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
| 781 | } |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 782 | } |
| 783 | |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 784 | void OpenGLRenderer::drawColor(int color, SkXfermode::Mode mode) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 785 | const Rect& clip = *mSnapshot->clipRect; |
Romain Guy | 3d58c03 | 2010-07-14 16:34:53 -0700 | [diff] [blame] | 786 | drawColorRect(clip.left, clip.top, clip.right, clip.bottom, color, mode, true); |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 787 | } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 788 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 789 | 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] | 790 | if (quickReject(left, top, right, bottom)) { |
| 791 | return; |
| 792 | } |
| 793 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 794 | SkXfermode::Mode mode; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 795 | if (!mExtensions.hasFramebufferFetch()) { |
| 796 | const bool isMode = SkXfermode::IsMode(p->getXfermode(), &mode); |
| 797 | if (!isMode) { |
| 798 | // Assume SRC_OVER |
| 799 | mode = SkXfermode::kSrcOver_Mode; |
| 800 | } |
| 801 | } else { |
| 802 | mode = getXfermode(p->getXfermode()); |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | // Skia draws using the color's alpha channel if < 255 |
| 806 | // Otherwise, it uses the paint's alpha |
| 807 | int color = p->getColor(); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 808 | if (((color >> 24) & 0xff) == 255) { |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 809 | color |= p->getAlpha() << 24; |
| 810 | } |
| 811 | |
| 812 | drawColorRect(left, top, right, bottom, color, mode); |
Romain Guy | c7d5349 | 2010-06-25 13:41:57 -0700 | [diff] [blame] | 813 | } |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 814 | |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 815 | void OpenGLRenderer::drawText(const char* text, int bytesCount, int count, |
| 816 | float x, float y, SkPaint* paint) { |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 817 | if (text == NULL || count == 0 || (paint->getAlpha() == 0 && paint->getXfermode() == NULL)) { |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 818 | return; |
| 819 | } |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 820 | if (mSnapshot->invisible) return; |
Romain Guy | e2d345e | 2010-09-24 18:39:22 -0700 | [diff] [blame] | 821 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 822 | paint->setAntiAlias(true); |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 823 | |
Romain Guy | a674ab7 | 2010-08-10 17:26:42 -0700 | [diff] [blame] | 824 | float length = -1.0f; |
Romain Guy | e8e62a4 | 2010-07-23 18:55:21 -0700 | [diff] [blame] | 825 | switch (paint->getTextAlign()) { |
| 826 | case SkPaint::kCenter_Align: |
| 827 | length = paint->measureText(text, bytesCount); |
| 828 | x -= length / 2.0f; |
| 829 | break; |
| 830 | case SkPaint::kRight_Align: |
| 831 | length = paint->measureText(text, bytesCount); |
| 832 | x -= length; |
| 833 | break; |
| 834 | default: |
| 835 | break; |
| 836 | } |
| 837 | |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 838 | int alpha; |
| 839 | SkXfermode::Mode mode; |
| 840 | getAlphaAndMode(paint, &alpha, &mode); |
| 841 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 842 | uint32_t color = paint->getColor(); |
| 843 | const GLfloat a = alpha / 255.0f; |
| 844 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 845 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 846 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 847 | |
Romain Guy | b45c0c9 | 2010-08-26 20:35:23 -0700 | [diff] [blame] | 848 | FontRenderer& fontRenderer = mCaches.fontRenderer.getFontRenderer(paint); |
| 849 | fontRenderer.setFont(paint, SkTypeface::UniqueID(paint->getTypeface()), |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 850 | paint->getTextSize()); |
Romain Guy | e2d345e | 2010-09-24 18:39:22 -0700 | [diff] [blame] | 851 | |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 852 | if (mHasShadow) { |
| 853 | glActiveTexture(gTextureUnits[0]); |
Romain Guy | b45c0c9 | 2010-08-26 20:35:23 -0700 | [diff] [blame] | 854 | mCaches.dropShadowCache.setFontRenderer(fontRenderer); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 855 | const ShadowTexture* shadow = mCaches.dropShadowCache.get(paint, text, bytesCount, |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 856 | count, mShadowRadius); |
| 857 | const AutoTexture autoCleanup(shadow); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 858 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 859 | setupShadow(shadow, x, y, mode, a); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 860 | |
| 861 | // Draw the mesh |
| 862 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 863 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 864 | } |
| 865 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 866 | GLuint textureUnit = 0; |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 867 | glActiveTexture(gTextureUnits[textureUnit]); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 868 | |
Romain Guy | e8cb9c14 | 2010-10-04 14:14:11 -0700 | [diff] [blame] | 869 | // Assume that the modelView matrix does not force scales, rotates, etc. |
| 870 | const bool linearFilter = mSnapshot->transform->changesBounds(); |
| 871 | setupTextureAlpha8(fontRenderer.getTexture(linearFilter), 0, 0, textureUnit, |
| 872 | x, y, r, g, b, a, mode, false, true); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 873 | |
Romain Guy | 09147fb | 2010-07-22 13:08:20 -0700 | [diff] [blame] | 874 | const Rect& clip = mSnapshot->getLocalClip(); |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 875 | clearLayerRegions(); |
Romain Guy | b45c0c9 | 2010-08-26 20:35:23 -0700 | [diff] [blame] | 876 | fontRenderer.renderText(paint, &clip, text, 0, bytesCount, count, x, y); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 877 | |
| 878 | glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 879 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
Romain Guy | a674ab7 | 2010-08-10 17:26:42 -0700 | [diff] [blame] | 880 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 881 | drawTextDecorations(text, bytesCount, length, x, y, paint); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 882 | } |
| 883 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 884 | void OpenGLRenderer::drawPath(SkPath* path, SkPaint* paint) { |
Romain Guy | dbc26d2 | 2010-10-11 17:58:29 -0700 | [diff] [blame] | 885 | if (mSnapshot->invisible) return; |
| 886 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 887 | GLuint textureUnit = 0; |
| 888 | glActiveTexture(gTextureUnits[textureUnit]); |
| 889 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 890 | const PathTexture* texture = mCaches.pathCache.get(path, paint); |
Romain Guy | 9cccc2b9 | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 891 | if (!texture) return; |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 892 | const AutoTexture autoCleanup(texture); |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 893 | |
Romain Guy | 8b55f37 | 2010-08-18 17:10:07 -0700 | [diff] [blame] | 894 | const float x = texture->left - texture->offset; |
| 895 | const float y = texture->top - texture->offset; |
| 896 | |
| 897 | if (quickReject(x, y, x + texture->width, y + texture->height)) { |
| 898 | return; |
| 899 | } |
| 900 | |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 901 | int alpha; |
| 902 | SkXfermode::Mode mode; |
| 903 | getAlphaAndMode(paint, &alpha, &mode); |
| 904 | |
| 905 | uint32_t color = paint->getColor(); |
| 906 | const GLfloat a = alpha / 255.0f; |
| 907 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 908 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 909 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 910 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 911 | setupTextureAlpha8(texture, textureUnit, x, y, r, g, b, a, mode, true, true); |
| 912 | |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 913 | clearLayerRegions(); |
| 914 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 915 | // Draw the mesh |
| 916 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 917 | glDisableVertexAttribArray(mCaches.currentProgram->getAttrib("texCoords")); |
Romain Guy | 7fbcc04 | 2010-08-04 15:40:07 -0700 | [diff] [blame] | 918 | } |
| 919 | |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 920 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 921 | // Shaders |
| 922 | /////////////////////////////////////////////////////////////////////////////// |
| 923 | |
| 924 | void OpenGLRenderer::resetShader() { |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 925 | mShader = NULL; |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 926 | } |
| 927 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 928 | void OpenGLRenderer::setupShader(SkiaShader* shader) { |
| 929 | mShader = shader; |
| 930 | if (mShader) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 931 | mShader->set(&mCaches.textureCache, &mCaches.gradientCache); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 932 | } |
Romain Guy | 7fac2e1 | 2010-07-16 17:10:13 -0700 | [diff] [blame] | 933 | } |
| 934 | |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 935 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 936 | // Color filters |
| 937 | /////////////////////////////////////////////////////////////////////////////// |
| 938 | |
| 939 | void OpenGLRenderer::resetColorFilter() { |
| 940 | mColorFilter = NULL; |
| 941 | } |
| 942 | |
| 943 | void OpenGLRenderer::setupColorFilter(SkiaColorFilter* filter) { |
| 944 | mColorFilter = filter; |
| 945 | } |
| 946 | |
| 947 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 948 | // Drop shadow |
| 949 | /////////////////////////////////////////////////////////////////////////////// |
| 950 | |
| 951 | void OpenGLRenderer::resetShadow() { |
| 952 | mHasShadow = false; |
| 953 | } |
| 954 | |
| 955 | void OpenGLRenderer::setupShadow(float radius, float dx, float dy, int color) { |
| 956 | mHasShadow = true; |
| 957 | mShadowRadius = radius; |
| 958 | mShadowDx = dx; |
| 959 | mShadowDy = dy; |
| 960 | mShadowColor = color; |
| 961 | } |
| 962 | |
| 963 | /////////////////////////////////////////////////////////////////////////////// |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 964 | // Drawing implementation |
| 965 | /////////////////////////////////////////////////////////////////////////////// |
| 966 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 967 | void OpenGLRenderer::setupShadow(const ShadowTexture* texture, float x, float y, |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 968 | SkXfermode::Mode mode, float alpha) { |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 969 | const float sx = x - texture->left + mShadowDx; |
| 970 | const float sy = y - texture->top + mShadowDy; |
| 971 | |
Romain Guy | 2542d19 | 2010-08-18 11:47:12 -0700 | [diff] [blame] | 972 | const int shadowAlpha = ((mShadowColor >> 24) & 0xFF); |
| 973 | const GLfloat a = shadowAlpha < 255 ? shadowAlpha / 255.0f : alpha; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 974 | const GLfloat r = a * ((mShadowColor >> 16) & 0xFF) / 255.0f; |
| 975 | const GLfloat g = a * ((mShadowColor >> 8) & 0xFF) / 255.0f; |
| 976 | const GLfloat b = a * ((mShadowColor ) & 0xFF) / 255.0f; |
| 977 | |
| 978 | GLuint textureUnit = 0; |
| 979 | setupTextureAlpha8(texture, textureUnit, sx, sy, r, g, b, a, mode, true, false); |
| 980 | } |
| 981 | |
| 982 | void OpenGLRenderer::setupTextureAlpha8(const Texture* texture, GLuint& textureUnit, |
| 983 | float x, float y, float r, float g, float b, float a, SkXfermode::Mode mode, |
| 984 | bool transforms, bool applyFilters) { |
| 985 | setupTextureAlpha8(texture->id, texture->width, texture->height, textureUnit, |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 986 | x, y, r, g, b, a, mode, transforms, applyFilters, |
| 987 | &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0]); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 988 | } |
| 989 | |
| 990 | void OpenGLRenderer::setupTextureAlpha8(GLuint texture, uint32_t width, uint32_t height, |
| 991 | GLuint& textureUnit, float x, float y, float r, float g, float b, float a, |
| 992 | SkXfermode::Mode mode, bool transforms, bool applyFilters) { |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 993 | setupTextureAlpha8(texture, width, height, textureUnit, |
| 994 | x, y, r, g, b, a, mode, transforms, applyFilters, |
| 995 | &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0]); |
| 996 | } |
| 997 | |
| 998 | void OpenGLRenderer::setupTextureAlpha8(GLuint texture, uint32_t width, uint32_t height, |
| 999 | GLuint& textureUnit, float x, float y, float r, float g, float b, float a, |
| 1000 | SkXfermode::Mode mode, bool transforms, bool applyFilters, |
| 1001 | GLvoid* vertices, GLvoid* texCoords) { |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1002 | // Describe the required shaders |
| 1003 | ProgramDescription description; |
| 1004 | description.hasTexture = true; |
| 1005 | description.hasAlpha8Texture = true; |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1006 | const bool setColor = description.setAlpha8Color(r, g, b, a); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1007 | |
| 1008 | if (applyFilters) { |
| 1009 | if (mShader) { |
| 1010 | mShader->describe(description, mExtensions); |
| 1011 | } |
| 1012 | if (mColorFilter) { |
| 1013 | mColorFilter->describe(description, mExtensions); |
| 1014 | } |
| 1015 | } |
| 1016 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1017 | // Setup the blending mode |
| 1018 | chooseBlending(true, mode, description); |
| 1019 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1020 | // Build and use the appropriate shader |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1021 | useProgram(mCaches.programCache.get(description)); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1022 | |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1023 | bindTexture(texture, GL_CLAMP_TO_EDGE, GL_CLAMP_TO_EDGE, textureUnit); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1024 | glUniform1i(mCaches.currentProgram->getUniform("sampler"), textureUnit); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1025 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1026 | int texCoordsSlot = mCaches.currentProgram->getAttrib("texCoords"); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1027 | glEnableVertexAttribArray(texCoordsSlot); |
| 1028 | |
| 1029 | // Setup attributes |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1030 | glVertexAttribPointer(mCaches.currentProgram->position, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 1031 | gMeshStride, vertices); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1032 | glVertexAttribPointer(texCoordsSlot, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | 759ea80 | 2010-09-16 20:49:46 -0700 | [diff] [blame] | 1033 | gMeshStride, texCoords); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1034 | |
| 1035 | // Setup uniforms |
| 1036 | if (transforms) { |
| 1037 | mModelView.loadTranslate(x, y, 0.0f); |
| 1038 | mModelView.scale(width, height, 1.0f); |
| 1039 | } else { |
| 1040 | mModelView.loadIdentity(); |
| 1041 | } |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 1042 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1043 | if (setColor) { |
| 1044 | mCaches.currentProgram->setColor(r, g, b, a); |
| 1045 | } |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1046 | |
| 1047 | textureUnit++; |
| 1048 | if (applyFilters) { |
| 1049 | // Setup attributes and uniforms required by the shaders |
| 1050 | if (mShader) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1051 | mShader->setupProgram(mCaches.currentProgram, mModelView, *mSnapshot, &textureUnit); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1052 | } |
| 1053 | if (mColorFilter) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1054 | mColorFilter->setupProgram(mCaches.currentProgram); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1055 | } |
| 1056 | } |
| 1057 | } |
| 1058 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1059 | // Same values used by Skia |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1060 | #define kStdStrikeThru_Offset (-6.0f / 21.0f) |
| 1061 | #define kStdUnderline_Offset (1.0f / 9.0f) |
| 1062 | #define kStdUnderline_Thickness (1.0f / 18.0f) |
| 1063 | |
| 1064 | void OpenGLRenderer::drawTextDecorations(const char* text, int bytesCount, float length, |
| 1065 | float x, float y, SkPaint* paint) { |
| 1066 | // Handle underline and strike-through |
| 1067 | uint32_t flags = paint->getFlags(); |
| 1068 | if (flags & (SkPaint::kUnderlineText_Flag | SkPaint::kStrikeThruText_Flag)) { |
| 1069 | float underlineWidth = length; |
| 1070 | // If length is > 0.0f, we already measured the text for the text alignment |
| 1071 | if (length <= 0.0f) { |
| 1072 | underlineWidth = paint->measureText(text, bytesCount); |
| 1073 | } |
| 1074 | |
| 1075 | float offsetX = 0; |
| 1076 | switch (paint->getTextAlign()) { |
| 1077 | case SkPaint::kCenter_Align: |
| 1078 | offsetX = underlineWidth * 0.5f; |
| 1079 | break; |
| 1080 | case SkPaint::kRight_Align: |
| 1081 | offsetX = underlineWidth; |
| 1082 | break; |
| 1083 | default: |
| 1084 | break; |
| 1085 | } |
| 1086 | |
| 1087 | if (underlineWidth > 0.0f) { |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1088 | const float textSize = paint->getTextSize(); |
| 1089 | const float strokeWidth = textSize * kStdUnderline_Thickness; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1090 | |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1091 | const float left = x - offsetX; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1092 | float top = 0.0f; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1093 | |
| 1094 | const int pointsCount = 4 * (flags & SkPaint::kStrikeThruText_Flag ? 2 : 1); |
| 1095 | float points[pointsCount]; |
| 1096 | int currentPoint = 0; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1097 | |
| 1098 | if (flags & SkPaint::kUnderlineText_Flag) { |
| 1099 | top = y + textSize * kStdUnderline_Offset; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1100 | points[currentPoint++] = left; |
| 1101 | points[currentPoint++] = top; |
| 1102 | points[currentPoint++] = left + underlineWidth; |
| 1103 | points[currentPoint++] = top; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1104 | } |
| 1105 | |
| 1106 | if (flags & SkPaint::kStrikeThruText_Flag) { |
| 1107 | top = y + textSize * kStdStrikeThru_Offset; |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1108 | points[currentPoint++] = left; |
| 1109 | points[currentPoint++] = top; |
| 1110 | points[currentPoint++] = left + underlineWidth; |
| 1111 | points[currentPoint++] = top; |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1112 | } |
Romain Guy | e20ecbd | 2010-09-22 19:49:04 -0700 | [diff] [blame] | 1113 | |
| 1114 | SkPaint linesPaint(*paint); |
| 1115 | linesPaint.setStrokeWidth(strokeWidth); |
| 1116 | |
| 1117 | drawLines(&points[0], pointsCount, &linesPaint); |
Romain Guy | 0a41749 | 2010-08-16 20:26:20 -0700 | [diff] [blame] | 1118 | } |
| 1119 | } |
| 1120 | } |
| 1121 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1122 | void OpenGLRenderer::drawColorRect(float left, float top, float right, float bottom, |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 1123 | int color, SkXfermode::Mode mode, bool ignoreTransform) { |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 1124 | clearLayerRegions(); |
| 1125 | |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1126 | // If a shader is set, preserve only the alpha |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1127 | if (mShader) { |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1128 | color |= 0x00ffffff; |
| 1129 | } |
| 1130 | |
| 1131 | // Render using pre-multiplied alpha |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1132 | const int alpha = (color >> 24) & 0xFF; |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1133 | const GLfloat a = alpha / 255.0f; |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 1134 | const GLfloat r = a * ((color >> 16) & 0xFF) / 255.0f; |
| 1135 | const GLfloat g = a * ((color >> 8) & 0xFF) / 255.0f; |
| 1136 | const GLfloat b = a * ((color ) & 0xFF) / 255.0f; |
| 1137 | |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 1138 | setupColorRect(left, top, right, bottom, r, g, b, a, mode, ignoreTransform); |
| 1139 | |
| 1140 | // Draw the mesh |
| 1141 | glDrawArrays(GL_TRIANGLE_STRIP, 0, gMeshCount); |
| 1142 | } |
| 1143 | |
| 1144 | void OpenGLRenderer::setupColorRect(float left, float top, float right, float bottom, |
| 1145 | 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] | 1146 | GLuint textureUnit = 0; |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 1147 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1148 | // Describe the required shaders |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1149 | ProgramDescription description; |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1150 | const bool setColor = description.setColor(r, g, b, a); |
| 1151 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1152 | if (mShader) { |
| 1153 | mShader->describe(description, mExtensions); |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 1154 | } |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1155 | if (mColorFilter) { |
| 1156 | mColorFilter->describe(description, mExtensions); |
| 1157 | } |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1158 | |
Romain Guy | 1c740bc | 2010-09-13 18:00:09 -0700 | [diff] [blame] | 1159 | // Setup the blending mode |
Romain Guy | c95c8d6 | 2010-09-17 15:31:32 -0700 | [diff] [blame] | 1160 | chooseBlending(a < 1.0f || (mShader && mShader->blend()), mode, description); |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1161 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1162 | // Build and use the appropriate shader |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1163 | useProgram(mCaches.programCache.get(description)); |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1164 | |
| 1165 | // Setup attributes |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1166 | glVertexAttribPointer(mCaches.currentProgram->position, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1167 | gMeshStride, &mMeshVertices[0].position[0]); |
| 1168 | |
| 1169 | // Setup uniforms |
| 1170 | mModelView.loadTranslate(left, top, 0.0f); |
| 1171 | mModelView.scale(right - left, bottom - top, 1.0f); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1172 | if (!ignoreTransform) { |
Romain Guy | 8aef54f | 2010-09-01 15:13:49 -0700 | [diff] [blame] | 1173 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1174 | } else { |
| 1175 | mat4 identity; |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1176 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, identity); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1177 | } |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1178 | mCaches.currentProgram->setColor(r, g, b, a); |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 1179 | |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1180 | // Setup attributes and uniforms required by the shaders |
| 1181 | if (mShader) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1182 | mShader->setupProgram(mCaches.currentProgram, mModelView, *mSnapshot, &textureUnit); |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 1183 | } |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1184 | if (mColorFilter) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1185 | mColorFilter->setupProgram(mCaches.currentProgram); |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1186 | } |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1187 | } |
| 1188 | |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1189 | void OpenGLRenderer::drawTextureRect(float left, float top, float right, float bottom, |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1190 | const Texture* texture, const SkPaint* paint) { |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1191 | int alpha; |
| 1192 | SkXfermode::Mode mode; |
| 1193 | getAlphaAndMode(paint, &alpha, &mode); |
| 1194 | |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1195 | drawTextureMesh(left, top, right, bottom, texture->id, alpha / 255.0f, mode, |
| 1196 | texture->blend, &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0], |
| 1197 | GL_TRIANGLE_STRIP, gMeshCount); |
Romain Guy | 85bf02f | 2010-06-22 13:11:24 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1200 | void OpenGLRenderer::drawTextureRect(float left, float top, float right, float bottom, |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1201 | GLuint texture, float alpha, SkXfermode::Mode mode, bool blend) { |
| 1202 | drawTextureMesh(left, top, right, bottom, texture, alpha, mode, blend, |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1203 | &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0], |
| 1204 | GL_TRIANGLE_STRIP, gMeshCount); |
Romain Guy | f7f9355 | 2010-07-08 19:17:03 -0700 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | void OpenGLRenderer::drawTextureMesh(float left, float top, float right, float bottom, |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1208 | GLuint texture, float alpha, SkXfermode::Mode mode, bool blend, |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1209 | GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1210 | bool swapSrcDst, bool ignoreTransform) { |
Romain Guy | 8694230 | 2010-09-12 13:02:16 -0700 | [diff] [blame] | 1211 | clearLayerRegions(); |
| 1212 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1213 | ProgramDescription description; |
| 1214 | description.hasTexture = true; |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1215 | const bool setColor = description.setColor(alpha, alpha, alpha, alpha); |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1216 | if (mColorFilter) { |
| 1217 | mColorFilter->describe(description, mExtensions); |
| 1218 | } |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1219 | |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1220 | mModelView.loadTranslate(left, top, 0.0f); |
| 1221 | mModelView.scale(right - left, bottom - top, 1.0f); |
| 1222 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1223 | chooseBlending(blend || alpha < 1.0f, mode, description, swapSrcDst); |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1224 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1225 | useProgram(mCaches.programCache.get(description)); |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1226 | if (!ignoreTransform) { |
| 1227 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, *mSnapshot->transform); |
| 1228 | } else { |
| 1229 | mat4 m; |
| 1230 | mCaches.currentProgram->set(mOrthoMatrix, mModelView, m); |
| 1231 | } |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1232 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1233 | // Texture |
Romain Guy | 06f96e2 | 2010-07-30 19:18:16 -0700 | [diff] [blame] | 1234 | bindTexture(texture, GL_CLAMP_TO_EDGE, GL_CLAMP_TO_EDGE, 0); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1235 | glUniform1i(mCaches.currentProgram->getUniform("sampler"), 0); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 1236 | |
Romain Guy | a979474 | 2010-07-13 11:37:54 -0700 | [diff] [blame] | 1237 | // Always premultiplied |
Romain Guy | 707b2f7 | 2010-10-11 16:34:59 -0700 | [diff] [blame] | 1238 | if (setColor) { |
| 1239 | mCaches.currentProgram->setColor(alpha, alpha, alpha, alpha); |
| 1240 | } |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1241 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1242 | // Mesh |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1243 | int texCoordsSlot = mCaches.currentProgram->getAttrib("texCoords"); |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1244 | glEnableVertexAttribArray(texCoordsSlot); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1245 | glVertexAttribPointer(mCaches.currentProgram->position, 2, GL_FLOAT, GL_FALSE, |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 1246 | gMeshStride, vertices); |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1247 | glVertexAttribPointer(texCoordsSlot, 2, GL_FLOAT, GL_FALSE, gMeshStride, texCoords); |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1248 | |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1249 | // Color filter |
| 1250 | if (mColorFilter) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1251 | mColorFilter->setupProgram(mCaches.currentProgram); |
Romain Guy | db1938e | 2010-08-02 18:50:22 -0700 | [diff] [blame] | 1252 | } |
| 1253 | |
Romain Guy | 6820ac8 | 2010-09-15 18:11:50 -0700 | [diff] [blame] | 1254 | glDrawArrays(drawMode, 0, elementsCount); |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1255 | glDisableVertexAttribArray(texCoordsSlot); |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1256 | } |
| 1257 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1258 | void OpenGLRenderer::chooseBlending(bool blend, SkXfermode::Mode mode, |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1259 | ProgramDescription& description, bool swapSrcDst) { |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1260 | blend = blend || mode != SkXfermode::kSrcOver_Mode; |
| 1261 | if (blend) { |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1262 | if (mode < SkXfermode::kPlus_Mode) { |
| 1263 | if (!mCaches.blend) { |
| 1264 | glEnable(GL_BLEND); |
| 1265 | } |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1266 | |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1267 | GLenum sourceMode = swapSrcDst ? gBlendsSwap[mode].src : gBlends[mode].src; |
| 1268 | GLenum destMode = swapSrcDst ? gBlendsSwap[mode].dst : gBlends[mode].dst; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1269 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1270 | if (sourceMode != mCaches.lastSrcMode || destMode != mCaches.lastDstMode) { |
| 1271 | glBlendFunc(sourceMode, destMode); |
| 1272 | mCaches.lastSrcMode = sourceMode; |
| 1273 | mCaches.lastDstMode = destMode; |
| 1274 | } |
| 1275 | } else { |
| 1276 | // These blend modes are not supported by OpenGL directly and have |
| 1277 | // to be implemented using shaders. Since the shader will perform |
| 1278 | // the blending, turn blending off here |
| 1279 | if (mExtensions.hasFramebufferFetch()) { |
| 1280 | description.framebufferMode = mode; |
Romain Guy | f607bdc | 2010-09-10 19:20:06 -0700 | [diff] [blame] | 1281 | description.swapSrcDst = swapSrcDst; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1282 | } |
| 1283 | |
| 1284 | if (mCaches.blend) { |
| 1285 | glDisable(GL_BLEND); |
| 1286 | } |
| 1287 | blend = false; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1288 | } |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1289 | } else if (mCaches.blend) { |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1290 | glDisable(GL_BLEND); |
| 1291 | } |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1292 | mCaches.blend = blend; |
Romain Guy | bd6b79b | 2010-06-26 00:13:53 -0700 | [diff] [blame] | 1293 | } |
| 1294 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1295 | bool OpenGLRenderer::useProgram(Program* program) { |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1296 | if (!program->isInUse()) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1297 | if (mCaches.currentProgram != NULL) mCaches.currentProgram->remove(); |
Romain Guy | d27977d | 2010-07-14 19:18:51 -0700 | [diff] [blame] | 1298 | program->use(); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 1299 | mCaches.currentProgram = program; |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 1300 | return false; |
Romain Guy | 260e102 | 2010-07-12 14:41:06 -0700 | [diff] [blame] | 1301 | } |
Romain Guy | 6926c72 | 2010-07-12 20:20:03 -0700 | [diff] [blame] | 1302 | return true; |
Romain Guy | 260e102 | 2010-07-12 14:41:06 -0700 | [diff] [blame] | 1303 | } |
| 1304 | |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1305 | void OpenGLRenderer::resetDrawTextureTexCoords(float u1, float v1, float u2, float v2) { |
Romain Guy | ac670c0 | 2010-07-27 17:39:27 -0700 | [diff] [blame] | 1306 | TextureVertex* v = &mMeshVertices[0]; |
Romain Guy | 82ba814 | 2010-07-09 13:25:56 -0700 | [diff] [blame] | 1307 | TextureVertex::setUV(v++, u1, v1); |
| 1308 | TextureVertex::setUV(v++, u2, v1); |
| 1309 | TextureVertex::setUV(v++, u1, v2); |
| 1310 | TextureVertex::setUV(v++, u2, v2); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 1311 | } |
| 1312 | |
| 1313 | void OpenGLRenderer::getAlphaAndMode(const SkPaint* paint, int* alpha, SkXfermode::Mode* mode) { |
| 1314 | if (paint) { |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1315 | if (!mExtensions.hasFramebufferFetch()) { |
| 1316 | const bool isMode = SkXfermode::IsMode(paint->getXfermode(), mode); |
| 1317 | if (!isMode) { |
| 1318 | // Assume SRC_OVER |
| 1319 | *mode = SkXfermode::kSrcOver_Mode; |
| 1320 | } |
| 1321 | } else { |
| 1322 | *mode = getXfermode(paint->getXfermode()); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | // Skia draws using the color's alpha channel if < 255 |
| 1326 | // Otherwise, it uses the paint's alpha |
| 1327 | int color = paint->getColor(); |
| 1328 | *alpha = (color >> 24) & 0xFF; |
| 1329 | if (*alpha == 255) { |
| 1330 | *alpha = paint->getAlpha(); |
| 1331 | } |
| 1332 | } else { |
| 1333 | *mode = SkXfermode::kSrcOver_Mode; |
| 1334 | *alpha = 255; |
| 1335 | } |
Romain Guy | 026c5e16 | 2010-06-28 17:12:22 -0700 | [diff] [blame] | 1336 | } |
| 1337 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 1338 | SkXfermode::Mode OpenGLRenderer::getXfermode(SkXfermode* mode) { |
| 1339 | if (mode == NULL) { |
| 1340 | return SkXfermode::kSrcOver_Mode; |
| 1341 | } |
| 1342 | return mode->fMode; |
| 1343 | } |
| 1344 | |
Romain Guy | 889f8d1 | 2010-07-29 14:37:42 -0700 | [diff] [blame] | 1345 | void OpenGLRenderer::bindTexture(GLuint texture, GLenum wrapS, GLenum wrapT, GLuint textureUnit) { |
| 1346 | glActiveTexture(gTextureUnits[textureUnit]); |
Romain Guy | ae5575b | 2010-07-29 18:48:04 -0700 | [diff] [blame] | 1347 | glBindTexture(GL_TEXTURE_2D, texture); |
Romain Guy | a1db574 | 2010-07-20 13:09:13 -0700 | [diff] [blame] | 1348 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, wrapS); |
| 1349 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, wrapT); |
| 1350 | } |
| 1351 | |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 1352 | }; // namespace uirenderer |
Romain Guy | e4d0112 | 2010-06-16 18:44:05 -0700 | [diff] [blame] | 1353 | }; // namespace android |