bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 9 | // This is a GPU-backend specific test. It relies on static intializers to work |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 10 | |
bsalomon@google.com | 2a48c3a | 2012-08-03 14:54:45 +0000 | [diff] [blame] | 11 | #include "SkTypes.h" |
| 12 | |
| 13 | #if SK_SUPPORT_GPU && SK_ALLOW_STATIC_GLOBAL_INITIALIZERS |
| 14 | |
bsalomon@google.com | 396e61f | 2012-10-25 19:00:29 +0000 | [diff] [blame] | 15 | #include "GrBackendEffectFactory.h" |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 16 | #include "GrContextFactory.h" |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 17 | #include "effects/GrConfigConversionEffect.h" |
kkinnunen | ec56e45 | 2014-08-25 22:21:16 -0700 | [diff] [blame] | 18 | #include "gl/GrGLPathRendering.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 19 | #include "gl/GrGpuGL.h" |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 20 | #include "SkChecksum.h" |
tfarina@chromium.org | 223137f | 2012-11-21 22:38:36 +0000 | [diff] [blame] | 21 | #include "SkRandom.h" |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 22 | #include "Test.h" |
| 23 | |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 24 | bool GrGLProgramDesc::setRandom(SkRandom* random, |
bsalomon@google.com | 31ec798 | 2013-03-27 18:14:57 +0000 | [diff] [blame] | 25 | const GrGpuGL* gpu, |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 26 | const GrRenderTarget* dstRenderTarget, |
| 27 | const GrTexture* dstCopyTexture, |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 28 | const GrEffectStage* geometryProcessor, |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 29 | const GrEffectStage* stages[], |
| 30 | int numColorStages, |
| 31 | int numCoverageStages, |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 32 | int currAttribIndex) { |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 33 | bool useLocalCoords = random->nextBool() && currAttribIndex < GrDrawState::kMaxVertexAttribCnt; |
| 34 | |
| 35 | int numStages = numColorStages + numCoverageStages; |
| 36 | fKey.reset(); |
| 37 | |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 38 | GR_STATIC_ASSERT(0 == kEffectKeyOffsetsAndLengthOffset % sizeof(uint32_t)); |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 39 | |
| 40 | // Make room for everything up to and including the array of offsets to effect keys. |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 41 | fKey.push_back_n(kEffectKeyOffsetsAndLengthOffset + 2 * sizeof(uint16_t) * (numStages + |
| 42 | (geometryProcessor ? 1 : 0))); |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 43 | |
| 44 | bool dstRead = false; |
| 45 | bool fragPos = false; |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 46 | bool vertexShader = SkToBool(geometryProcessor); |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 47 | int offset = 0; |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 48 | if (geometryProcessor) { |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 49 | const GrEffectStage* stage = geometryProcessor; |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 50 | uint16_t* offsetAndSize = reinterpret_cast<uint16_t*>(fKey.begin() + |
| 51 | kEffectKeyOffsetsAndLengthOffset + |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 52 | offset * 2 * sizeof(uint16_t)); |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 53 | uint32_t effectKeyOffset = fKey.count(); |
| 54 | if (effectKeyOffset > SK_MaxU16) { |
bsalomon | c0ea398 | 2014-07-15 19:41:17 -0700 | [diff] [blame] | 55 | fKey.reset(); |
| 56 | return false; |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 57 | } |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 58 | GrEffectKeyBuilder b(&fKey); |
| 59 | uint16_t effectKeySize; |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 60 | if (!GetEffectKeyAndUpdateStats(*stage, gpu->glCaps(), useLocalCoords, &b, |
| 61 | &effectKeySize, &dstRead, &fragPos, &vertexShader)) { |
| 62 | fKey.reset(); |
| 63 | return false; |
| 64 | } |
| 65 | offsetAndSize[0] = effectKeyOffset; |
| 66 | offsetAndSize[1] = effectKeySize; |
| 67 | offset++; |
| 68 | } |
| 69 | |
| 70 | for (int s = 0; s < numStages; ++s, ++offset) { |
| 71 | const GrEffectStage* stage = stages[s]; |
| 72 | uint16_t* offsetAndSize = reinterpret_cast<uint16_t*>(fKey.begin() + |
| 73 | kEffectKeyOffsetsAndLengthOffset + |
| 74 | offset * 2 * sizeof(uint16_t)); |
| 75 | uint32_t effectKeyOffset = fKey.count(); |
| 76 | if (effectKeyOffset > SK_MaxU16) { |
| 77 | fKey.reset(); |
| 78 | return false; |
| 79 | } |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 80 | GrEffectKeyBuilder b(&fKey); |
| 81 | uint16_t effectKeySize; |
| 82 | if (!GetEffectKeyAndUpdateStats(*stage, gpu->glCaps(), useLocalCoords, &b, |
kkinnunen | ec56e45 | 2014-08-25 22:21:16 -0700 | [diff] [blame] | 83 | &effectKeySize, &dstRead, &fragPos, &vertexShader)) { |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 84 | fKey.reset(); |
| 85 | return false; |
mtklein | 7940100 | 2014-07-16 06:16:43 -0700 | [diff] [blame] | 86 | } |
bsalomon | 929f29a | 2014-07-17 07:55:11 -0700 | [diff] [blame] | 87 | offsetAndSize[0] = effectKeyOffset; |
| 88 | offsetAndSize[1] = effectKeySize; |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 89 | } |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 90 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 91 | KeyHeader* header = this->header(); |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 92 | memset(header, 0, kHeaderSize); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 93 | header->fEmitsPointSize = random->nextBool(); |
| 94 | |
| 95 | header->fPositionAttributeIndex = 0; |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 96 | |
skia.committer@gmail.com | 05a2ee0 | 2013-04-02 07:01:34 +0000 | [diff] [blame] | 97 | // if the effects have used up all off the available attributes, |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 98 | // don't try to use color or coverage attributes as input |
| 99 | do { |
egdaniel | 02cafcc | 2014-07-21 11:37:28 -0700 | [diff] [blame] | 100 | uint32_t colorRand = random->nextULessThan(2); |
| 101 | header->fColorInput = (0 == colorRand) ? GrGLProgramDesc::kAttribute_ColorInput : |
| 102 | GrGLProgramDesc::kUniform_ColorInput; |
skia.committer@gmail.com | 05a2ee0 | 2013-04-02 07:01:34 +0000 | [diff] [blame] | 103 | } while (GrDrawState::kMaxVertexAttribCnt <= currAttribIndex && |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 104 | kAttribute_ColorInput == header->fColorInput); |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 105 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 106 | header->fColorAttributeIndex = (header->fColorInput == kAttribute_ColorInput) ? |
| 107 | currAttribIndex++ : |
| 108 | -1; |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 109 | |
| 110 | do { |
commit-bot@chromium.org | 949eef0 | 2013-10-01 18:43:29 +0000 | [diff] [blame] | 111 | header->fCoverageInput = static_cast<GrGLProgramDesc::ColorInput>( |
| 112 | random->nextULessThan(kColorInputCnt)); |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 113 | } while (GrDrawState::kMaxVertexAttribCnt <= currAttribIndex && |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 114 | kAttribute_ColorInput == header->fCoverageInput); |
| 115 | header->fCoverageAttributeIndex = (header->fCoverageInput == kAttribute_ColorInput) ? |
| 116 | currAttribIndex++ : |
| 117 | -1; |
bsalomon@google.com | 9120748 | 2013-02-12 21:45:24 +0000 | [diff] [blame] | 118 | |
bsalomon@google.com | 9120748 | 2013-02-12 21:45:24 +0000 | [diff] [blame] | 119 | #if GR_GL_EXPERIMENTAL_GS |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 120 | header->fExperimentalGS = gpu->caps()->geometryShaderSupport() && random->nextBool(); |
bsalomon@google.com | 9120748 | 2013-02-12 21:45:24 +0000 | [diff] [blame] | 121 | #endif |
| 122 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 123 | header->fLocalCoordAttributeIndex = useLocalCoords ? currAttribIndex++ : -1; |
| 124 | |
| 125 | header->fColorEffectCnt = numColorStages; |
| 126 | header->fCoverageEffectCnt = numCoverageStages; |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 127 | |
bsalomon@google.com | b79d865 | 2013-03-29 20:30:50 +0000 | [diff] [blame] | 128 | if (dstRead) { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 129 | header->fDstReadKey = SkToU8(GrGLFragmentShaderBuilder::KeyForDstRead(dstCopyTexture, |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 130 | gpu->glCaps())); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 131 | } else { |
| 132 | header->fDstReadKey = 0; |
| 133 | } |
| 134 | if (fragPos) { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 135 | header->fFragPosKey = SkToU8(GrGLFragmentShaderBuilder::KeyForFragmentPosition(dstRenderTarget, |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 136 | gpu->glCaps())); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 137 | } else { |
| 138 | header->fFragPosKey = 0; |
bsalomon@google.com | b79d865 | 2013-03-29 20:30:50 +0000 | [diff] [blame] | 139 | } |
bsalomon@google.com | 5920ac2 | 2013-04-19 13:14:45 +0000 | [diff] [blame] | 140 | |
kkinnunen | ec56e45 | 2014-08-25 22:21:16 -0700 | [diff] [blame] | 141 | header->fRequiresVertexShader = vertexShader || |
| 142 | useLocalCoords || |
| 143 | kAttribute_ColorInput == header->fColorInput || |
| 144 | kAttribute_ColorInput == header->fCoverageInput; |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 145 | header->fHasGeometryProcessor = vertexShader; |
commit-bot@chromium.org | 6b30e45 | 2013-10-04 20:02:53 +0000 | [diff] [blame] | 146 | |
bsalomon@google.com | 5920ac2 | 2013-04-19 13:14:45 +0000 | [diff] [blame] | 147 | CoverageOutput coverageOutput; |
| 148 | bool illegalCoverageOutput; |
| 149 | do { |
| 150 | coverageOutput = static_cast<CoverageOutput>(random->nextULessThan(kCoverageOutputCnt)); |
| 151 | illegalCoverageOutput = (!gpu->caps()->dualSourceBlendingSupport() && |
| 152 | CoverageOutputUsesSecondaryOutput(coverageOutput)) || |
bsalomon@google.com | 72993ab | 2013-04-19 13:25:28 +0000 | [diff] [blame] | 153 | (!dstRead && kCombineWithDst_CoverageOutput == coverageOutput); |
bsalomon@google.com | 5920ac2 | 2013-04-19 13:14:45 +0000 | [diff] [blame] | 154 | } while (illegalCoverageOutput); |
| 155 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 156 | header->fCoverageOutput = coverageOutput; |
| 157 | |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 158 | this->finalize(); |
| 159 | return true; |
bsalomon@google.com | 9120748 | 2013-02-12 21:45:24 +0000 | [diff] [blame] | 160 | } |
| 161 | |
joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame] | 162 | // TODO clean this up, we have to do this to test geometry processors but there has got to be |
| 163 | // a better way. In the mean time, we actually fill out these generic vertex attribs below with |
| 164 | // the correct vertex attribs from the GP. We have to ensure, however, we don't try to add more |
| 165 | // than two attributes. |
| 166 | GrVertexAttrib genericVertexAttribs[] = { |
| 167 | { kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding }, |
| 168 | { kVec2f_GrVertexAttribType, 0, kEffect_GrVertexAttribBinding }, |
| 169 | { kVec2f_GrVertexAttribType, 0, kEffect_GrVertexAttribBinding } |
| 170 | }; |
| 171 | |
| 172 | /* |
| 173 | * convert sl type to vertexattrib type, not a complete implementation, only use for debugging |
| 174 | */ |
| 175 | GrVertexAttribType convert_sltype_to_attribtype(GrSLType type) { |
| 176 | switch (type) { |
| 177 | case kFloat_GrSLType: |
| 178 | return kFloat_GrVertexAttribType; |
| 179 | case kVec2f_GrSLType: |
| 180 | return kVec2f_GrVertexAttribType; |
| 181 | case kVec3f_GrSLType: |
| 182 | return kVec3f_GrVertexAttribType; |
| 183 | case kVec4f_GrSLType: |
| 184 | return kVec4f_GrVertexAttribType; |
| 185 | default: |
| 186 | SkFAIL("Type isn't convertible"); |
| 187 | return kFloat_GrVertexAttribType; |
| 188 | } |
| 189 | } |
| 190 | // TODO end test hack |
| 191 | |
| 192 | |
bsalomon@google.com | 042a286 | 2013-02-04 18:39:24 +0000 | [diff] [blame] | 193 | bool GrGpuGL::programUnitTest(int maxStages) { |
| 194 | |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 195 | GrTextureDesc dummyDesc; |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 196 | dummyDesc.fFlags = kRenderTarget_GrTextureFlagBit; |
bsalomon@google.com | fec0bc3 | 2013-02-07 14:43:04 +0000 | [diff] [blame] | 197 | dummyDesc.fConfig = kSkia8888_GrPixelConfig; |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 198 | dummyDesc.fWidth = 34; |
| 199 | dummyDesc.fHeight = 18; |
| 200 | SkAutoTUnref<GrTexture> dummyTexture1(this->createTexture(dummyDesc, NULL, 0)); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 201 | dummyDesc.fFlags = kNone_GrTextureFlags; |
bsalomon@google.com | d472620 | 2012-08-03 14:34:46 +0000 | [diff] [blame] | 202 | dummyDesc.fConfig = kAlpha_8_GrPixelConfig; |
| 203 | dummyDesc.fWidth = 16; |
| 204 | dummyDesc.fHeight = 22; |
| 205 | SkAutoTUnref<GrTexture> dummyTexture2(this->createTexture(dummyDesc, NULL, 0)); |
| 206 | |
bsalomon | e904c09 | 2014-07-17 10:50:59 -0700 | [diff] [blame] | 207 | if (!dummyTexture1 || ! dummyTexture2) { |
| 208 | return false; |
| 209 | } |
| 210 | |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 211 | static const int NUM_TESTS = 512; |
| 212 | |
commit-bot@chromium.org | e0e7cfe | 2013-09-09 20:09:12 +0000 | [diff] [blame] | 213 | SkRandom random; |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 214 | for (int t = 0; t < NUM_TESTS; ++t) { |
| 215 | |
| 216 | #if 0 |
| 217 | GrPrintf("\nTest Program %d\n-------------\n", t); |
| 218 | static const int stop = -1; |
| 219 | if (t == stop) { |
| 220 | int breakpointhere = 9; |
| 221 | } |
| 222 | #endif |
| 223 | |
bsalomon@google.com | 31ec798 | 2013-03-27 18:14:57 +0000 | [diff] [blame] | 224 | GrGLProgramDesc pdesc; |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 225 | |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 226 | int currAttribIndex = 1; // we need to always leave room for position |
commit-bot@chromium.org | 8e919ad | 2013-10-21 14:48:23 +0000 | [diff] [blame] | 227 | int currTextureCoordSet = 0; |
bsalomon@google.com | b79d865 | 2013-03-29 20:30:50 +0000 | [diff] [blame] | 228 | GrTexture* dummyTextures[] = {dummyTexture1.get(), dummyTexture2.get()}; |
commit-bot@chromium.org | 9ae7850 | 2013-03-21 17:44:39 +0000 | [diff] [blame] | 229 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 230 | int numStages = random.nextULessThan(maxStages + 1); |
| 231 | int numColorStages = random.nextULessThan(numStages + 1); |
| 232 | int numCoverageStages = numStages - numColorStages; |
| 233 | |
| 234 | SkAutoSTMalloc<8, const GrEffectStage*> stages(numStages); |
| 235 | |
kkinnunen | ec56e45 | 2014-08-25 22:21:16 -0700 | [diff] [blame] | 236 | bool useFixedFunctionPathRendering = this->glCaps().pathRenderingSupport() && |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 237 | this->glPathRendering()->texturingMode() == GrGLPathRendering::FixedFunction_TexturingMode && |
| 238 | random.nextBool(); |
commit-bot@chromium.org | 8e919ad | 2013-10-21 14:48:23 +0000 | [diff] [blame] | 239 | |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 240 | SkAutoTDelete<GrEffectStage> geometryProcessor; |
| 241 | bool hasGeometryProcessor = useFixedFunctionPathRendering ? false : random.nextBool(); |
| 242 | if (hasGeometryProcessor) { |
| 243 | while (true) { |
| 244 | SkAutoTUnref<const GrEffect> effect(GrEffectTestFactory::CreateStage( |
| 245 | &random, |
| 246 | this->getContext(), |
| 247 | *this->caps(), |
| 248 | dummyTextures)); |
| 249 | SkASSERT(effect); |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 250 | // Only geometryProcessor can use vertex shader |
| 251 | if (!effect->requiresVertexShader()) { |
| 252 | continue; |
| 253 | } |
| 254 | |
joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame] | 255 | GrEffectStage* stage = SkNEW_ARGS(GrEffectStage, (effect.get())); |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 256 | geometryProcessor.reset(stage); |
joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame] | 257 | |
| 258 | // we have to set dummy vertex attribs |
| 259 | const GrEffect::VertexAttribArray& v = effect->getVertexAttribs(); |
| 260 | int numVertexAttribs = v.count(); |
| 261 | |
| 262 | SkASSERT(GrEffect::kMaxVertexAttribs == 2 && |
| 263 | GrEffect::kMaxVertexAttribs >= numVertexAttribs); |
| 264 | size_t runningStride = GrVertexAttribTypeSize(genericVertexAttribs[0].fType); |
| 265 | for (int i = 0; i < numVertexAttribs; i++) { |
| 266 | genericVertexAttribs[i + 1].fOffset = runningStride; |
| 267 | genericVertexAttribs[i + 1].fType = |
| 268 | convert_sltype_to_attribtype(v[i].getType()); |
| 269 | runningStride += GrVertexAttribTypeSize(genericVertexAttribs[i + 1].fType); |
| 270 | } |
| 271 | |
| 272 | // update the vertex attributes with the ds |
| 273 | GrDrawState* ds = this->drawState(); |
| 274 | ds->setVertexAttribs<genericVertexAttribs>(numVertexAttribs + 1, runningStride); |
| 275 | currAttribIndex = numVertexAttribs + 1; |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 276 | break; |
| 277 | } |
| 278 | } |
commit-bot@chromium.org | 8e919ad | 2013-10-21 14:48:23 +0000 | [diff] [blame] | 279 | for (int s = 0; s < numStages;) { |
bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 280 | SkAutoTUnref<const GrEffect> effect(GrEffectTestFactory::CreateStage( |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 281 | &random, |
| 282 | this->getContext(), |
| 283 | *this->caps(), |
| 284 | dummyTextures)); |
commit-bot@chromium.org | 65ee5f4 | 2014-02-04 17:49:48 +0000 | [diff] [blame] | 285 | SkASSERT(effect); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 286 | |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 287 | // Only geometryProcessor can use vertex shader |
| 288 | if (effect->requiresVertexShader()) { |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 289 | continue; |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 290 | } |
commit-bot@chromium.org | 8e919ad | 2013-10-21 14:48:23 +0000 | [diff] [blame] | 291 | |
commit-bot@chromium.org | 8e919ad | 2013-10-21 14:48:23 +0000 | [diff] [blame] | 292 | // If adding this effect would exceed the max texture coord set count then generate a |
| 293 | // new random effect. |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 294 | if (useFixedFunctionPathRendering) { |
bsalomon | 97b9ab7 | 2014-07-08 06:52:35 -0700 | [diff] [blame] | 295 | int numTransforms = effect->numTransforms(); |
commit-bot@chromium.org | 8e919ad | 2013-10-21 14:48:23 +0000 | [diff] [blame] | 296 | if (currTextureCoordSet + numTransforms > this->glCaps().maxFixedFunctionTextureCoords()) { |
| 297 | continue; |
| 298 | } |
| 299 | currTextureCoordSet += numTransforms; |
| 300 | } |
joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame] | 301 | GrEffectStage* stage = SkNEW_ARGS(GrEffectStage, (effect.get())); |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 302 | |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 303 | stages[s] = stage; |
commit-bot@chromium.org | 8e919ad | 2013-10-21 14:48:23 +0000 | [diff] [blame] | 304 | ++s; |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 305 | } |
bsalomon@google.com | b79d865 | 2013-03-29 20:30:50 +0000 | [diff] [blame] | 306 | const GrTexture* dstTexture = random.nextBool() ? dummyTextures[0] : dummyTextures[1]; |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 307 | if (!pdesc.setRandom(&random, |
| 308 | this, |
| 309 | dummyTextures[0]->asRenderTarget(), |
| 310 | dstTexture, |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 311 | geometryProcessor.get(), |
bsalomon | 848faf0 | 2014-07-11 10:01:02 -0700 | [diff] [blame] | 312 | stages.get(), |
| 313 | numColorStages, |
| 314 | numCoverageStages, |
| 315 | currAttribIndex)) { |
| 316 | return false; |
| 317 | } |
skia.committer@gmail.com | 05a2ee0 | 2013-04-02 07:01:34 +0000 | [diff] [blame] | 318 | |
commit-bot@chromium.org | 9188a15 | 2013-09-05 18:28:24 +0000 | [diff] [blame] | 319 | SkAutoTUnref<GrGLProgram> program(GrGLProgram::Create(this, |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 320 | pdesc, |
joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 321 | geometryProcessor.get(), |
bsalomon@google.com | 2c84aa3 | 2013-06-06 20:28:57 +0000 | [diff] [blame] | 322 | stages, |
| 323 | stages + numColorStages)); |
bsalomon@google.com | 2db3ded | 2013-05-22 14:34:04 +0000 | [diff] [blame] | 324 | for (int s = 0; s < numStages; ++s) { |
bsalomon@google.com | 504976e | 2013-05-09 13:45:02 +0000 | [diff] [blame] | 325 | SkDELETE(stages[s]); |
| 326 | } |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 327 | if (NULL == program.get()) { |
| 328 | return false; |
| 329 | } |
joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame] | 330 | |
| 331 | // We have to reset the drawstate because we might have added a gp |
| 332 | this->drawState()->reset(); |
bsalomon@google.com | c3841b9 | 2012-08-02 18:11:43 +0000 | [diff] [blame] | 333 | } |
| 334 | return true; |
| 335 | } |
bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 336 | |
tfarina@chromium.org | 4ee16bf | 2014-01-10 22:08:27 +0000 | [diff] [blame] | 337 | DEF_GPUTEST(GLPrograms, reporter, factory) { |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 338 | for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) { |
| 339 | GrContext* context = factory->get(static_cast<GrContextFactory::GLContextType>(type)); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 340 | if (context) { |
bsalomon@google.com | 042a286 | 2013-02-04 18:39:24 +0000 | [diff] [blame] | 341 | GrGpuGL* gpu = static_cast<GrGpuGL*>(context->getGpu()); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 342 | int maxStages = 6; |
bsalomon@google.com | 042a286 | 2013-02-04 18:39:24 +0000 | [diff] [blame] | 343 | #if SK_ANGLE |
| 344 | // Some long shaders run out of temporary registers in the D3D compiler on ANGLE. |
| 345 | if (type == GrContextFactory::kANGLE_GLContextType) { |
| 346 | maxStages = 3; |
| 347 | } |
| 348 | #endif |
| 349 | REPORTER_ASSERT(reporter, gpu->programUnitTest(maxStages)); |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 350 | } |
| 351 | } |
bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 352 | } |
| 353 | |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 354 | // This is evil evil evil. The linker may throw away whole translation units as dead code if it |
bsalomon@google.com | 67e78c9 | 2012-10-17 13:36:14 +0000 | [diff] [blame] | 355 | // thinks none of the functions are called. It will do this even if there are static initializers |
bsalomon@google.com | a1bf0ff | 2012-08-07 17:36:29 +0000 | [diff] [blame] | 356 | // in the unit that could pass pointers to functions from the unit out to other translation units! |
| 357 | // We force some of the effects that would otherwise be discarded to link here. |
| 358 | |
commit-bot@chromium.org | 40eb3c1 | 2014-01-06 23:41:14 +0000 | [diff] [blame] | 359 | #include "SkAlphaThresholdFilter.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 360 | #include "SkColorMatrixFilter.h" |
bsalomon@google.com | a1bf0ff | 2012-08-07 17:36:29 +0000 | [diff] [blame] | 361 | #include "SkLightingImageFilter.h" |
bsalomon@google.com | 82aa748 | 2012-08-13 14:22:17 +0000 | [diff] [blame] | 362 | #include "SkMagnifierImageFilter.h" |
bsalomon@google.com | a1bf0ff | 2012-08-07 17:36:29 +0000 | [diff] [blame] | 363 | |
| 364 | void forceLinking(); |
| 365 | |
| 366 | void forceLinking() { |
| 367 | SkLightingImageFilter::CreateDistantLitDiffuse(SkPoint3(0,0,0), 0, 0, 0); |
commit-bot@chromium.org | 9109e18 | 2014-01-07 16:04:01 +0000 | [diff] [blame] | 368 | SkAlphaThresholdFilter::Create(SkRegion(), .5f, .5f); |
reed | 9fa60da | 2014-08-21 07:59:51 -0700 | [diff] [blame] | 369 | SkAutoTUnref<SkImageFilter> mag(SkMagnifierImageFilter::Create( |
commit-bot@chromium.org | cac5fd5 | 2014-03-10 10:51:58 +0000 | [diff] [blame] | 370 | SkRect::MakeWH(SK_Scalar1, SK_Scalar1), SK_Scalar1)); |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 371 | GrConfigConversionEffect::Create(NULL, |
| 372 | false, |
| 373 | GrConfigConversionEffect::kNone_PMConversion, |
| 374 | SkMatrix::I()); |
bsalomon@google.com | 67e78c9 | 2012-10-17 13:36:14 +0000 | [diff] [blame] | 375 | SkScalar matrix[20]; |
commit-bot@chromium.org | 727a352 | 2014-02-21 18:46:30 +0000 | [diff] [blame] | 376 | SkAutoTUnref<SkColorMatrixFilter> cmf(SkColorMatrixFilter::Create(matrix)); |
bsalomon@google.com | a1bf0ff | 2012-08-07 17:36:29 +0000 | [diff] [blame] | 377 | } |
| 378 | |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 379 | #endif |