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