blob: ec6447d622698a328d90cb1bad8915813888607f [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
joshualitt79f8fae2014-10-28 17:59:26 -070011#include "GrColor.h"
12#include "GrTypesPriv.h"
13#include "SkChecksum.h"
14
joshualitt79f8fae2014-10-28 17:59:26 -070015/** This class describes a program to generate. It also serves as a program cache key. Very little
16 of this is GL-specific. The GL-specific parts could be factored out into a subclass. */
17class GrProgramDesc {
18public:
19 // Creates an uninitialized key that must be populated by GrGpu::buildProgramDesc()
20 GrProgramDesc() {}
21
22 // Returns this as a uint32_t array to be used as a key in the program cache.
23 const uint32_t* asKey() const {
24 return reinterpret_cast<const uint32_t*>(fKey.begin());
25 }
26
27 // Gets the number of bytes in asKey(). It will be a 4-byte aligned value. When comparing two
28 // keys the size of either key can be used with memcmp() since the lengths themselves begin the
29 // keys and thus the memcmp will exit early if the keys are of different lengths.
30 uint32_t keyLength() const { return *this->atOffset<uint32_t, kLengthOffset>(); }
31
32 // Gets the a checksum of the key. Can be used as a hash value for a fast lookup in a cache.
33 uint32_t getChecksum() const { return *this->atOffset<uint32_t, kChecksumOffset>(); }
34
35 GrProgramDesc& operator= (const GrProgramDesc& other) {
bsalomonccb328d2014-12-11 13:31:06 -080036 uint32_t keyLength = other.keyLength();
bsalomonef3fcd82014-12-12 08:51:38 -080037 fKey.reset(SkToInt(keyLength));
joshualitt79f8fae2014-10-28 17:59:26 -070038 memcpy(fKey.begin(), other.fKey.begin(), keyLength);
39 return *this;
40 }
41
bsalomon89d59882015-06-04 15:34:34 -070042 bool operator== (const GrProgramDesc& that) const {
43 SkASSERT(SkIsAlign4(this->keyLength()));
44 int l = this->keyLength() >> 2;
45 const uint32_t* aKey = this->asKey();
46 const uint32_t* bKey = that.asKey();
47 for (int i = 0; i < l; ++i) {
48 if (aKey[i] != bKey[i]) {
49 return false;
50 }
51 }
52 return true;
joshualitt79f8fae2014-10-28 17:59:26 -070053 }
54
55 bool operator!= (const GrProgramDesc& other) const {
56 return !(*this == other);
57 }
58
59 static bool Less(const GrProgramDesc& a, const GrProgramDesc& b) {
bsalomon89d59882015-06-04 15:34:34 -070060 SkASSERT(SkIsAlign4(a.keyLength()));
61 int l = a.keyLength() >> 2;
62 const uint32_t* aKey = a.asKey();
63 const uint32_t* bKey = b.asKey();
64 for (int i = 0; i < l; ++i) {
65 if (aKey[i] != bKey[i]) {
66 return aKey[i] < bKey[i] ? true : false;
67 }
68 }
69 return false;
joshualitt79f8fae2014-10-28 17:59:26 -070070 }
71
joshualitt79f8fae2014-10-28 17:59:26 -070072 struct KeyHeader {
cdalton28f45b92016-03-07 13:58:26 -080073 // Set to uniquely identify the rt's origin, or 0 if the shader does not require this info.
74 uint8_t fSurfaceOriginKey;
75 // Set to uniquely identify the sample pattern, or 0 if the shader doesn't use sample
76 // locations.
77 uint8_t fSamplePatternKey;
bsalomon7f9b2e42016-01-12 13:29:26 -080078 // Set to uniquely idenitify any swizzling of the shader's output color(s).
79 uint8_t fOutputSwizzle;
bsalomond79c5492015-04-27 10:07:04 -070080 uint8_t fSnapVerticesToPixelCenters;
joshualitt79f8fae2014-10-28 17:59:26 -070081 int8_t fColorEffectCnt;
82 int8_t fCoverageEffectCnt;
egdaniel56cf6dc2015-11-30 10:15:58 -080083 uint8_t fIgnoresCoverage;
joshualitt79f8fae2014-10-28 17:59:26 -070084 };
85
joshualitt79f8fae2014-10-28 17:59:26 -070086 int numColorEffects() const {
87 return this->header().fColorEffectCnt;
88 }
89
90 int numCoverageEffects() const {
91 return this->header().fCoverageEffectCnt;
92 }
93
94 int numTotalEffects() const { return this->numColorEffects() + this->numCoverageEffects(); }
95
96 // This should really only be used internally, base classes should return their own headers
97 const KeyHeader& header() const { return *this->atOffset<KeyHeader, kHeaderOffset>(); }
98
jvanverthd1e72872015-04-20 12:29:37 -070099protected:
joshualitt79f8fae2014-10-28 17:59:26 -0700100 template<typename T, size_t OFFSET> T* atOffset() {
101 return reinterpret_cast<T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
102 }
103
104 template<typename T, size_t OFFSET> const T* atOffset() const {
105 return reinterpret_cast<const T*>(reinterpret_cast<intptr_t>(fKey.begin()) + OFFSET);
106 }
107
108 void finalize() {
109 int keyLength = fKey.count();
110 SkASSERT(0 == (keyLength % 4));
111 *(this->atOffset<uint32_t, GrProgramDesc::kLengthOffset>()) = SkToU32(keyLength);
112
113 uint32_t* checksum = this->atOffset<uint32_t, GrProgramDesc::kChecksumOffset>();
mtklein56da0252015-11-16 11:16:23 -0800114 *checksum = 0; // We'll hash through these bytes, so make sure they're initialized.
115 *checksum = SkChecksum::Murmur3(fKey.begin(), keyLength);
joshualitt79f8fae2014-10-28 17:59:26 -0700116 }
117
118 // The key, stored in fKey, is composed of four parts:
119 // 1. uint32_t for total key length.
120 // 2. uint32_t for a checksum.
121 // 3. Header struct defined above. Also room for extensions to the header
122 // 4. A Backend specific payload. Room is preallocated for this
123 enum KeyOffsets {
124 // Part 1.
125 kLengthOffset = 0,
126 // Part 2.
127 kChecksumOffset = kLengthOffset + sizeof(uint32_t),
128 // Part 3.
129 kHeaderOffset = kChecksumOffset + sizeof(uint32_t),
130 kHeaderSize = SkAlign4(2 * sizeof(KeyHeader)),
131 };
132
133 enum {
134 kMaxPreallocProcessors = 8,
135 kIntsPerProcessor = 4, // This is an overestimate of the average effect key size.
136 kPreAllocSize = kHeaderOffset + kHeaderSize +
137 kMaxPreallocProcessors * sizeof(uint32_t) * kIntsPerProcessor,
138 };
139
jvanverthd1e72872015-04-20 12:29:37 -0700140 SkSTArray<kPreAllocSize, uint8_t, true>& key() { return fKey; }
141 const SkSTArray<kPreAllocSize, uint8_t, true>& key() const { return fKey; }
joshualitt79f8fae2014-10-28 17:59:26 -0700142
jvanverthd1e72872015-04-20 12:29:37 -0700143private:
144 SkSTArray<kPreAllocSize, uint8_t, true> fKey;
joshualitt79f8fae2014-10-28 17:59:26 -0700145};
146
147#endif