blob: 146d385e1173eaa8b24e6d9b991013abd7a9b780 [file] [log] [blame]
Romain Guyb45c0c92010-08-26 20:35:23 -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_GAMMA_FONT_RENDERER_H
18#define ANDROID_HWUI_GAMMA_FONT_RENDERER_H
Romain Guyb45c0c92010-08-26 20:35:23 -070019
Romain Guyb45c0c92010-08-26 20:35:23 -070020#include "FontRenderer.h"
Romain Guy41210632012-07-16 17:04:24 -070021#include "Program.h"
Romain Guyb45c0c92010-08-26 20:35:23 -070022
Chris Craikc08820f2015-09-22 14:22:29 -070023#include <SkPaint.h>
24
Romain Guyb45c0c92010-08-26 20:35:23 -070025namespace android {
26namespace uirenderer {
27
Romain Guyb1d0a4e2012-07-13 18:25:35 -070028class GammaFontRenderer {
29public:
Romain Guyb1d0a4e2012-07-13 18:25:35 -070030 GammaFontRenderer();
31
Chris Craikc08820f2015-09-22 14:22:29 -070032 void clear() {
33 mRenderer.release();
Romain Guy6e25e382012-07-18 15:50:29 -070034 }
35
Chris Craikc08820f2015-09-22 14:22:29 -070036 void flush() {
Romain Guy6e25e382012-07-18 15:50:29 -070037 if (mRenderer) {
38 mRenderer->flushLargeCaches();
39 }
40 }
41
Chris Craikc08820f2015-09-22 14:22:29 -070042 FontRenderer& getFontRenderer() {
Romain Guy6e25e382012-07-18 15:50:29 -070043 if (!mRenderer) {
Chris Craikc08820f2015-09-22 14:22:29 -070044 mRenderer.reset(new FontRenderer(&mGammaTable[0]));
Romain Guy6e25e382012-07-18 15:50:29 -070045 }
46 return *mRenderer;
47 }
48
Chris Craikc08820f2015-09-22 14:22:29 -070049 uint32_t getFontRendererSize(GLenum format) const {
Victoria Lease1e546812013-06-25 14:25:17 -070050 return mRenderer ? mRenderer->getCacheSize(format) : 0;
Romain Guy6e25e382012-07-18 15:50:29 -070051 }
52
Chris Craikc08820f2015-09-22 14:22:29 -070053 void endPrecaching();
Romain Guycf51a412013-04-08 19:40:31 -070054
Romain Guy6e25e382012-07-18 15:50:29 -070055private:
Chris Craikc08820f2015-09-22 14:22:29 -070056 std::unique_ptr<FontRenderer> mRenderer;
Romain Guy6e25e382012-07-18 15:50:29 -070057 uint8_t mGammaTable[256];
Romain Guyb45c0c92010-08-26 20:35:23 -070058};
59
60}; // namespace uirenderer
61}; // namespace android
62
Romain Guy5b3b3522010-10-27 18:57:51 -070063#endif // ANDROID_HWUI_GAMMA_FONT_RENDERER_H