blob: 491fad3733854ae4c44deb0b4a4e18aa0e488b1b [file] [log] [blame]
Mathias Agopian3f844832013-08-07 21:24:32 -07001/*
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 Agopian3f844832013-08-07 21:24:32 -070022#include <utils/KeyedVector.h>
Chia-I Wub027f802017-11-29 14:00:52 -080023#include <utils/Singleton.h>
Mathias Agopian3f844832013-08-07 21:24:32 -070024#include <utils/TypeHelpers.h>
25
26#include "Description.h"
27
28namespace android {
29
30class Description;
31class Program;
32class String8;
33
34/*
35 * This class generates GLSL programs suitable to handle a given
36 * Description. It's responsible for figuring out what to
37 * generate from a Description.
38 * It also maintains a cache of these Programs.
39 */
40class ProgramCache : public Singleton<ProgramCache> {
41public:
42 /*
43 * Key is used to retrieve a Program in the cache.
44 * A Key is generated from a Description.
45 */
46 class Key {
47 friend class ProgramCache;
48 typedef uint32_t key_t;
49 key_t mKey;
Chia-I Wub027f802017-11-29 14:00:52 -080050
Mathias Agopian3f844832013-08-07 21:24:32 -070051 public:
52 enum {
Chia-I Wu7e65bc02018-01-11 14:31:38 -080053 BLEND_SHIFT = 0,
54 BLEND_MASK = 1 << BLEND_SHIFT,
55 BLEND_PREMULT = 1 << BLEND_SHIFT,
56 BLEND_NORMAL = 0 << BLEND_SHIFT,
Mathias Agopian3f844832013-08-07 21:24:32 -070057
Chia-I Wu7e65bc02018-01-11 14:31:38 -080058 OPACITY_SHIFT = 1,
59 OPACITY_MASK = 1 << OPACITY_SHIFT,
60 OPACITY_OPAQUE = 1 << OPACITY_SHIFT,
61 OPACITY_TRANSLUCENT = 0 << OPACITY_SHIFT,
Mathias Agopian3f844832013-08-07 21:24:32 -070062
Chia-I Wu7e65bc02018-01-11 14:31:38 -080063 ALPHA_SHIFT = 2,
64 ALPHA_MASK = 1 << ALPHA_SHIFT,
65 ALPHA_LT_ONE = 1 << ALPHA_SHIFT,
66 ALPHA_EQ_ONE = 0 << ALPHA_SHIFT,
Mathias Agopian3f844832013-08-07 21:24:32 -070067
Chia-I Wu7e65bc02018-01-11 14:31:38 -080068 TEXTURE_SHIFT = 3,
69 TEXTURE_MASK = 3 << TEXTURE_SHIFT,
70 TEXTURE_OFF = 0 << TEXTURE_SHIFT,
71 TEXTURE_EXT = 1 << TEXTURE_SHIFT,
72 TEXTURE_2D = 2 << TEXTURE_SHIFT,
Mathias Agopianff2ed702013-09-01 21:36:12 -070073
Chia-I Wu7e65bc02018-01-11 14:31:38 -080074 COLOR_MATRIX_SHIFT = 5,
75 COLOR_MATRIX_MASK = 1 << COLOR_MATRIX_SHIFT,
76 COLOR_MATRIX_OFF = 0 << COLOR_MATRIX_SHIFT,
77 COLOR_MATRIX_ON = 1 << COLOR_MATRIX_SHIFT,
Romain Guy88d37dd2017-05-26 17:57:05 -070078
Chia-I Wu7e65bc02018-01-11 14:31:38 -080079 INPUT_TF_SHIFT = 6,
80 INPUT_TF_MASK = 3 << INPUT_TF_SHIFT,
81 INPUT_TF_LINEAR = 0 << INPUT_TF_SHIFT,
82 INPUT_TF_SRGB = 1 << INPUT_TF_SHIFT,
83
84 OUTPUT_TF_SHIFT = 8,
85 OUTPUT_TF_MASK = 3 << OUTPUT_TF_SHIFT,
86 OUTPUT_TF_LINEAR = 0 << OUTPUT_TF_SHIFT,
87 OUTPUT_TF_SRGB = 1 << OUTPUT_TF_SHIFT,
Mathias Agopian3f844832013-08-07 21:24:32 -070088 };
89
Chia-I Wub027f802017-11-29 14:00:52 -080090 inline Key() : mKey(0) {}
91 inline Key(const Key& rhs) : mKey(rhs.mKey) {}
Mathias Agopian3f844832013-08-07 21:24:32 -070092
93 inline Key& set(key_t mask, key_t value) {
94 mKey = (mKey & ~mask) | value;
95 return *this;
96 }
97
Chia-I Wub027f802017-11-29 14:00:52 -080098 inline bool isTexturing() const { return (mKey & TEXTURE_MASK) != TEXTURE_OFF; }
99 inline int getTextureTarget() const { return (mKey & TEXTURE_MASK); }
100 inline bool isPremultiplied() const { return (mKey & BLEND_MASK) == BLEND_PREMULT; }
101 inline bool isOpaque() const { return (mKey & OPACITY_MASK) == OPACITY_OPAQUE; }
102 inline bool hasAlpha() const { return (mKey & ALPHA_MASK) == ALPHA_LT_ONE; }
103 inline bool hasColorMatrix() const { return (mKey & COLOR_MATRIX_MASK) == COLOR_MATRIX_ON; }
Chia-I Wu7e65bc02018-01-11 14:31:38 -0800104 inline int getInputTF() const { return (mKey & INPUT_TF_MASK); }
105 inline int getOutputTF() const { return (mKey & OUTPUT_TF_MASK); }
Mathias Agopian3f844832013-08-07 21:24:32 -0700106
107 // this is the definition of a friend function -- not a method of class Needs
108 friend inline int strictly_order_type(const Key& lhs, const Key& rhs) {
Romain Guy88d37dd2017-05-26 17:57:05 -0700109 return (lhs.mKey < rhs.mKey) ? 1 : 0;
Mathias Agopian3f844832013-08-07 21:24:32 -0700110 }
111 };
112
113 ProgramCache();
114 ~ProgramCache();
115
116 // useProgram lookup a suitable program in the cache or generates one
117 // if none can be found.
118 void useProgram(const Description& description);
119
120private:
Riley Andrewsa51fafc2014-09-29 13:29:40 -0700121 // Generate shaders to populate the cache
122 void primeCache();
Mathias Agopian3f844832013-08-07 21:24:32 -0700123 // compute a cache Key from a Description
124 static Key computeKey(const Description& description);
125 // generates a program from the Key
126 static Program* generateProgram(const Key& needs);
127 // generates the vertex shader from the Key
128 static String8 generateVertexShader(const Key& needs);
129 // generates the fragment shader from the Key
130 static String8 generateFragmentShader(const Key& needs);
131
132 // Key/Value map used for caching Programs. Currently the cache
133 // is never shrunk.
134 DefaultKeyedVector<Key, Program*> mCache;
135};
136
Mathias Agopian3f844832013-08-07 21:24:32 -0700137ANDROID_BASIC_TYPES_TRAITS(ProgramCache::Key)
138
139} /* namespace android */
140
141#endif /* SF_RENDER_ENGINE_PROGRAMCACHE_H */