blob: cb63684c2879dfe90b493c60ba69004b67c7b021 [file] [log] [blame]
Romain Guy694b5192010-07-21 21:33:20 -07001/*
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 Guy5b3b3522010-10-27 18:57:51 -070017#ifndef ANDROID_HWUI_FONT_RENDERER_H
18#define ANDROID_HWUI_FONT_RENDERER_H
Romain Guy694b5192010-07-21 21:33:20 -070019
Chris Craik96a5c4c2015-01-27 15:46:35 -080020#include "font/FontUtil.h"
21#include "font/CacheTexture.h"
22#include "font/CachedGlyphInfo.h"
23#include "font/Font.h"
24#include "utils/SortedList.h"
25
Romain Guye3a9b242013-01-08 11:15:30 -080026#include <utils/LruCache.h>
Romain Guy694b5192010-07-21 21:33:20 -070027#include <utils/Vector.h>
Mathias Agopian1f5762e2013-05-06 20:20:34 -070028#include <utils/StrongPointer.h>
Romain Guy694b5192010-07-21 21:33:20 -070029
Romain Guy694b5192010-07-21 21:33:20 -070030#include <SkPaint.h>
31
32#include <GLES2/gl2.h>
33
Dan Morrille4d9a012013-03-28 18:10:43 -070034#ifdef ANDROID_ENABLE_RENDERSCRIPT
Tim Murray250b1cf2013-08-01 14:49:22 -070035#include "RenderScript.h"
Chris Craikf2d8ccc2013-02-13 16:14:17 -080036namespace RSC {
37 class Element;
38 class RS;
39 class ScriptIntrinsicBlur;
Tim Murray250b1cf2013-08-01 14:49:22 -070040 class sp;
Chris Craikf2d8ccc2013-02-13 16:14:17 -080041}
Dan Morrille4d9a012013-03-28 18:10:43 -070042#endif
Chris Craikf2d8ccc2013-02-13 16:14:17 -080043
Romain Guy694b5192010-07-21 21:33:20 -070044namespace android {
45namespace uirenderer {
46
Victoria Lease1e546812013-06-25 14:25:17 -070047class OpenGLRenderer;
48
Chris Craik96a5c4c2015-01-27 15:46:35 -080049class TextSetupFunctor {
Victoria Lease1e546812013-06-25 14:25:17 -070050public:
Victoria Lease1e546812013-06-25 14:25:17 -070051 TextSetupFunctor(OpenGLRenderer* renderer, float x, float y, bool pureTranslate,
Chris Craik96a5c4c2015-01-27 15:46:35 -080052 int alpha, SkXfermode::Mode mode, const SkPaint* paint)
53 : renderer(renderer)
54 , x(x)
55 , y(y)
56 , pureTranslate(pureTranslate)
57 , alpha(alpha)
58 , mode(mode)
59 , paint(paint) {
Victoria Lease1e546812013-06-25 14:25:17 -070060 }
Victoria Lease1e546812013-06-25 14:25:17 -070061
Chris Craik96a5c4c2015-01-27 15:46:35 -080062 status_t setup(GLenum glyphFormat);
Victoria Lease1e546812013-06-25 14:25:17 -070063
64 OpenGLRenderer* renderer;
65 float x;
66 float y;
67 bool pureTranslate;
68 int alpha;
69 SkXfermode::Mode mode;
Chris Craikd218a922014-01-02 17:13:34 -080070 const SkPaint* paint;
Victoria Lease1e546812013-06-25 14:25:17 -070071};
72
Romain Guy694b5192010-07-21 21:33:20 -070073class FontRenderer {
74public:
75 FontRenderer();
76 ~FontRenderer();
77
Victoria Lease1e546812013-06-25 14:25:17 -070078 void flushLargeCaches(Vector<CacheTexture*>& cacheTextures);
Chet Haase9a824562011-12-16 15:44:59 -080079 void flushLargeCaches();
Romain Guy694b5192010-07-21 21:33:20 -070080
Romain Guyb45c0c92010-08-26 20:35:23 -070081 void setGammaTable(const uint8_t* gammaTable) {
82 mGammaTable = gammaTable;
83 }
84
Chris Craik59744b72014-07-01 17:56:52 -070085 void setFont(const SkPaint* paint, const SkMatrix& matrix);
Chet Haasee816bae2012-08-09 13:39:02 -070086
Chris Craik59744b72014-07-01 17:56:52 -070087 void precache(const SkPaint* paint, const char* text, int numGlyphs, const SkMatrix& matrix);
Romain Guycf51a412013-04-08 19:40:31 -070088 void endPrecaching();
Chet Haasee816bae2012-08-09 13:39:02 -070089
Romain Guy671d6cf2012-01-18 12:39:17 -080090 // bounds is an out parameter
Chris Craikd218a922014-01-02 17:13:34 -080091 bool renderPosText(const SkPaint* paint, const Rect* clip, const char *text,
92 uint32_t startIndex, uint32_t len, int numGlyphs, int x, int y, const float* positions,
Chris Craik96a5c4c2015-01-27 15:46:35 -080093 Rect* bounds, TextSetupFunctor* functor, bool forceFinish = true);
Chris Craik527a3aa2013-03-04 10:19:31 -080094
Romain Guy97771732012-02-28 18:17:02 -080095 // bounds is an out parameter
Chris Craikd218a922014-01-02 17:13:34 -080096 bool renderTextOnPath(const SkPaint* paint, const Rect* clip, const char *text,
97 uint32_t startIndex, uint32_t len, int numGlyphs, const SkPath* path,
Chris Craik96a5c4c2015-01-27 15:46:35 -080098 float hOffset, float vOffset, Rect* bounds, TextSetupFunctor* functor);
Romain Guy694b5192010-07-21 21:33:20 -070099
Alex Sakhartchoukf18136c2010-08-06 14:49:04 -0700100 struct DropShadow {
101 uint32_t width;
102 uint32_t height;
103 uint8_t* image;
104 int32_t penX;
105 int32_t penY;
106 };
107
108 // After renderDropShadow returns, the called owns the memory in DropShadow.image
109 // and is responsible for releasing it when it's done with it
Chris Craikd218a922014-01-02 17:13:34 -0800110 DropShadow renderDropShadow(const SkPaint* paint, const char *text, uint32_t startIndex,
Derek Sollenbergere392c812014-05-21 11:25:22 -0400111 uint32_t len, int numGlyphs, float radius, const float* positions);
Alex Sakhartchoukf18136c2010-08-06 14:49:04 -0700112
Romain Guy257ae352013-03-20 16:31:12 -0700113 void setTextureFiltering(bool linearFiltering) {
Romain Guy80872462012-09-04 16:42:01 -0700114 mLinearFiltering = linearFiltering;
Romain Guy694b5192010-07-21 21:33:20 -0700115 }
116
Victoria Lease1e546812013-06-25 14:25:17 -0700117 uint32_t getCacheSize(GLenum format) const;
Romain Guyc15008e2010-11-10 11:59:15 -0800118
Romain Guy9b1204b2012-09-04 15:22:57 -0700119private:
Romain Guy694b5192010-07-21 21:33:20 -0700120 friend class Font;
121
Romain Guyb45c0c92010-08-26 20:35:23 -0700122 const uint8_t* mGammaTable;
123
Chet Haase2a47c142011-12-14 15:22:56 -0800124 void allocateTextureMemory(CacheTexture* cacheTexture);
Chet Haase9a824562011-12-16 15:44:59 -0800125 void deallocateTextureMemory(CacheTexture* cacheTexture);
Chet Haase7de0cb12011-12-05 16:35:38 -0800126 void initTextTexture();
Victoria Lease1e546812013-06-25 14:25:17 -0700127 CacheTexture* createCacheTexture(int width, int height, GLenum format, bool allocate);
Chet Haase7de0cb12011-12-05 16:35:38 -0800128 void cacheBitmap(const SkGlyph& glyph, CachedGlyphInfo* cachedGlyph,
Chet Haasef942cf12012-08-30 09:06:46 -0700129 uint32_t *retOriginX, uint32_t *retOriginY, bool precaching);
Victoria Lease1e546812013-06-25 14:25:17 -0700130 CacheTexture* cacheBitmapInTexture(Vector<CacheTexture*>& cacheTextures, const SkGlyph& glyph,
131 uint32_t* startX, uint32_t* startY);
Romain Guy694b5192010-07-21 21:33:20 -0700132
133 void flushAllAndInvalidate();
Romain Guy694b5192010-07-21 21:33:20 -0700134
135 void checkInit();
Chris Craik96a5c4c2015-01-27 15:46:35 -0800136 void initRender(const Rect* clip, Rect* bounds, TextSetupFunctor* functor);
Romain Guy671d6cf2012-01-18 12:39:17 -0800137 void finishRender();
Romain Guy694b5192010-07-21 21:33:20 -0700138
Victoria Lease1e546812013-06-25 14:25:17 -0700139 void issueDrawCommand(Vector<CacheTexture*>& cacheTextures);
Romain Guy694b5192010-07-21 21:33:20 -0700140 void issueDrawCommand();
Romain Guy97771732012-02-28 18:17:02 -0800141 void appendMeshQuadNoClip(float x1, float y1, float u1, float v1,
142 float x2, float y2, float u2, float v2,
143 float x3, float y3, float u3, float v3,
144 float x4, float y4, float u4, float v4, CacheTexture* texture);
Romain Guyd71dd362011-12-12 19:03:35 -0800145 void appendMeshQuad(float x1, float y1, float u1, float v1,
146 float x2, float y2, float u2, float v2,
147 float x3, float y3, float u3, float v3,
Chet Haase7de0cb12011-12-05 16:35:38 -0800148 float x4, float y4, float u4, float v4, CacheTexture* texture);
Romain Guy97771732012-02-28 18:17:02 -0800149 void appendRotatedMeshQuad(float x1, float y1, float u1, float v1,
150 float x2, float y2, float u2, float v2,
151 float x3, float y3, float u3, float v3,
152 float x4, float y4, float u4, float v4, CacheTexture* texture);
Romain Guy694b5192010-07-21 21:33:20 -0700153
Romain Guy9b1204b2012-09-04 15:22:57 -0700154 void removeFont(const Font* font);
155
156 void checkTextureUpdate();
157
158 void setTextureDirty() {
159 mUploadTexture = true;
160 }
161
Chet Haase7de0cb12011-12-05 16:35:38 -0800162 uint32_t mSmallCacheWidth;
163 uint32_t mSmallCacheHeight;
Chet Haaseeb32a492012-08-31 13:54:03 -0700164 uint32_t mLargeCacheWidth;
165 uint32_t mLargeCacheHeight;
Romain Guy694b5192010-07-21 21:33:20 -0700166
Victoria Lease1e546812013-06-25 14:25:17 -0700167 Vector<CacheTexture*> mACacheTextures;
168 Vector<CacheTexture*> mRGBACacheTextures;
Romain Guy694b5192010-07-21 21:33:20 -0700169
Romain Guy09147fb2010-07-22 13:08:20 -0700170 Font* mCurrentFont;
Romain Guye3a9b242013-01-08 11:15:30 -0800171 LruCache<Font::FontDescription, Font*> mActiveFonts;
Romain Guy694b5192010-07-21 21:33:20 -0700172
Chet Haase7de0cb12011-12-05 16:35:38 -0800173 CacheTexture* mCurrentCacheTexture;
Chet Haase7de0cb12011-12-05 16:35:38 -0800174
Romain Guy694b5192010-07-21 21:33:20 -0700175 bool mUploadTexture;
176
Chris Craik96a5c4c2015-01-27 15:46:35 -0800177 TextSetupFunctor* mFunctor;
Romain Guy09147fb2010-07-22 13:08:20 -0700178 const Rect* mClip;
Romain Guy5b3b3522010-10-27 18:57:51 -0700179 Rect* mBounds;
180 bool mDrawn;
Romain Guy09147fb2010-07-22 13:08:20 -0700181
Romain Guy694b5192010-07-21 21:33:20 -0700182 bool mInitialized;
Alex Sakhartchouk89a524a2010-08-02 17:52:30 -0700183
Romain Guye8cb9c142010-10-04 14:14:11 -0700184 bool mLinearFiltering;
185
Dan Morrille4d9a012013-03-28 18:10:43 -0700186#ifdef ANDROID_ENABLE_RENDERSCRIPT
Chris Craikf2d8ccc2013-02-13 16:14:17 -0800187 // RS constructs
Tim Murray250b1cf2013-08-01 14:49:22 -0700188 RSC::sp<RSC::RS> mRs;
189 RSC::sp<const RSC::Element> mRsElement;
190 RSC::sp<RSC::ScriptIntrinsicBlur> mRsScript;
Dan Morrille4d9a012013-03-28 18:10:43 -0700191#endif
Chris Craikf2d8ccc2013-02-13 16:14:17 -0800192
Romain Guy9b1204b2012-09-04 15:22:57 -0700193 static void computeGaussianWeights(float* weights, int32_t radius);
194 static void horizontalBlur(float* weights, int32_t radius, const uint8_t *source, uint8_t *dest,
Romain Guy1e45aae2010-08-13 19:39:53 -0700195 int32_t width, int32_t height);
Romain Guy9b1204b2012-09-04 15:22:57 -0700196 static void verticalBlur(float* weights, int32_t radius, const uint8_t *source, uint8_t *dest,
Romain Guy1e45aae2010-08-13 19:39:53 -0700197 int32_t width, int32_t height);
Chris Craikf2d8ccc2013-02-13 16:14:17 -0800198
199 // the input image handle may have its pointer replaced (to avoid copies)
Derek Sollenbergere392c812014-05-21 11:25:22 -0400200 void blurImage(uint8_t** image, int32_t width, int32_t height, float radius);
Romain Guy694b5192010-07-21 21:33:20 -0700201};
202
203}; // namespace uirenderer
204}; // namespace android
205
Romain Guy5b3b3522010-10-27 18:57:51 -0700206#endif // ANDROID_HWUI_FONT_RENDERER_H