Romain Guy | 694b519 | 2010-07-21 21:33:20 -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 | |
Chris Craik | 5e00c7c | 2016-07-06 16:10:09 -0700 | [diff] [blame] | 17 | #pragma once |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 18 | |
Chris Craik | 96a5c4c | 2015-01-27 15:46:35 -0800 | [diff] [blame] | 19 | #include "font/FontUtil.h" |
| 20 | #include "font/CacheTexture.h" |
| 21 | #include "font/CachedGlyphInfo.h" |
| 22 | #include "font/Font.h" |
Chris Craik | 96a5c4c | 2015-01-27 15:46:35 -0800 | [diff] [blame] | 23 | |
Romain Guy | e3a9b24 | 2013-01-08 11:15:30 -0800 | [diff] [blame] | 24 | #include <utils/LruCache.h> |
Mathias Agopian | 1f5762e | 2013-05-06 20:20:34 -0700 | [diff] [blame] | 25 | #include <utils/StrongPointer.h> |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 26 | |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 27 | #include <SkPaint.h> |
| 28 | |
| 29 | #include <GLES2/gl2.h> |
| 30 | |
John Reck | 272a685 | 2015-07-29 16:48:58 -0700 | [diff] [blame] | 31 | #include <vector> |
| 32 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 33 | #ifdef ANDROID_ENABLE_RENDERSCRIPT |
Tim Murray | 250b1cf | 2013-08-01 14:49:22 -0700 | [diff] [blame] | 34 | #include "RenderScript.h" |
Chris Craik | f2d8ccc | 2013-02-13 16:14:17 -0800 | [diff] [blame] | 35 | namespace RSC { |
| 36 | class Element; |
| 37 | class RS; |
| 38 | class ScriptIntrinsicBlur; |
Tim Murray | 250b1cf | 2013-08-01 14:49:22 -0700 | [diff] [blame] | 39 | class sp; |
Chris Craik | f2d8ccc | 2013-02-13 16:14:17 -0800 | [diff] [blame] | 40 | } |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 41 | #endif |
Chris Craik | f2d8ccc | 2013-02-13 16:14:17 -0800 | [diff] [blame] | 42 | |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 43 | namespace android { |
| 44 | namespace uirenderer { |
| 45 | |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 46 | class BakedOpState; |
| 47 | class BakedOpRenderer; |
Chris Craik | e4db79d | 2015-12-22 16:32:23 -0800 | [diff] [blame] | 48 | struct ClipBase; |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 49 | |
Chris Craik | 8284073 | 2015-04-03 09:37:49 -0700 | [diff] [blame] | 50 | class TextDrawFunctor { |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 51 | public: |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 52 | TextDrawFunctor( |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 53 | BakedOpRenderer* renderer, |
| 54 | const BakedOpState* bakedState, |
Chris Craik | e4db79d | 2015-12-22 16:32:23 -0800 | [diff] [blame] | 55 | const ClipBase* clip, |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 56 | float x, float y, bool pureTranslate, |
Chris Craik | 96a5c4c | 2015-01-27 15:46:35 -0800 | [diff] [blame] | 57 | int alpha, SkXfermode::Mode mode, const SkPaint* paint) |
| 58 | : renderer(renderer) |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 59 | , bakedState(bakedState) |
Chris Craik | 15c3f19 | 2015-12-03 12:16:56 -0800 | [diff] [blame] | 60 | , clip(clip) |
Chris Craik | 96a5c4c | 2015-01-27 15:46:35 -0800 | [diff] [blame] | 61 | , x(x) |
| 62 | , y(y) |
| 63 | , pureTranslate(pureTranslate) |
| 64 | , alpha(alpha) |
| 65 | , mode(mode) |
| 66 | , paint(paint) { |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 67 | } |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 68 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 69 | void draw(CacheTexture& texture, bool linearFiltering); |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 70 | |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 71 | BakedOpRenderer* renderer; |
| 72 | const BakedOpState* bakedState; |
Chris Craik | e4db79d | 2015-12-22 16:32:23 -0800 | [diff] [blame] | 73 | const ClipBase* clip; |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 74 | float x; |
| 75 | float y; |
| 76 | bool pureTranslate; |
| 77 | int alpha; |
| 78 | SkXfermode::Mode mode; |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 79 | const SkPaint* paint; |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 82 | class FontRenderer { |
| 83 | public: |
Chris Craik | c08820f | 2015-09-22 14:22:29 -0700 | [diff] [blame] | 84 | FontRenderer(const uint8_t* gammaTable); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 85 | ~FontRenderer(); |
| 86 | |
John Reck | 272a685 | 2015-07-29 16:48:58 -0700 | [diff] [blame] | 87 | void flushLargeCaches(std::vector<CacheTexture*>& cacheTextures); |
Chet Haase | 9a82456 | 2011-12-16 15:44:59 -0800 | [diff] [blame] | 88 | void flushLargeCaches(); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 89 | |
Chris Craik | 59744b7 | 2014-07-01 17:56:52 -0700 | [diff] [blame] | 90 | void setFont(const SkPaint* paint, const SkMatrix& matrix); |
Chet Haase | e816bae | 2012-08-09 13:39:02 -0700 | [diff] [blame] | 91 | |
Chris Craik | e8c3c81 | 2016-02-05 20:10:50 -0800 | [diff] [blame] | 92 | void precache(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs, const SkMatrix& matrix); |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 93 | void endPrecaching(); |
Chet Haase | e816bae | 2012-08-09 13:39:02 -0700 | [diff] [blame] | 94 | |
Chris Craik | e8c3c81 | 2016-02-05 20:10:50 -0800 | [diff] [blame] | 95 | bool renderPosText(const SkPaint* paint, const Rect* clip, const glyph_t* glyphs, |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 96 | int numGlyphs, int x, int y, const float* positions, |
| 97 | Rect* outBounds, TextDrawFunctor* functor, bool forceFinish = true); |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 98 | |
Chris Craik | e8c3c81 | 2016-02-05 20:10:50 -0800 | [diff] [blame] | 99 | bool renderTextOnPath(const SkPaint* paint, const Rect* clip, const glyph_t* glyphs, |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 100 | int numGlyphs, const SkPath* path, |
| 101 | float hOffset, float vOffset, Rect* outBounds, TextDrawFunctor* functor); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 102 | |
Alex Sakhartchouk | f18136c | 2010-08-06 14:49:04 -0700 | [diff] [blame] | 103 | struct DropShadow { |
| 104 | uint32_t width; |
| 105 | uint32_t height; |
| 106 | uint8_t* image; |
| 107 | int32_t penX; |
| 108 | int32_t penY; |
| 109 | }; |
| 110 | |
| 111 | // After renderDropShadow returns, the called owns the memory in DropShadow.image |
| 112 | // and is responsible for releasing it when it's done with it |
Chris Craik | e8c3c81 | 2016-02-05 20:10:50 -0800 | [diff] [blame] | 113 | DropShadow renderDropShadow(const SkPaint* paint, const glyph_t *glyphs, int numGlyphs, |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 114 | float radius, const float* positions); |
Alex Sakhartchouk | f18136c | 2010-08-06 14:49:04 -0700 | [diff] [blame] | 115 | |
Romain Guy | 257ae35 | 2013-03-20 16:31:12 -0700 | [diff] [blame] | 116 | void setTextureFiltering(bool linearFiltering) { |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 117 | mLinearFiltering = linearFiltering; |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 120 | uint32_t getCacheSize(GLenum format) const; |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 121 | |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 122 | private: |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 123 | friend class Font; |
| 124 | |
Romain Guy | b45c0c9 | 2010-08-26 20:35:23 -0700 | [diff] [blame] | 125 | const uint8_t* mGammaTable; |
| 126 | |
Chet Haase | 2a47c14 | 2011-12-14 15:22:56 -0800 | [diff] [blame] | 127 | void allocateTextureMemory(CacheTexture* cacheTexture); |
Chet Haase | 9a82456 | 2011-12-16 15:44:59 -0800 | [diff] [blame] | 128 | void deallocateTextureMemory(CacheTexture* cacheTexture); |
Chet Haase | 7de0cb1 | 2011-12-05 16:35:38 -0800 | [diff] [blame] | 129 | void initTextTexture(); |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 130 | CacheTexture* createCacheTexture(int width, int height, GLenum format, bool allocate); |
Chet Haase | 7de0cb1 | 2011-12-05 16:35:38 -0800 | [diff] [blame] | 131 | void cacheBitmap(const SkGlyph& glyph, CachedGlyphInfo* cachedGlyph, |
Chet Haase | f942cf1 | 2012-08-30 09:06:46 -0700 | [diff] [blame] | 132 | uint32_t *retOriginX, uint32_t *retOriginY, bool precaching); |
John Reck | 272a685 | 2015-07-29 16:48:58 -0700 | [diff] [blame] | 133 | CacheTexture* cacheBitmapInTexture(std::vector<CacheTexture*>& cacheTextures, const SkGlyph& glyph, |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 134 | uint32_t* startX, uint32_t* startY); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 135 | |
| 136 | void flushAllAndInvalidate(); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 137 | |
| 138 | void checkInit(); |
Chris Craik | 8284073 | 2015-04-03 09:37:49 -0700 | [diff] [blame] | 139 | void initRender(const Rect* clip, Rect* bounds, TextDrawFunctor* functor); |
Romain Guy | 671d6cf | 2012-01-18 12:39:17 -0800 | [diff] [blame] | 140 | void finishRender(); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 141 | |
John Reck | 272a685 | 2015-07-29 16:48:58 -0700 | [diff] [blame] | 142 | void issueDrawCommand(std::vector<CacheTexture*>& cacheTextures); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 143 | void issueDrawCommand(); |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 144 | void appendMeshQuadNoClip(float x1, float y1, float u1, float v1, |
| 145 | float x2, float y2, float u2, float v2, |
| 146 | float x3, float y3, float u3, float v3, |
| 147 | float x4, float y4, float u4, float v4, CacheTexture* texture); |
Romain Guy | d71dd36 | 2011-12-12 19:03:35 -0800 | [diff] [blame] | 148 | void appendMeshQuad(float x1, float y1, float u1, float v1, |
| 149 | float x2, float y2, float u2, float v2, |
| 150 | float x3, float y3, float u3, float v3, |
Chet Haase | 7de0cb1 | 2011-12-05 16:35:38 -0800 | [diff] [blame] | 151 | float x4, float y4, float u4, float v4, CacheTexture* texture); |
Romain Guy | 9777173 | 2012-02-28 18:17:02 -0800 | [diff] [blame] | 152 | void appendRotatedMeshQuad(float x1, float y1, float u1, float v1, |
| 153 | float x2, float y2, float u2, float v2, |
| 154 | float x3, float y3, float u3, float v3, |
| 155 | float x4, float y4, float u4, float v4, CacheTexture* texture); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 156 | |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 157 | void checkTextureUpdate(); |
| 158 | |
| 159 | void setTextureDirty() { |
| 160 | mUploadTexture = true; |
| 161 | } |
| 162 | |
Chet Haase | 7de0cb1 | 2011-12-05 16:35:38 -0800 | [diff] [blame] | 163 | uint32_t mSmallCacheWidth; |
| 164 | uint32_t mSmallCacheHeight; |
Chet Haase | eb32a49 | 2012-08-31 13:54:03 -0700 | [diff] [blame] | 165 | uint32_t mLargeCacheWidth; |
| 166 | uint32_t mLargeCacheHeight; |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 167 | |
John Reck | 272a685 | 2015-07-29 16:48:58 -0700 | [diff] [blame] | 168 | std::vector<CacheTexture*> mACacheTextures; |
| 169 | std::vector<CacheTexture*> mRGBACacheTextures; |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 170 | |
Romain Guy | 09147fb | 2010-07-22 13:08:20 -0700 | [diff] [blame] | 171 | Font* mCurrentFont; |
Romain Guy | e3a9b24 | 2013-01-08 11:15:30 -0800 | [diff] [blame] | 172 | LruCache<Font::FontDescription, Font*> mActiveFonts; |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 173 | |
Chet Haase | 7de0cb1 | 2011-12-05 16:35:38 -0800 | [diff] [blame] | 174 | CacheTexture* mCurrentCacheTexture; |
Chet Haase | 7de0cb1 | 2011-12-05 16:35:38 -0800 | [diff] [blame] | 175 | |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 176 | bool mUploadTexture; |
| 177 | |
Chris Craik | 8284073 | 2015-04-03 09:37:49 -0700 | [diff] [blame] | 178 | TextDrawFunctor* mFunctor; |
Romain Guy | 09147fb | 2010-07-22 13:08:20 -0700 | [diff] [blame] | 179 | const Rect* mClip; |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 180 | Rect* mBounds; |
| 181 | bool mDrawn; |
Romain Guy | 09147fb | 2010-07-22 13:08:20 -0700 | [diff] [blame] | 182 | |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 183 | bool mInitialized; |
Alex Sakhartchouk | 89a524a | 2010-08-02 17:52:30 -0700 | [diff] [blame] | 184 | |
Romain Guy | e8cb9c14 | 2010-10-04 14:14:11 -0700 | [diff] [blame] | 185 | bool mLinearFiltering; |
| 186 | |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 187 | #ifdef ANDROID_ENABLE_RENDERSCRIPT |
Chris Craik | f2d8ccc | 2013-02-13 16:14:17 -0800 | [diff] [blame] | 188 | // RS constructs |
Tim Murray | 250b1cf | 2013-08-01 14:49:22 -0700 | [diff] [blame] | 189 | RSC::sp<RSC::RS> mRs; |
| 190 | RSC::sp<const RSC::Element> mRsElement; |
| 191 | RSC::sp<RSC::ScriptIntrinsicBlur> mRsScript; |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 192 | #endif |
Chris Craik | f2d8ccc | 2013-02-13 16:14:17 -0800 | [diff] [blame] | 193 | |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 194 | static void computeGaussianWeights(float* weights, int32_t radius); |
| 195 | static void horizontalBlur(float* weights, int32_t radius, const uint8_t *source, uint8_t *dest, |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 196 | int32_t width, int32_t height); |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 197 | static void verticalBlur(float* weights, int32_t radius, const uint8_t *source, uint8_t *dest, |
Romain Guy | 1e45aae | 2010-08-13 19:39:53 -0700 | [diff] [blame] | 198 | int32_t width, int32_t height); |
Chris Craik | f2d8ccc | 2013-02-13 16:14:17 -0800 | [diff] [blame] | 199 | |
| 200 | // the input image handle may have its pointer replaced (to avoid copies) |
Derek Sollenberger | e392c81 | 2014-05-21 11:25:22 -0400 | [diff] [blame] | 201 | void blurImage(uint8_t** image, int32_t width, int32_t height, float radius); |
Romain Guy | 694b519 | 2010-07-21 21:33:20 -0700 | [diff] [blame] | 202 | }; |
| 203 | |
| 204 | }; // namespace uirenderer |
| 205 | }; // namespace android |