Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 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 | |
| 17 | #ifndef SF_RENDER_ENGINE_PROGRAMCACHE_H |
| 18 | #define SF_RENDER_ENGINE_PROGRAMCACHE_H |
| 19 | |
| 20 | #include <GLES2/gl2.h> |
| 21 | |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 22 | #include <utils/KeyedVector.h> |
Chia-I Wu | b027f80 | 2017-11-29 14:00:52 -0800 | [diff] [blame] | 23 | #include <utils/Singleton.h> |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 24 | #include <utils/TypeHelpers.h> |
| 25 | |
| 26 | #include "Description.h" |
| 27 | |
| 28 | namespace android { |
| 29 | |
| 30 | class Description; |
Peiyong Lin | 2542cb0 | 2018-04-30 17:29:53 -0700 | [diff] [blame^] | 31 | class Formatter; |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 32 | class Program; |
| 33 | class String8; |
| 34 | |
| 35 | /* |
| 36 | * This class generates GLSL programs suitable to handle a given |
| 37 | * Description. It's responsible for figuring out what to |
| 38 | * generate from a Description. |
| 39 | * It also maintains a cache of these Programs. |
| 40 | */ |
| 41 | class ProgramCache : public Singleton<ProgramCache> { |
| 42 | public: |
| 43 | /* |
| 44 | * Key is used to retrieve a Program in the cache. |
| 45 | * A Key is generated from a Description. |
| 46 | */ |
| 47 | class Key { |
| 48 | friend class ProgramCache; |
| 49 | typedef uint32_t key_t; |
| 50 | key_t mKey; |
Chia-I Wu | b027f80 | 2017-11-29 14:00:52 -0800 | [diff] [blame] | 51 | |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 52 | public: |
| 53 | enum { |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 54 | BLEND_SHIFT = 0, |
| 55 | BLEND_MASK = 1 << BLEND_SHIFT, |
| 56 | BLEND_PREMULT = 1 << BLEND_SHIFT, |
| 57 | BLEND_NORMAL = 0 << BLEND_SHIFT, |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 58 | |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 59 | OPACITY_SHIFT = 1, |
| 60 | OPACITY_MASK = 1 << OPACITY_SHIFT, |
| 61 | OPACITY_OPAQUE = 1 << OPACITY_SHIFT, |
| 62 | OPACITY_TRANSLUCENT = 0 << OPACITY_SHIFT, |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 63 | |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 64 | ALPHA_SHIFT = 2, |
| 65 | ALPHA_MASK = 1 << ALPHA_SHIFT, |
| 66 | ALPHA_LT_ONE = 1 << ALPHA_SHIFT, |
| 67 | ALPHA_EQ_ONE = 0 << ALPHA_SHIFT, |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 68 | |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 69 | TEXTURE_SHIFT = 3, |
| 70 | TEXTURE_MASK = 3 << TEXTURE_SHIFT, |
| 71 | TEXTURE_OFF = 0 << TEXTURE_SHIFT, |
| 72 | TEXTURE_EXT = 1 << TEXTURE_SHIFT, |
| 73 | TEXTURE_2D = 2 << TEXTURE_SHIFT, |
Mathias Agopian | ff2ed70 | 2013-09-01 21:36:12 -0700 | [diff] [blame] | 74 | |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 75 | COLOR_MATRIX_SHIFT = 5, |
| 76 | COLOR_MATRIX_MASK = 1 << COLOR_MATRIX_SHIFT, |
| 77 | COLOR_MATRIX_OFF = 0 << COLOR_MATRIX_SHIFT, |
| 78 | COLOR_MATRIX_ON = 1 << COLOR_MATRIX_SHIFT, |
Romain Guy | 88d37dd | 2017-05-26 17:57:05 -0700 | [diff] [blame] | 79 | |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 80 | INPUT_TF_SHIFT = 6, |
| 81 | INPUT_TF_MASK = 3 << INPUT_TF_SHIFT, |
| 82 | INPUT_TF_LINEAR = 0 << INPUT_TF_SHIFT, |
| 83 | INPUT_TF_SRGB = 1 << INPUT_TF_SHIFT, |
Chia-I Wu | 131d376 | 2018-01-11 14:35:27 -0800 | [diff] [blame] | 84 | INPUT_TF_ST2084 = 2 << INPUT_TF_SHIFT, |
Peiyong Lin | a3fb7d6 | 2018-04-11 17:41:47 -0700 | [diff] [blame] | 85 | INPUT_TF_HLG = 3 << INPUT_TF_SHIFT, |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 86 | |
| 87 | OUTPUT_TF_SHIFT = 8, |
| 88 | OUTPUT_TF_MASK = 3 << OUTPUT_TF_SHIFT, |
| 89 | OUTPUT_TF_LINEAR = 0 << OUTPUT_TF_SHIFT, |
| 90 | OUTPUT_TF_SRGB = 1 << OUTPUT_TF_SHIFT, |
Chia-I Wu | 131d376 | 2018-01-11 14:35:27 -0800 | [diff] [blame] | 91 | OUTPUT_TF_ST2084 = 2 << OUTPUT_TF_SHIFT, |
Peiyong Lin | a3fb7d6 | 2018-04-11 17:41:47 -0700 | [diff] [blame] | 92 | OUTPUT_TF_HLG = 3 << OUTPUT_TF_SHIFT, |
Chia-I Wu | 131d376 | 2018-01-11 14:35:27 -0800 | [diff] [blame] | 93 | |
Peiyong Lin | a3fb7d6 | 2018-04-11 17:41:47 -0700 | [diff] [blame] | 94 | Y410_BT2020_SHIFT = 10, |
Chia-I Wu | 131d376 | 2018-01-11 14:35:27 -0800 | [diff] [blame] | 95 | Y410_BT2020_MASK = 1 << Y410_BT2020_SHIFT, |
| 96 | Y410_BT2020_OFF = 0 << Y410_BT2020_SHIFT, |
| 97 | Y410_BT2020_ON = 1 << Y410_BT2020_SHIFT, |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 98 | }; |
| 99 | |
Chia-I Wu | b027f80 | 2017-11-29 14:00:52 -0800 | [diff] [blame] | 100 | inline Key() : mKey(0) {} |
| 101 | inline Key(const Key& rhs) : mKey(rhs.mKey) {} |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 102 | |
| 103 | inline Key& set(key_t mask, key_t value) { |
| 104 | mKey = (mKey & ~mask) | value; |
| 105 | return *this; |
| 106 | } |
| 107 | |
Chia-I Wu | b027f80 | 2017-11-29 14:00:52 -0800 | [diff] [blame] | 108 | inline bool isTexturing() const { return (mKey & TEXTURE_MASK) != TEXTURE_OFF; } |
| 109 | inline int getTextureTarget() const { return (mKey & TEXTURE_MASK); } |
| 110 | inline bool isPremultiplied() const { return (mKey & BLEND_MASK) == BLEND_PREMULT; } |
| 111 | inline bool isOpaque() const { return (mKey & OPACITY_MASK) == OPACITY_OPAQUE; } |
| 112 | inline bool hasAlpha() const { return (mKey & ALPHA_MASK) == ALPHA_LT_ONE; } |
| 113 | inline bool hasColorMatrix() const { return (mKey & COLOR_MATRIX_MASK) == COLOR_MATRIX_ON; } |
Chia-I Wu | 7e65bc0 | 2018-01-11 14:31:38 -0800 | [diff] [blame] | 114 | inline int getInputTF() const { return (mKey & INPUT_TF_MASK); } |
| 115 | inline int getOutputTF() const { return (mKey & OUTPUT_TF_MASK); } |
Chia-I Wu | 131d376 | 2018-01-11 14:35:27 -0800 | [diff] [blame] | 116 | inline bool isY410BT2020() const { return (mKey & Y410_BT2020_MASK) == Y410_BT2020_ON; } |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 117 | |
| 118 | // this is the definition of a friend function -- not a method of class Needs |
| 119 | friend inline int strictly_order_type(const Key& lhs, const Key& rhs) { |
Romain Guy | 88d37dd | 2017-05-26 17:57:05 -0700 | [diff] [blame] | 120 | return (lhs.mKey < rhs.mKey) ? 1 : 0; |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 121 | } |
| 122 | }; |
| 123 | |
| 124 | ProgramCache(); |
| 125 | ~ProgramCache(); |
| 126 | |
| 127 | // useProgram lookup a suitable program in the cache or generates one |
| 128 | // if none can be found. |
| 129 | void useProgram(const Description& description); |
| 130 | |
| 131 | private: |
Riley Andrews | a51fafc | 2014-09-29 13:29:40 -0700 | [diff] [blame] | 132 | // Generate shaders to populate the cache |
| 133 | void primeCache(); |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 134 | // compute a cache Key from a Description |
| 135 | static Key computeKey(const Description& description); |
Peiyong Lin | 2542cb0 | 2018-04-30 17:29:53 -0700 | [diff] [blame^] | 136 | // Generate EOTF based from Key. |
| 137 | static void generateEOTF(Formatter& fs, const Key& needs); |
| 138 | // Generate OOTF based from Key. |
| 139 | static void generateOOTF(Formatter& fs, const Key& needs); |
| 140 | // Generate OETF based from Key. |
| 141 | static void generateOETF(Formatter& fs, const Key& needs); |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 142 | // generates a program from the Key |
| 143 | static Program* generateProgram(const Key& needs); |
| 144 | // generates the vertex shader from the Key |
| 145 | static String8 generateVertexShader(const Key& needs); |
| 146 | // generates the fragment shader from the Key |
| 147 | static String8 generateFragmentShader(const Key& needs); |
| 148 | |
| 149 | // Key/Value map used for caching Programs. Currently the cache |
| 150 | // is never shrunk. |
| 151 | DefaultKeyedVector<Key, Program*> mCache; |
| 152 | }; |
| 153 | |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 154 | ANDROID_BASIC_TYPES_TRAITS(ProgramCache::Key) |
| 155 | |
| 156 | } /* namespace android */ |
| 157 | |
| 158 | #endif /* SF_RENDER_ENGINE_PROGRAMCACHE_H */ |