blob: 788842d7bec41a0ce211a5692fdab48957d6492f [file] [log] [blame]
joshualitt79f8fae2014-10-28 17:59:26 -07001/*
2 * Copyright 2014 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 GrProgramDesc_DEFINED
9#define GrProgramDesc_DEFINED
10
11#include "GrBackendProcessorFactory.h"
12#include "GrColor.h"
13#include "GrTypesPriv.h"
14#include "SkChecksum.h"
15
16class GrGpuGL;
17
18/** This class describes a program to generate. It also serves as a program cache key. Very little
19 of this is GL-specific. The GL-specific parts could be factored out into a subclass. */
20class GrProgramDesc {
21public:
22 // Creates an uninitialized key that must be populated by GrGpu::buildProgramDesc()
23 GrProgramDesc() {}
24
25 // Returns this as a uint32_t array to be used as a key in the program cache.
26 const uint32_t* asKey() const {
27 return reinterpret_cast<const uint32_t*>(fKey.begin());
28 }
29
30 // Gets the number of bytes in asKey(). It will be a 4-byte aligned value. When comparing two
31 // keys the size of either key can be used with memcmp() since the lengths themselves begin the
32 // keys and thus the memcmp will exit early if the keys are of different lengths.
33 uint32_t keyLength() const { return *this->atOffset<uint32_t, kLengthOffset>(); }
34
35 // Gets the a checksum of the key. Can be used as a hash value for a fast lookup in a cache.
36 uint32_t getChecksum() const { return *this->atOffset<uint32_t, kChecksumOffset>(); }
37
38 GrProgramDesc& operator= (const GrProgramDesc& other) {
39 size_t keyLength = other.keyLength();
40 fKey.reset(keyLength);
41 memcpy(fKey.begin(), other.fKey.begin(), keyLength);
42 return *this;
43 }
44
45 bool operator== (const GrProgramDesc& other) const {
46 // The length is masked as a hint to the compiler that the address will be 4 byte aligned.
47 return 0 == memcmp(this->asKey(), other.asKey(), this->keyLength() & ~0x3);
48 }
49
50 bool operator!= (const GrProgramDesc& other) const {
51 return !(*this == other);
52 }
53
54 static bool Less(const GrProgramDesc& a, const GrProgramDesc& b) {
55 return memcmp(a.asKey(), b.asKey(), a.keyLength() & ~0x3) < 0;
56 }
57
58
59 ///////////////////////////////////////////////////////////////////////////
60 /// @name Stage Output Types
61 ////
62
63 enum PrimaryOutputType {
64 // Modulate color and coverage, write result as the color output.
65 kModulate_PrimaryOutputType,
66 // Combines the coverage, dst, and color as coverage * color + (1 - coverage) * dst. This
67 // can only be set if fDstReadKey is non-zero.
68 kCombineWithDst_PrimaryOutputType,
69
70 kPrimaryOutputTypeCnt,
71 };
72
73 enum SecondaryOutputType {
74 // There is no secondary output
75 kNone_SecondaryOutputType,
76 // Writes coverage as the secondary output. Only set if dual source blending is supported
77 // and primary output is kModulate.
78 kCoverage_SecondaryOutputType,
79 // Writes coverage * (1 - colorA) as the secondary output. Only set if dual source blending
80 // is supported and primary output is kModulate.
81 kCoverageISA_SecondaryOutputType,
82 // Writes coverage * (1 - colorRGBA) as the secondary output. Only set if dual source
83 // blending is supported and primary output is kModulate.
84 kCoverageISC_SecondaryOutputType,
85
86 kSecondaryOutputTypeCnt,
87 };
88
89 // Specifies where the initial color comes from before the stages are applied.
90 enum ColorInput {
91 kAllOnes_ColorInput,
92 kAttribute_ColorInput,
93 kUniform_ColorInput,
94
95 kColorInputCnt
96 };
97
98 struct KeyHeader {
99 uint8_t fDstReadKey; // set by GrGLShaderBuilder if there
100 // are effects that must read the dst.
101 // Otherwise, 0.
102 uint8_t fFragPosKey; // set by GrGLShaderBuilder if there are
103 // effects that read the fragment position.
104 // Otherwise, 0.
105
106 SkBool8 fEmitsPointSize;
107
108 ColorInput fColorInput : 8;
109 ColorInput fCoverageInput : 8;
110
111 PrimaryOutputType fPrimaryOutputType : 8;
112 SecondaryOutputType fSecondaryOutputType : 8;
113
114 int8_t fPositionAttributeIndex;
115 int8_t fLocalCoordAttributeIndex;
116 int8_t fColorAttributeIndex;
117 int8_t fCoverageAttributeIndex;
118
119 SkBool8 fHasGeometryProcessor;
120 int8_t fColorEffectCnt;
121 int8_t fCoverageEffectCnt;
122 };
123
124
125 bool hasGeometryProcessor() const {
126 return SkToBool(this->header().fHasGeometryProcessor);
127 }
128
129 int numColorEffects() const {
130 return this->header().fColorEffectCnt;
131 }
132
133 int numCoverageEffects() const {
134 return this->header().fCoverageEffectCnt;
135 }
136
137 int numTotalEffects() const { return this->numColorEffects() + this->numCoverageEffects(); }
138
139 // This should really only be used internally, base classes should return their own headers
140 const KeyHeader& header() const { return *this->atOffset<KeyHeader, kHeaderOffset>(); }
141
joshualitt79f8fae2014-10-28 17:59:26 -0700142 // A struct to communicate descriptor information to the program descriptor builder
143 struct DescInfo {
144 int positionAttributeIndex() const {
145 return fFixedFunctionVertexAttribIndices[kPosition_GrVertexAttribBinding];
146 }
147 int localCoordAttributeIndex() const {
148 return fFixedFunctionVertexAttribIndices[kLocalCoord_GrVertexAttribBinding];
149 }
150 int colorVertexAttributeIndex() const {
151 return fFixedFunctionVertexAttribIndices[kColor_GrVertexAttribBinding];
152 }
153 int coverageVertexAttributeIndex() const {
154 return fFixedFunctionVertexAttribIndices[kCoverage_GrVertexAttribBinding];
155 }
156 bool hasLocalCoordAttribute() const {
157 return -1 != fFixedFunctionVertexAttribIndices[kLocalCoord_GrVertexAttribBinding];
158 }
159 bool hasColorVertexAttribute() const {
160 return -1 != fFixedFunctionVertexAttribIndices[kColor_GrVertexAttribBinding];
161 }
162 bool hasCoverageVertexAttribute() const {
163 return -1 != fFixedFunctionVertexAttribIndices[kCoverage_GrVertexAttribBinding];
164 }
165
166 int fFixedFunctionVertexAttribIndices[kGrFixedFunctionVertexAttribBindingCnt];
167
168 // These flags are needed to protect the code from creating an unused uniform color/coverage
169 // which will cause shader compiler errors.
170 bool fInputColorIsUsed;
171 bool fInputCoverageIsUsed;
172
173 // These flags give aggregated info on the processor stages that are used when building
174 // programs.
175 bool fReadsDst;
176 bool fReadsFragPosition;
177 bool fRequiresLocalCoordAttrib;
178
179 // Fragment shader color outputs
180 GrProgramDesc::PrimaryOutputType fPrimaryOutputType : 8;
181 GrProgramDesc::SecondaryOutputType fSecondaryOutputType : 8;
182 };
183
184private:
185 template<typename T, size_t OFFSET> T* atOffset() {
186 return reinterpret_cast<T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
187 }
188
189 template<typename T, size_t OFFSET> const T* atOffset() const {
190 return reinterpret_cast<const T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
191 }
192
193 void finalize() {
194 int keyLength = fKey.count();
195 SkASSERT(0 == (keyLength % 4));
196 *(this->atOffset<uint32_t, GrProgramDesc::kLengthOffset>()) = SkToU32(keyLength);
197
198 uint32_t* checksum = this->atOffset<uint32_t, GrProgramDesc::kChecksumOffset>();
199 *checksum = 0;
200 *checksum = SkChecksum::Compute(reinterpret_cast<uint32_t*>(fKey.begin()), keyLength);
201 }
202
203 // The key, stored in fKey, is composed of four parts:
204 // 1. uint32_t for total key length.
205 // 2. uint32_t for a checksum.
206 // 3. Header struct defined above. Also room for extensions to the header
207 // 4. A Backend specific payload. Room is preallocated for this
208 enum KeyOffsets {
209 // Part 1.
210 kLengthOffset = 0,
211 // Part 2.
212 kChecksumOffset = kLengthOffset + sizeof(uint32_t),
213 // Part 3.
214 kHeaderOffset = kChecksumOffset + sizeof(uint32_t),
215 kHeaderSize = SkAlign4(2 * sizeof(KeyHeader)),
216 };
217
218 enum {
219 kMaxPreallocProcessors = 8,
220 kIntsPerProcessor = 4, // This is an overestimate of the average effect key size.
221 kPreAllocSize = kHeaderOffset + kHeaderSize +
222 kMaxPreallocProcessors * sizeof(uint32_t) * kIntsPerProcessor,
223 };
224
225 SkSTArray<kPreAllocSize, uint8_t, true> fKey;
226
227 friend class GrGLProgramDescBuilder;
228};
229
230#endif