blob: 8cee707dbcbef4082ff557bb0ba262945c875be5 [file] [log] [blame]
bsalomon@google.com31ec7982013-03-27 18:14:57 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrGLProgramDesc_DEFINED
9#define GrGLProgramDesc_DEFINED
10
11#include "GrGLEffect.h"
bsalomon@google.com798c8c42013-03-27 19:50:27 +000012#include "GrDrawState.h"
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +000013#include "GrGpu.h"
bsalomon@google.com31ec7982013-03-27 18:14:57 +000014
15class GrGpuGL;
16
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000017#ifdef SK_DEBUG
18 // Optionally compile the experimental GS code. Set to SK_DEBUG so that debug build bots will
19 // execute the code.
20 #define GR_GL_EXPERIMENTAL_GS 1
21#else
22 #define GR_GL_EXPERIMENTAL_GS 0
23#endif
bsalomon@google.com31ec7982013-03-27 18:14:57 +000024
25
bsalomon@google.com26e18b52013-03-29 19:22:36 +000026/** This class describes a program to generate. It also serves as a program cache key. Very little
bsalomon63e99f72014-07-21 08:03:14 -070027 of this is GL-specific. The GL-specific parts could be factored out into a subclass. */
bsalomon@google.com31ec7982013-03-27 18:14:57 +000028class GrGLProgramDesc {
29public:
bsalomon848faf02014-07-11 10:01:02 -070030 GrGLProgramDesc() {}
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000031 GrGLProgramDesc(const GrGLProgramDesc& desc) { *this = desc; }
32
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +000033 // Returns this as a uint32_t array to be used as a key in the program cache.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000034 const uint32_t* asKey() const {
bsalomon848faf02014-07-11 10:01:02 -070035 return reinterpret_cast<const uint32_t*>(fKey.begin());
bsalomon@google.com31ec7982013-03-27 18:14:57 +000036 }
37
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000038 // Gets the number of bytes in asKey(). It will be a 4-byte aligned value. When comparing two
39 // keys the size of either key can be used with memcmp() since the lengths themselves begin the
40 // keys and thus the memcmp will exit early if the keys are of different lengths.
41 uint32_t keyLength() const { return *this->atOffset<uint32_t, kLengthOffset>(); }
42
43 // Gets the a checksum of the key. Can be used as a hash value for a fast lookup in a cache.
44 uint32_t getChecksum() const { return *this->atOffset<uint32_t, kChecksumOffset>(); }
bsalomon@google.com31ec7982013-03-27 18:14:57 +000045
46 // For unit testing.
bsalomon848faf02014-07-11 10:01:02 -070047 bool setRandom(SkRandom*,
bsalomon@google.com31ec7982013-03-27 18:14:57 +000048 const GrGpuGL* gpu,
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000049 const GrRenderTarget* dummyDstRenderTarget,
50 const GrTexture* dummyDstCopyTexture,
joshualittbd769d02014-09-04 08:56:46 -070051 const GrEffectStage* geometryProcessor,
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000052 const GrEffectStage* stages[],
53 int numColorStages,
54 int numCoverageStages,
jvanverth@google.com054ae992013-04-01 20:06:51 +000055 int currAttribIndex);
bsalomon@google.com31ec7982013-03-27 18:14:57 +000056
57 /**
egdaniel170f90b2014-09-16 12:54:40 -070058 * Builds a program descriptor from a GrOptDrawState. Whether the primitive type is points, and
59 * the caps of the GrGpuGL are also inputs. It also outputs the color and coverage stages
60 * referenced by the generated descriptor. Coverage stages from the drawState may be treated as
61 * color stages in the output.
bsalomon@google.com31ec7982013-03-27 18:14:57 +000062 */
egdaniel170f90b2014-09-16 12:54:40 -070063 static bool Build(const GrOptDrawState&,
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +000064 GrGpu::DrawType drawType,
bsalomon@google.com31ec7982013-03-27 18:14:57 +000065 GrBlendCoeff srcCoeff,
66 GrBlendCoeff dstCoeff,
67 const GrGpuGL* gpu,
bsalomon@google.com26e18b52013-03-29 19:22:36 +000068 const GrDeviceCoordTexture* dstCopy,
joshualittbd769d02014-09-04 08:56:46 -070069 const GrEffectStage** outGeometryProcessor,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +000070 SkTArray<const GrEffectStage*, true>* outColorStages,
71 SkTArray<const GrEffectStage*, true>* outCoverageStages,
bsalomon@google.com31ec7982013-03-27 18:14:57 +000072 GrGLProgramDesc* outDesc);
73
joshualittbd769d02014-09-04 08:56:46 -070074 bool hasGeometryProcessor() const {
75 return SkToBool(this->getHeader().fHasGeometryProcessor);
76 }
77
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000078 int numColorEffects() const {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000079 return this->getHeader().fColorEffectCnt;
80 }
81
82 int numCoverageEffects() const {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000083 return this->getHeader().fCoverageEffectCnt;
84 }
85
86 int numTotalEffects() const { return this->numColorEffects() + this->numCoverageEffects(); }
87
88 GrGLProgramDesc& operator= (const GrGLProgramDesc& other);
89
90 bool operator== (const GrGLProgramDesc& other) const {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000091 // The length is masked as a hint to the compiler that the address will be 4 byte aligned.
92 return 0 == memcmp(this->asKey(), other.asKey(), this->keyLength() & ~0x3);
93 }
94
95 bool operator!= (const GrGLProgramDesc& other) const {
96 return !(*this == other);
97 }
98
99 static bool Less(const GrGLProgramDesc& a, const GrGLProgramDesc& b) {
100 return memcmp(a.asKey(), b.asKey(), a.keyLength() & ~0x3) < 0;
101 }
102
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000103private:
104 // Specifies where the initial color comes from before the stages are applied.
105 enum ColorInput {
egdaniel842b0862014-09-02 10:01:30 -0700106 kAllOnes_ColorInput,
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000107 kAttribute_ColorInput,
108 kUniform_ColorInput,
109
110 kColorInputCnt
111 };
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000112
bsalomon@google.com5920ac22013-04-19 13:14:45 +0000113 enum CoverageOutput {
114 // modulate color and coverage, write result as the color output.
115 kModulate_CoverageOutput,
116 // Writes color*coverage as the primary color output and also writes coverage as the
117 // secondary output. Only set if dual source blending is supported.
118 kSecondaryCoverage_CoverageOutput,
119 // Writes color*coverage as the primary color output and also writes coverage * (1 - colorA)
120 // as the secondary output. Only set if dual source blending is supported.
121 kSecondaryCoverageISA_CoverageOutput,
122 // Writes color*coverage as the primary color output and also writes coverage *
123 // (1 - colorRGB) as the secondary output. Only set if dual source blending is supported.
124 kSecondaryCoverageISC_CoverageOutput,
125 // Combines the coverage, dst, and color as coverage * color + (1 - coverage) * dst. This
bsalomon@google.comb5158812013-05-13 18:50:25 +0000126 // can only be set if fDstReadKey is non-zero.
bsalomon@google.com5920ac22013-04-19 13:14:45 +0000127 kCombineWithDst_CoverageOutput,
128
129 kCoverageOutputCnt
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000130 };
131
bsalomon@google.com5920ac22013-04-19 13:14:45 +0000132 static bool CoverageOutputUsesSecondaryOutput(CoverageOutput co) {
133 switch (co) {
134 case kSecondaryCoverage_CoverageOutput: // fallthru
135 case kSecondaryCoverageISA_CoverageOutput:
136 case kSecondaryCoverageISC_CoverageOutput:
137 return true;
138 default:
139 return false;
140 }
141 }
142
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000143 struct KeyHeader {
bsalomon848faf02014-07-11 10:01:02 -0700144 uint8_t fDstReadKey; // set by GrGLShaderBuilder if there
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000145 // are effects that must read the dst.
146 // Otherwise, 0.
bsalomon848faf02014-07-11 10:01:02 -0700147 uint8_t fFragPosKey; // set by GrGLShaderBuilder if there are
bsalomon@google.comb5158812013-05-13 18:50:25 +0000148 // effects that read the fragment position.
149 // Otherwise, 0.
commit-bot@chromium.org949eef02013-10-01 18:43:29 +0000150 ColorInput fColorInput : 8;
151 ColorInput fCoverageInput : 8;
152 CoverageOutput fCoverageOutput : 8;
jvanverth@google.com054ae992013-04-01 20:06:51 +0000153
kkinnunenec56e452014-08-25 22:21:16 -0700154 SkBool8 fRequiresVertexShader;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000155 SkBool8 fEmitsPointSize;
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000156
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000157 // To enable experimental geometry shader code (not for use in
158 // production)
159#if GR_GL_EXPERIMENTAL_GS
160 SkBool8 fExperimentalGS;
161#endif
162
163 int8_t fPositionAttributeIndex;
164 int8_t fLocalCoordAttributeIndex;
165 int8_t fColorAttributeIndex;
166 int8_t fCoverageAttributeIndex;
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000167
joshualittbd769d02014-09-04 08:56:46 -0700168 SkBool8 fHasGeometryProcessor;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000169 int8_t fColorEffectCnt;
170 int8_t fCoverageEffectCnt;
171 };
172
bsalomon848faf02014-07-11 10:01:02 -0700173 // The key, stored in fKey, is composed of five parts:
174 // 1. uint32_t for total key length.
175 // 2. uint32_t for a checksum.
176 // 3. Header struct defined above.
bsalomon929f29a2014-07-17 07:55:11 -0700177 // 4. An array of offsets to effect keys and their sizes (see 5). uint16_t for each
178 // offset and size.
bsalomon848faf02014-07-11 10:01:02 -0700179 // 5. per-effect keys. Each effect's key is a variable length array of uint32_t.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000180 enum {
bsalomon929f29a2014-07-17 07:55:11 -0700181 // Part 1.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000182 kLengthOffset = 0,
bsalomon929f29a2014-07-17 07:55:11 -0700183 // Part 2.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000184 kChecksumOffset = kLengthOffset + sizeof(uint32_t),
bsalomon929f29a2014-07-17 07:55:11 -0700185 // Part 3.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000186 kHeaderOffset = kChecksumOffset + sizeof(uint32_t),
187 kHeaderSize = SkAlign4(sizeof(KeyHeader)),
bsalomon929f29a2014-07-17 07:55:11 -0700188 // Part 4.
189 // This is the offset in the overall key to the array of per-effect offset,length pairs.
190 kEffectKeyOffsetsAndLengthOffset = kHeaderOffset + kHeaderSize,
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000191 };
192
193 template<typename T, size_t OFFSET> T* atOffset() {
bsalomon848faf02014-07-11 10:01:02 -0700194 return reinterpret_cast<T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000195 }
196
197 template<typename T, size_t OFFSET> const T* atOffset() const {
bsalomon848faf02014-07-11 10:01:02 -0700198 return reinterpret_cast<const T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000199 }
200
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000201 KeyHeader* header() { return this->atOffset<KeyHeader, kHeaderOffset>(); }
bsalomon848faf02014-07-11 10:01:02 -0700202
bsalomon929f29a2014-07-17 07:55:11 -0700203 // Shared code between setRandom() and Build().
egdaniela7dc0a82014-09-17 08:25:05 -0700204 static bool GetEffectKey(const GrEffectStage& stage, const GrGLCaps& caps,
205 bool useExplicitLocalCoords, GrEffectKeyBuilder* b,
206 uint16_t* effectKeySize);
bsalomon929f29a2014-07-17 07:55:11 -0700207
bsalomon848faf02014-07-11 10:01:02 -0700208 void finalize();
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000209
210 const KeyHeader& getHeader() const { return *this->atOffset<KeyHeader, kHeaderOffset>(); }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000211
bsalomon848faf02014-07-11 10:01:02 -0700212 /** Used to provide effects' keys to their emitCode() function. */
213 class EffectKeyProvider {
214 public:
215 enum EffectType {
joshualittbd769d02014-09-04 08:56:46 -0700216 kGeometryProcessor_EffectType,
bsalomon848faf02014-07-11 10:01:02 -0700217 kColor_EffectType,
218 kCoverage_EffectType,
219 };
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000220
bsalomon848faf02014-07-11 10:01:02 -0700221 EffectKeyProvider(const GrGLProgramDesc* desc, EffectType type) : fDesc(desc) {
joshualittbd769d02014-09-04 08:56:46 -0700222 switch (type) {
223 case kGeometryProcessor_EffectType:
224 // there can be only one
225 fBaseIndex = 0;
226 break;
227 case kColor_EffectType:
228 fBaseIndex = desc->hasGeometryProcessor() ? 1 : 0;
229 break;
230 case kCoverage_EffectType:
231 fBaseIndex = desc->numColorEffects() + (desc->hasGeometryProcessor() ? 1 : 0);
232 break;
233 }
bsalomon848faf02014-07-11 10:01:02 -0700234 }
235
bsalomon63e99f72014-07-21 08:03:14 -0700236 GrEffectKey get(int index) const {
237 const uint16_t* offsetsAndLengths = reinterpret_cast<const uint16_t*>(
bsalomon929f29a2014-07-17 07:55:11 -0700238 fDesc->fKey.begin() + kEffectKeyOffsetsAndLengthOffset);
239 // We store two uint16_ts per effect, one for the offset to the effect's key and one for
240 // its length. Here we just need the offset.
bsalomon63e99f72014-07-21 08:03:14 -0700241 uint16_t offset = offsetsAndLengths[2 * (fBaseIndex + index) + 0];
242 uint16_t length = offsetsAndLengths[2 * (fBaseIndex + index) + 1];
243 // Currently effects must add to the key in units of uint32_t.
244 SkASSERT(0 == (length % sizeof(uint32_t)));
245 return GrEffectKey(reinterpret_cast<const uint32_t*>(fDesc->fKey.begin() + offset),
246 length / sizeof(uint32_t));
bsalomon848faf02014-07-11 10:01:02 -0700247 }
248 private:
249 const GrGLProgramDesc* fDesc;
250 int fBaseIndex;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000251 };
252
bsalomon848faf02014-07-11 10:01:02 -0700253 enum {
254 kMaxPreallocEffects = 8,
255 kIntsPerEffect = 4, // This is an overestimate of the average effect key size.
bsalomon929f29a2014-07-17 07:55:11 -0700256 kPreAllocSize = kEffectKeyOffsetsAndLengthOffset +
bsalomon848faf02014-07-11 10:01:02 -0700257 kMaxPreallocEffects * sizeof(uint32_t) * kIntsPerEffect,
258 };
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000259
bsalomon848faf02014-07-11 10:01:02 -0700260 SkSTArray<kPreAllocSize, uint8_t, true> fKey;
261
262 // GrGLProgram and GrGLShaderBuilder read the private fields to generate code. TODO: Split out
263 // part of GrGLShaderBuilder that is used by effects so that this header doesn't need to be
264 // visible to GrGLEffects. Then make public accessors as necessary and remove friends.
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000265 friend class GrGLProgram;
joshualitt30ba4362014-08-21 20:18:45 -0700266 friend class GrGLProgramBuilder;
267 friend class GrGLFullProgramBuilder;
268 friend class GrGLFragmentOnlyProgramBuilder;
269 friend class GrGLVertexShaderBuilder;
270 friend class GrGLFragmentShaderBuilder;
271 friend class GrGLGeometryShaderBuilder;
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000272};
273
274#endif