blob: c8aae19503ff6a1654e5976112d07d6972c5dfad [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
27 of this is GL-specific. There is the generation of GrGLEffect::EffectKeys and the dst-read part
28 of the key set by GrGLShaderBuilder. If the interfaces that set those portions were abstracted
29 to be API-neutral then so could this class. */
bsalomon@google.com31ec7982013-03-27 18:14:57 +000030class GrGLProgramDesc {
31public:
bsalomon848faf02014-07-11 10:01:02 -070032 GrGLProgramDesc() {}
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000033 GrGLProgramDesc(const GrGLProgramDesc& desc) { *this = desc; }
34
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +000035 // 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 +000036 const uint32_t* asKey() const {
bsalomon848faf02014-07-11 10:01:02 -070037 return reinterpret_cast<const uint32_t*>(fKey.begin());
bsalomon@google.com31ec7982013-03-27 18:14:57 +000038 }
39
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000040 // Gets the number of bytes in asKey(). It will be a 4-byte aligned value. When comparing two
41 // keys the size of either key can be used with memcmp() since the lengths themselves begin the
42 // keys and thus the memcmp will exit early if the keys are of different lengths.
43 uint32_t keyLength() const { return *this->atOffset<uint32_t, kLengthOffset>(); }
44
45 // Gets the a checksum of the key. Can be used as a hash value for a fast lookup in a cache.
46 uint32_t getChecksum() const { return *this->atOffset<uint32_t, kChecksumOffset>(); }
bsalomon@google.com31ec7982013-03-27 18:14:57 +000047
48 // For unit testing.
bsalomon848faf02014-07-11 10:01:02 -070049 bool setRandom(SkRandom*,
bsalomon@google.com31ec7982013-03-27 18:14:57 +000050 const GrGpuGL* gpu,
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000051 const GrRenderTarget* dummyDstRenderTarget,
52 const GrTexture* dummyDstCopyTexture,
53 const GrEffectStage* stages[],
54 int numColorStages,
55 int numCoverageStages,
jvanverth@google.com054ae992013-04-01 20:06:51 +000056 int currAttribIndex);
bsalomon@google.com31ec7982013-03-27 18:14:57 +000057
58 /**
59 * Builds a program descriptor from a GrDrawState. Whether the primitive type is points, the
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000060 * output of GrDrawState::getBlendOpts, and the caps of the GrGpuGL are also inputs. It also
bsalomon@google.com2c84aa32013-06-06 20:28:57 +000061 * outputs the color and coverage stages referenced by the generated descriptor. This may
62 * not contain all stages from the draw state and coverage stages from the drawState may
63 * be treated as color stages in the output.
bsalomon@google.com31ec7982013-03-27 18:14:57 +000064 */
bsalomon848faf02014-07-11 10:01:02 -070065 static bool Build(const GrDrawState&,
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +000066 GrGpu::DrawType drawType,
bsalomon@google.com31ec7982013-03-27 18:14:57 +000067 GrDrawState::BlendOptFlags,
68 GrBlendCoeff srcCoeff,
69 GrBlendCoeff dstCoeff,
70 const GrGpuGL* gpu,
bsalomon@google.com26e18b52013-03-29 19:22:36 +000071 const GrDeviceCoordTexture* dstCopy,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +000072 SkTArray<const GrEffectStage*, true>* outColorStages,
73 SkTArray<const GrEffectStage*, true>* outCoverageStages,
bsalomon@google.com31ec7982013-03-27 18:14:57 +000074 GrGLProgramDesc* outDesc);
75
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000076 int numColorEffects() const {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000077 return this->getHeader().fColorEffectCnt;
78 }
79
80 int numCoverageEffects() const {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000081 return this->getHeader().fCoverageEffectCnt;
82 }
83
84 int numTotalEffects() const { return this->numColorEffects() + this->numCoverageEffects(); }
85
86 GrGLProgramDesc& operator= (const GrGLProgramDesc& other);
87
88 bool operator== (const GrGLProgramDesc& other) const {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000089 // The length is masked as a hint to the compiler that the address will be 4 byte aligned.
90 return 0 == memcmp(this->asKey(), other.asKey(), this->keyLength() & ~0x3);
91 }
92
93 bool operator!= (const GrGLProgramDesc& other) const {
94 return !(*this == other);
95 }
96
97 static bool Less(const GrGLProgramDesc& a, const GrGLProgramDesc& b) {
98 return memcmp(a.asKey(), b.asKey(), a.keyLength() & ~0x3) < 0;
99 }
100
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000101private:
102 // Specifies where the initial color comes from before the stages are applied.
103 enum ColorInput {
104 kSolidWhite_ColorInput,
105 kTransBlack_ColorInput,
106 kAttribute_ColorInput,
107 kUniform_ColorInput,
108
109 kColorInputCnt
110 };
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000111
bsalomon@google.com5920ac22013-04-19 13:14:45 +0000112 enum CoverageOutput {
113 // modulate color and coverage, write result as the color output.
114 kModulate_CoverageOutput,
115 // Writes color*coverage as the primary color output and also writes coverage as the
116 // secondary output. Only set if dual source blending is supported.
117 kSecondaryCoverage_CoverageOutput,
118 // Writes color*coverage as the primary color output and also writes coverage * (1 - colorA)
119 // as the secondary output. Only set if dual source blending is supported.
120 kSecondaryCoverageISA_CoverageOutput,
121 // Writes color*coverage as the primary color output and also writes coverage *
122 // (1 - colorRGB) as the secondary output. Only set if dual source blending is supported.
123 kSecondaryCoverageISC_CoverageOutput,
124 // Combines the coverage, dst, and color as coverage * color + (1 - coverage) * dst. This
bsalomon@google.comb5158812013-05-13 18:50:25 +0000125 // can only be set if fDstReadKey is non-zero.
bsalomon@google.com5920ac22013-04-19 13:14:45 +0000126 kCombineWithDst_CoverageOutput,
127
128 kCoverageOutputCnt
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000129 };
130
bsalomon@google.com5920ac22013-04-19 13:14:45 +0000131 static bool CoverageOutputUsesSecondaryOutput(CoverageOutput co) {
132 switch (co) {
133 case kSecondaryCoverage_CoverageOutput: // fallthru
134 case kSecondaryCoverageISA_CoverageOutput:
135 case kSecondaryCoverageISC_CoverageOutput:
136 return true;
137 default:
138 return false;
139 }
140 }
141
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000142 struct KeyHeader {
bsalomon848faf02014-07-11 10:01:02 -0700143 uint8_t fDstReadKey; // set by GrGLShaderBuilder if there
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000144 // are effects that must read the dst.
145 // Otherwise, 0.
bsalomon848faf02014-07-11 10:01:02 -0700146 uint8_t fFragPosKey; // set by GrGLShaderBuilder if there are
bsalomon@google.comb5158812013-05-13 18:50:25 +0000147 // effects that read the fragment position.
148 // Otherwise, 0.
commit-bot@chromium.org949eef02013-10-01 18:43:29 +0000149 ColorInput fColorInput : 8;
150 ColorInput fCoverageInput : 8;
151 CoverageOutput fCoverageOutput : 8;
jvanverth@google.com054ae992013-04-01 20:06:51 +0000152
commit-bot@chromium.org234d4fb2013-09-30 19:55:49 +0000153 SkBool8 fHasVertexCode;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000154 SkBool8 fEmitsPointSize;
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000155
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000156 // To enable experimental geometry shader code (not for use in
157 // production)
158#if GR_GL_EXPERIMENTAL_GS
159 SkBool8 fExperimentalGS;
160#endif
161
162 int8_t fPositionAttributeIndex;
163 int8_t fLocalCoordAttributeIndex;
164 int8_t fColorAttributeIndex;
165 int8_t fCoverageAttributeIndex;
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000166
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000167 int8_t fColorEffectCnt;
168 int8_t fCoverageEffectCnt;
169 };
170
bsalomon848faf02014-07-11 10:01:02 -0700171 // The key, stored in fKey, is composed of five parts:
172 // 1. uint32_t for total key length.
173 // 2. uint32_t for a checksum.
174 // 3. Header struct defined above.
bsalomon929f29a2014-07-17 07:55:11 -0700175 // 4. An array of offsets to effect keys and their sizes (see 5). uint16_t for each
176 // offset and size.
bsalomon848faf02014-07-11 10:01:02 -0700177 // 5. per-effect keys. Each effect's key is a variable length array of uint32_t.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000178 enum {
bsalomon929f29a2014-07-17 07:55:11 -0700179 // Part 1.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000180 kLengthOffset = 0,
bsalomon929f29a2014-07-17 07:55:11 -0700181 // Part 2.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000182 kChecksumOffset = kLengthOffset + sizeof(uint32_t),
bsalomon929f29a2014-07-17 07:55:11 -0700183 // Part 3.
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000184 kHeaderOffset = kChecksumOffset + sizeof(uint32_t),
185 kHeaderSize = SkAlign4(sizeof(KeyHeader)),
bsalomon929f29a2014-07-17 07:55:11 -0700186 // Part 4.
187 // This is the offset in the overall key to the array of per-effect offset,length pairs.
188 kEffectKeyOffsetsAndLengthOffset = kHeaderOffset + kHeaderSize,
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000189 };
190
191 template<typename T, size_t OFFSET> T* atOffset() {
bsalomon848faf02014-07-11 10:01:02 -0700192 return reinterpret_cast<T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000193 }
194
195 template<typename T, size_t OFFSET> const T* atOffset() const {
bsalomon848faf02014-07-11 10:01:02 -0700196 return reinterpret_cast<const T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000197 }
198
bsalomon848faf02014-07-11 10:01:02 -0700199 typedef GrBackendEffectFactory::EffectKey EffectKey;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000200
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().
204 static bool GetEffectKeyAndUpdateStats(const GrEffectStage& stage,
205 const GrGLCaps& caps,
206 bool useExplicitLocalCoords,
207 GrEffectKeyBuilder* b,
208 uint16_t* effectKeySize,
209 bool* setTrueIfReadsDst,
210 bool* setTrueIfReadsPos,
211 bool* setTrueIfHasVertexCode);
212
bsalomon848faf02014-07-11 10:01:02 -0700213 void finalize();
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000214
215 const KeyHeader& getHeader() const { return *this->atOffset<KeyHeader, kHeaderOffset>(); }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000216
bsalomon848faf02014-07-11 10:01:02 -0700217 /** Used to provide effects' keys to their emitCode() function. */
218 class EffectKeyProvider {
219 public:
220 enum EffectType {
221 kColor_EffectType,
222 kCoverage_EffectType,
223 };
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000224
bsalomon848faf02014-07-11 10:01:02 -0700225 EffectKeyProvider(const GrGLProgramDesc* desc, EffectType type) : fDesc(desc) {
226 // Coverage effect key offsets begin immediately after those of the color effects.
227 fBaseIndex = kColor_EffectType == type ? 0 : desc->numColorEffects();
228 }
229
230 EffectKey get(int index) const {
bsalomon929f29a2014-07-17 07:55:11 -0700231 const uint16_t* offsets = reinterpret_cast<const uint16_t*>(
232 fDesc->fKey.begin() + kEffectKeyOffsetsAndLengthOffset);
233 // We store two uint16_ts per effect, one for the offset to the effect's key and one for
234 // its length. Here we just need the offset.
235 uint16_t offset = offsets[2 * (fBaseIndex + index)];
bsalomon848faf02014-07-11 10:01:02 -0700236 return *reinterpret_cast<const EffectKey*>(fDesc->fKey.begin() + offset);
237 }
238 private:
239 const GrGLProgramDesc* fDesc;
240 int fBaseIndex;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000241 };
242
bsalomon848faf02014-07-11 10:01:02 -0700243 enum {
244 kMaxPreallocEffects = 8,
245 kIntsPerEffect = 4, // This is an overestimate of the average effect key size.
bsalomon929f29a2014-07-17 07:55:11 -0700246 kPreAllocSize = kEffectKeyOffsetsAndLengthOffset +
bsalomon848faf02014-07-11 10:01:02 -0700247 kMaxPreallocEffects * sizeof(uint32_t) * kIntsPerEffect,
248 };
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000249
bsalomon848faf02014-07-11 10:01:02 -0700250 SkSTArray<kPreAllocSize, uint8_t, true> fKey;
251
252 // GrGLProgram and GrGLShaderBuilder read the private fields to generate code. TODO: Split out
253 // part of GrGLShaderBuilder that is used by effects so that this header doesn't need to be
254 // visible to GrGLEffects. Then make public accessors as necessary and remove friends.
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000255 friend class GrGLProgram;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000256 friend class GrGLShaderBuilder;
commit-bot@chromium.org261dc562013-10-04 15:42:56 +0000257 friend class GrGLFullShaderBuilder;
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000258 friend class GrGLFragmentOnlyShaderBuilder;
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000259};
260
261#endif