joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "src/gpu/gl/builders/GrGLProgramBuilder.h" |
joshualitt | 8072caa | 2015-02-12 14:20:52 -0800 | [diff] [blame] | 9 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 10 | #include "include/gpu/GrContext.h" |
| 11 | #include "src/core/SkATrace.h" |
| 12 | #include "src/core/SkAutoMalloc.h" |
| 13 | #include "src/core/SkReader32.h" |
| 14 | #include "src/core/SkTraceEvent.h" |
| 15 | #include "src/core/SkWriter32.h" |
| 16 | #include "src/gpu/GrAutoLocaleSetter.h" |
| 17 | #include "src/gpu/GrContextPriv.h" |
| 18 | #include "src/gpu/GrCoordTransform.h" |
| 19 | #include "src/gpu/GrPersistentCacheUtils.h" |
| 20 | #include "src/gpu/GrProgramDesc.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 21 | #include "src/gpu/GrShaderCaps.h" |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 22 | #include "src/gpu/GrShaderUtils.h" |
Brian Salomon | 3ec1f54 | 2019-06-17 17:54:57 +0000 | [diff] [blame] | 23 | #include "src/gpu/GrSwizzle.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 24 | #include "src/gpu/gl/GrGLGpu.h" |
| 25 | #include "src/gpu/gl/GrGLProgram.h" |
| 26 | #include "src/gpu/gl/builders/GrGLProgramBuilder.h" |
| 27 | #include "src/gpu/gl/builders/GrGLShaderStringBuilder.h" |
| 28 | #include "src/gpu/glsl/GrGLSLFragmentProcessor.h" |
| 29 | #include "src/gpu/glsl/GrGLSLGeometryProcessor.h" |
| 30 | #include "src/gpu/glsl/GrGLSLProgramDataManager.h" |
| 31 | #include "src/gpu/glsl/GrGLSLXferProcessor.h" |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 32 | |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 33 | #define GL_CALL(X) GR_GL_CALL(this->gpu()->glInterface(), X) |
| 34 | #define GL_CALL_RET(R, X) GR_GL_CALL_RET(this->gpu()->glInterface(), R, X) |
| 35 | |
Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 36 | GrGLProgram* GrGLProgramBuilder::CreateProgram(GrRenderTarget* renderTarget, GrSurfaceOrigin origin, |
| 37 | const GrPrimitiveProcessor& primProc, |
Greg Daniel | 9a51a86 | 2018-11-30 10:18:14 -0500 | [diff] [blame] | 38 | const GrTextureProxy* const primProcProxies[], |
Brian Salomon | ff168d9 | 2018-06-23 15:17:27 -0400 | [diff] [blame] | 39 | const GrPipeline& pipeline, |
Ethan Nicholas | 3865711 | 2017-02-09 17:01:22 -0500 | [diff] [blame] | 40 | GrProgramDesc* desc, |
egdaniel | 0e1853c | 2016-03-17 11:35:45 -0700 | [diff] [blame] | 41 | GrGLGpu* gpu) { |
Brian Salomon | 7eae3e0 | 2018-08-07 14:02:38 +0000 | [diff] [blame] | 42 | SkASSERT(!pipeline.isBad()); |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 43 | |
Derek Sollenberger | 488f0d6 | 2017-03-03 15:48:33 -0500 | [diff] [blame] | 44 | ATRACE_ANDROID_FRAMEWORK("Shader Compile"); |
bsalomon | 3318ee7 | 2015-03-16 11:56:29 -0700 | [diff] [blame] | 45 | GrAutoLocaleSetter als("C"); |
| 46 | |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 47 | // create a builder. This will be handed off to effects so they can use it to add |
| 48 | // uniforms, varyings, textures, etc |
Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 49 | GrGLProgramBuilder builder(gpu, renderTarget, origin, |
| 50 | pipeline, primProc, primProcProxies, desc); |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 51 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 52 | auto persistentCache = gpu->getContext()->priv().getPersistentCache(); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 53 | if (persistentCache) { |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 54 | sk_sp<SkData> key = SkData::MakeWithoutCopy(desc->asKey(), desc->keyLength()); |
Robert Phillips | 0c4b7b1 | 2018-03-06 08:20:37 -0500 | [diff] [blame] | 55 | builder.fCached = persistentCache->load(*key); |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 56 | // the eventual end goal is to completely skip emitAndInstallProcs on a cache hit, but it's |
| 57 | // doing necessary setup in addition to generating the SkSL code. Currently we are only able |
| 58 | // to skip the SkSL->GLSL step on a cache hit. |
| 59 | } |
Ethan Nicholas | 2983f40 | 2017-05-08 09:36:08 -0400 | [diff] [blame] | 60 | if (!builder.emitAndInstallProcs()) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 61 | return nullptr; |
joshualitt | 6c89110 | 2015-05-13 08:51:49 -0700 | [diff] [blame] | 62 | } |
egdaniel | c1e7101 | 2016-01-20 07:53:51 -0800 | [diff] [blame] | 63 | return builder.finalize(); |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 64 | } |
| 65 | |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 66 | ///////////////////////////////////////////////////////////////////////////// |
| 67 | |
egdaniel | 0e1853c | 2016-03-17 11:35:45 -0700 | [diff] [blame] | 68 | GrGLProgramBuilder::GrGLProgramBuilder(GrGLGpu* gpu, |
Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 69 | GrRenderTarget* renderTarget, |
| 70 | GrSurfaceOrigin origin, |
egdaniel | 0e1853c | 2016-03-17 11:35:45 -0700 | [diff] [blame] | 71 | const GrPipeline& pipeline, |
| 72 | const GrPrimitiveProcessor& primProc, |
Greg Daniel | 9a51a86 | 2018-11-30 10:18:14 -0500 | [diff] [blame] | 73 | const GrTextureProxy* const primProcProxies[], |
Ethan Nicholas | 3865711 | 2017-02-09 17:01:22 -0500 | [diff] [blame] | 74 | GrProgramDesc* desc) |
Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 75 | : INHERITED(renderTarget, origin, primProc, primProcProxies, pipeline, desc) |
Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 76 | , fGpu(gpu) |
| 77 | , fVaryingHandler(this) |
| 78 | , fUniformHandler(this) |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 79 | , fVertexAttributeCnt(0) |
| 80 | , fInstanceAttributeCnt(0) |
Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 81 | , fVertexStride(0) |
| 82 | , fInstanceStride(0) {} |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 83 | |
egdaniel | fa89632 | 2016-01-13 12:19:30 -0800 | [diff] [blame] | 84 | const GrCaps* GrGLProgramBuilder::caps() const { |
| 85 | return fGpu->caps(); |
| 86 | } |
| 87 | |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 88 | bool GrGLProgramBuilder::compileAndAttachShaders(const SkSL::String& glsl, |
egdaniel | 574a4c1 | 2015-11-02 06:22:44 -0800 | [diff] [blame] | 89 | GrGLuint programId, |
| 90 | GrGLenum type, |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 91 | SkTDArray<GrGLuint>* shaderIds, |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 92 | const SkSL::Program::Inputs& inputs, |
| 93 | GrContextOptions::ShaderErrorHandler* errHandler) { |
egdaniel | 574a4c1 | 2015-11-02 06:22:44 -0800 | [diff] [blame] | 94 | GrGLGpu* gpu = this->gpu(); |
| 95 | GrGLuint shaderId = GrGLCompileAndAttachShader(gpu->glContext(), |
| 96 | programId, |
| 97 | type, |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 98 | glsl, |
Brian Osman | 8518f2e | 2019-05-01 14:13:41 -0400 | [diff] [blame] | 99 | gpu->stats(), |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 100 | errHandler); |
egdaniel | 574a4c1 | 2015-11-02 06:22:44 -0800 | [diff] [blame] | 101 | if (!shaderId) { |
| 102 | return false; |
| 103 | } |
| 104 | |
| 105 | *shaderIds->append() = shaderId; |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 106 | if (inputs.fFlipY) { |
Ethan Nicholas | 3865711 | 2017-02-09 17:01:22 -0500 | [diff] [blame] | 107 | GrProgramDesc* d = this->desc(); |
Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 108 | d->setSurfaceOriginKey(GrGLSLFragmentShaderBuilder::KeyForSurfaceOrigin(this->origin())); |
Ethan Nicholas | 3865711 | 2017-02-09 17:01:22 -0500 | [diff] [blame] | 109 | } |
egdaniel | 574a4c1 | 2015-11-02 06:22:44 -0800 | [diff] [blame] | 110 | |
| 111 | return true; |
| 112 | } |
| 113 | |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 114 | void GrGLProgramBuilder::computeCountsAndStrides(GrGLuint programID, |
| 115 | const GrPrimitiveProcessor& primProc, |
| 116 | bool bindAttribLocations) { |
| 117 | fVertexAttributeCnt = primProc.numVertexAttributes(); |
| 118 | fInstanceAttributeCnt = primProc.numInstanceAttributes(); |
| 119 | fAttributes.reset( |
| 120 | new GrGLProgram::Attribute[fVertexAttributeCnt + fInstanceAttributeCnt]); |
| 121 | auto addAttr = [&](int i, const auto& a, size_t* stride) { |
Brian Osman | 4a3f5c8 | 2018-09-18 16:16:38 -0400 | [diff] [blame] | 122 | fAttributes[i].fCPUType = a.cpuType(); |
| 123 | fAttributes[i].fGPUType = a.gpuType(); |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 124 | fAttributes[i].fOffset = *stride; |
| 125 | *stride += a.sizeAlign4(); |
| 126 | fAttributes[i].fLocation = i; |
| 127 | if (bindAttribLocations) { |
| 128 | GL_CALL(BindAttribLocation(programID, i, a.name())); |
| 129 | } |
| 130 | }; |
| 131 | fVertexStride = 0; |
| 132 | int i = 0; |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 133 | for (const auto& attr : primProc.vertexAttributes()) { |
| 134 | addAttr(i++, attr, &fVertexStride); |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 135 | } |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 136 | SkASSERT(fVertexStride == primProc.vertexStride()); |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 137 | fInstanceStride = 0; |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 138 | for (const auto& attr : primProc.instanceAttributes()) { |
| 139 | addAttr(i++, attr, &fInstanceStride); |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 140 | } |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 141 | SkASSERT(fInstanceStride == primProc.instanceStride()); |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 142 | } |
| 143 | |
Ethan Nicholas | cd700e9 | 2018-08-24 16:43:57 -0400 | [diff] [blame] | 144 | void GrGLProgramBuilder::addInputVars(const SkSL::Program::Inputs& inputs) { |
| 145 | if (inputs.fRTWidth) { |
| 146 | this->addRTWidthUniform(SKSL_RTWIDTH_NAME); |
| 147 | } |
| 148 | if (inputs.fRTHeight) { |
| 149 | this->addRTHeightUniform(SKSL_RTHEIGHT_NAME); |
| 150 | } |
| 151 | } |
| 152 | |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 153 | static constexpr SkFourByteTag kSKSL_Tag = SkSetFourByteTag('S', 'K', 'S', 'L'); |
| 154 | static constexpr SkFourByteTag kGLSL_Tag = SkSetFourByteTag('G', 'L', 'S', 'L'); |
| 155 | |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 156 | void GrGLProgramBuilder::storeShaderInCache(const SkSL::Program::Inputs& inputs, GrGLuint programID, |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 157 | const SkSL::String shaders[], bool isSkSL) { |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 158 | if (!this->gpu()->getContext()->priv().getPersistentCache()) { |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 159 | return; |
| 160 | } |
| 161 | sk_sp<SkData> key = SkData::MakeWithoutCopy(desc()->asKey(), desc()->keyLength()); |
| 162 | if (fGpu->glCaps().programBinarySupport()) { |
| 163 | // binary cache |
| 164 | GrGLsizei length = 0; |
| 165 | GL_CALL(GetProgramiv(programID, GL_PROGRAM_BINARY_LENGTH, &length)); |
| 166 | if (length > 0) { |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 167 | SkWriter32 writer; |
| 168 | writer.writePad(&inputs, sizeof(inputs)); |
| 169 | writer.write32(length); |
| 170 | |
| 171 | void* binary = writer.reservePad(length); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 172 | GrGLenum binaryFormat; |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 173 | GL_CALL(GetProgramBinary(programID, length, &length, &binaryFormat, binary)); |
| 174 | writer.write32(binaryFormat); |
| 175 | |
| 176 | auto data = writer.snapshotAsData(); |
| 177 | this->gpu()->getContext()->priv().getPersistentCache()->store(*key, *data); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 178 | } |
| 179 | } else { |
| 180 | // source cache |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 181 | auto data = GrPersistentCacheUtils::PackCachedShaders(isSkSL ? kSKSL_Tag : kGLSL_Tag, |
| 182 | shaders, &inputs, 1); |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 183 | this->gpu()->getContext()->priv().getPersistentCache()->store(*key, *data); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 184 | } |
| 185 | } |
| 186 | |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 187 | GrGLProgram* GrGLProgramBuilder::finalize() { |
Brian Osman | 39c08ac | 2017-07-26 09:36:09 -0400 | [diff] [blame] | 188 | TRACE_EVENT0("skia", TRACE_FUNC); |
Ryan Macnak | 38a10ad | 2017-07-10 10:36:34 -0700 | [diff] [blame] | 189 | |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 190 | // verify we can get a program id |
| 191 | GrGLuint programID; |
| 192 | GL_CALL_RET(programID, CreateProgram()); |
| 193 | if (0 == programID) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 194 | return nullptr; |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Ethan Nicholas | 06d55fb | 2017-11-08 09:48:50 -0500 | [diff] [blame] | 197 | if (this->gpu()->glCaps().programBinarySupport() && |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 198 | this->gpu()->getContext()->priv().getPersistentCache()) { |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 199 | GL_CALL(ProgramParameteri(programID, GR_GL_PROGRAM_BINARY_RETRIEVABLE_HINT, GR_GL_TRUE)); |
| 200 | } |
| 201 | |
egdaniel | 9f1d415 | 2016-02-10 09:50:38 -0800 | [diff] [blame] | 202 | this->finalizeShaders(); |
| 203 | |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 204 | // compile shaders and bind attributes / uniforms |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 205 | auto errorHandler = this->gpu()->getContext()->priv().getShaderErrorHandler(); |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 206 | const GrPrimitiveProcessor& primProc = this->primitiveProcessor(); |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 207 | SkSL::Program::Settings settings; |
| 208 | settings.fCaps = this->gpu()->glCaps().shaderCaps(); |
Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 209 | settings.fFlipY = this->origin() != kTopLeft_GrSurfaceOrigin; |
Robert Phillips | c1541ae | 2019-02-04 12:05:37 -0500 | [diff] [blame] | 210 | settings.fSharpenTextures = |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 211 | this->gpu()->getContext()->priv().options().fSharpenMipmappedTextures; |
Brian Salomon | dc09213 | 2018-04-04 10:14:16 -0400 | [diff] [blame] | 212 | settings.fFragColorIsInOut = this->fragColorIsInOut(); |
| 213 | |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 214 | SkSL::Program::Inputs inputs; |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 215 | SkTDArray<GrGLuint> shadersToDelete; |
Ethan Nicholas | 5a0338c | 2019-01-02 11:48:56 -0500 | [diff] [blame] | 216 | // Calling GetProgramiv is expensive in Chromium. Assume success in release builds. |
| 217 | bool checkLinked = kChromium_GrGLDriver != fGpu->ctxInfo().driver(); |
| 218 | #ifdef SK_DEBUG |
| 219 | checkLinked = true; |
| 220 | #endif |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 221 | bool cached = fCached.get() != nullptr; |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 222 | SkSL::String glsl[kGrShaderTypeCount]; |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 223 | SkSL::String* sksl[kGrShaderTypeCount] = { |
| 224 | &fVS.fCompilerString, |
| 225 | &fGS.fCompilerString, |
| 226 | &fFS.fCompilerString, |
| 227 | }; |
| 228 | #if GR_TEST_UTILS |
| 229 | SkSL::String cached_sksl[kGrShaderTypeCount]; |
| 230 | #endif |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 231 | if (cached) { |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 232 | if (fGpu->glCaps().programBinarySupport()) { |
| 233 | // binary cache hit, just hand the binary to GL |
Brian Osman | e6ef03d | 2019-04-11 14:38:27 -0400 | [diff] [blame] | 234 | SkReader32 reader(fCached->data(), fCached->size()); |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 235 | reader.read(&inputs, sizeof(inputs)); |
| 236 | GrGLsizei length = reader.readInt(); |
| 237 | const void* binary = reader.skip(length); |
| 238 | GrGLenum binaryFormat = reader.readU32(); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 239 | GrGLClearErr(this->gpu()->glInterface()); |
| 240 | GR_GL_CALL_NOERRCHECK(this->gpu()->glInterface(), |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 241 | ProgramBinary(programID, binaryFormat, const_cast<void*>(binary), |
| 242 | length)); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 243 | if (GR_GL_GET_ERROR(this->gpu()->glInterface()) == GR_GL_NO_ERROR) { |
| 244 | if (checkLinked) { |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 245 | cached = this->checkLinkStatus(programID, errorHandler, nullptr, nullptr); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 246 | } |
| 247 | if (cached) { |
| 248 | this->addInputVars(inputs); |
| 249 | this->computeCountsAndStrides(programID, primProc, false); |
| 250 | } |
| 251 | } else { |
| 252 | cached = false; |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 253 | } |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 254 | #if GR_TEST_UTILS |
| 255 | } else if (fGpu->getContext()->priv().options().fCacheSKSL) { |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 256 | // Only switch to the stored SkSL if it unpacks correctly |
| 257 | if (kSKSL_Tag == GrPersistentCacheUtils::UnpackCachedShaders(fCached.get(), |
| 258 | cached_sksl, |
| 259 | &inputs, 1)) { |
| 260 | for (int i = 0; i < kGrShaderTypeCount; ++i) { |
| 261 | sksl[i] = &cached_sksl[i]; |
| 262 | } |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 263 | } |
| 264 | #endif |
Ethan Nicholas | 98ad5b7 | 2018-03-13 09:53:02 -0400 | [diff] [blame] | 265 | } else { |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 266 | // source cache hit, we don't need to compile the SkSL->GLSL |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 267 | // It's unlikely, but if we get the wrong kind of shader back, don't use the strings |
| 268 | if (kGLSL_Tag != GrPersistentCacheUtils::UnpackCachedShaders(fCached.get(), |
| 269 | glsl, |
| 270 | &inputs, 1)) { |
| 271 | for (int i = 0; i < kGrShaderTypeCount; ++i) { |
| 272 | glsl[i].clear(); |
| 273 | } |
| 274 | } |
Ethan Nicholas | 98ad5b7 | 2018-03-13 09:53:02 -0400 | [diff] [blame] | 275 | } |
| 276 | } |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 277 | if (!cached || !fGpu->glCaps().programBinarySupport()) { |
| 278 | // either a cache miss, or we can't store binaries in the cache |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 279 | if (glsl[kFragment_GrShaderType].empty()) { |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 280 | // Don't have cached GLSL, need to compile SkSL->GLSL |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 281 | if (fFS.fForceHighPrecision) { |
| 282 | settings.fForceHighPrecision = true; |
| 283 | } |
| 284 | std::unique_ptr<SkSL::Program> fs = GrSkSLtoGLSL(gpu()->glContext(), |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 285 | SkSL::Program::kFragment_Kind, |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 286 | *sksl[kFragment_GrShaderType], |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 287 | settings, |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 288 | &glsl[kFragment_GrShaderType], |
| 289 | errorHandler); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 290 | if (!fs) { |
| 291 | this->cleanupProgram(programID, shadersToDelete); |
| 292 | return nullptr; |
| 293 | } |
| 294 | inputs = fs->fInputs; |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 295 | this->addInputVars(inputs); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 296 | } else { |
| 297 | // we've pulled GLSL and inputs from the cache, but still need to do some setup |
| 298 | this->addInputVars(inputs); |
| 299 | this->computeCountsAndStrides(programID, primProc, false); |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 300 | } |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 301 | if (!this->compileAndAttachShaders(glsl[kFragment_GrShaderType], programID, |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 302 | GR_GL_FRAGMENT_SHADER, &shadersToDelete, inputs, |
| 303 | errorHandler)) { |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 304 | this->cleanupProgram(programID, shadersToDelete); |
| 305 | return nullptr; |
| 306 | } |
| 307 | |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 308 | if (glsl[kVertex_GrShaderType].empty()) { |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 309 | // Don't have cached GLSL, need to compile SkSL->GLSL |
| 310 | std::unique_ptr<SkSL::Program> vs = GrSkSLtoGLSL(gpu()->glContext(), |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 311 | SkSL::Program::kVertex_Kind, |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 312 | *sksl[kVertex_GrShaderType], |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 313 | settings, |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 314 | &glsl[kVertex_GrShaderType], |
| 315 | errorHandler); |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 316 | if (!vs) { |
| 317 | this->cleanupProgram(programID, shadersToDelete); |
| 318 | return nullptr; |
| 319 | } |
| 320 | } |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 321 | if (!this->compileAndAttachShaders(glsl[kVertex_GrShaderType], programID, |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 322 | GR_GL_VERTEX_SHADER, &shadersToDelete, inputs, |
| 323 | errorHandler)) { |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 324 | this->cleanupProgram(programID, shadersToDelete); |
| 325 | return nullptr; |
| 326 | } |
| 327 | |
| 328 | // NVPR actually requires a vertex shader to compile |
| 329 | bool useNvpr = primProc.isPathRendering(); |
| 330 | if (!useNvpr) { |
Ethan Nicholas | ad77dce | 2018-07-11 13:59:03 -0400 | [diff] [blame] | 331 | this->computeCountsAndStrides(programID, primProc, true); |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | if (primProc.willUseGeoShader()) { |
Brian Osman | 6b797fe | 2019-04-08 13:56:36 -0400 | [diff] [blame] | 335 | if (glsl[kGeometry_GrShaderType].empty()) { |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 336 | // Don't have cached GLSL, need to compile SkSL->GLSL |
| 337 | std::unique_ptr<SkSL::Program> gs; |
| 338 | gs = GrSkSLtoGLSL(gpu()->glContext(), |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 339 | SkSL::Program::kGeometry_Kind, |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 340 | *sksl[kGeometry_GrShaderType], |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 341 | settings, |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 342 | &glsl[kGeometry_GrShaderType], |
| 343 | errorHandler); |
Brian Osman | f71b070 | 2019-04-03 13:04:16 -0400 | [diff] [blame] | 344 | if (!gs) { |
| 345 | this->cleanupProgram(programID, shadersToDelete); |
| 346 | return nullptr; |
| 347 | } |
| 348 | } |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 349 | if (!this->compileAndAttachShaders(glsl[kGeometry_GrShaderType], programID, |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 350 | GR_GL_GEOMETRY_SHADER, &shadersToDelete, inputs, |
| 351 | errorHandler)) { |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 352 | this->cleanupProgram(programID, shadersToDelete); |
| 353 | return nullptr; |
| 354 | } |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 355 | } |
| 356 | this->bindProgramResourceLocations(programID); |
| 357 | |
| 358 | GL_CALL(LinkProgram(programID)); |
Ethan Nicholas | 5a0338c | 2019-01-02 11:48:56 -0500 | [diff] [blame] | 359 | if (checkLinked) { |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 360 | if (!this->checkLinkStatus(programID, errorHandler, sksl, glsl)) { |
Ethan Nicholas | 5a0338c | 2019-01-02 11:48:56 -0500 | [diff] [blame] | 361 | GL_CALL(DeleteProgram(programID)); |
Ethan Nicholas | 5a0338c | 2019-01-02 11:48:56 -0500 | [diff] [blame] | 362 | return nullptr; |
Brian Salomon | e334c59 | 2017-05-15 11:00:58 -0400 | [diff] [blame] | 363 | } |
Brian Salomon | e334c59 | 2017-05-15 11:00:58 -0400 | [diff] [blame] | 364 | } |
joshualitt | fe1233c | 2014-10-07 12:16:35 -0700 | [diff] [blame] | 365 | } |
kkinnunen | 7aedda5 | 2015-06-29 23:01:28 -0700 | [diff] [blame] | 366 | this->resolveProgramResourceLocations(programID); |
joshualitt | db0d3ca | 2014-10-07 12:42:26 -0700 | [diff] [blame] | 367 | |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 368 | this->cleanupShaders(shadersToDelete); |
Ethan Nicholas | 8d05883 | 2019-01-07 10:49:58 -0500 | [diff] [blame] | 369 | if (!cached) { |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 370 | bool isSkSL = false; |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 371 | #if GR_TEST_UTILS |
| 372 | if (fGpu->getContext()->priv().options().fCacheSKSL) { |
| 373 | for (int i = 0; i < kGrShaderTypeCount; ++i) { |
Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 374 | glsl[i] = GrShaderUtils::PrettyPrint(*sksl[i]); |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 375 | } |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 376 | isSkSL = true; |
Brian Osman | cbc33b8 | 2019-04-19 14:16:19 -0400 | [diff] [blame] | 377 | } |
| 378 | #endif |
Brian Osman | a085a41 | 2019-04-25 09:44:43 -0400 | [diff] [blame] | 379 | this->storeShaderInCache(inputs, programID, glsl, isSkSL); |
Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 380 | } |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 381 | return this->createProgram(programID); |
| 382 | } |
| 383 | |
kkinnunen | 7aedda5 | 2015-06-29 23:01:28 -0700 | [diff] [blame] | 384 | void GrGLProgramBuilder::bindProgramResourceLocations(GrGLuint programID) { |
egdaniel | 7ea439b | 2015-12-03 09:20:44 -0800 | [diff] [blame] | 385 | fUniformHandler.bindUniformLocations(programID, fGpu->glCaps()); |
kkinnunen | 7aedda5 | 2015-06-29 23:01:28 -0700 | [diff] [blame] | 386 | |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 387 | const GrGLCaps& caps = this->gpu()->glCaps(); |
| 388 | if (fFS.hasCustomColorOutput() && caps.bindFragDataLocationSupport()) { |
| 389 | GL_CALL(BindFragDataLocation(programID, 0, |
egdaniel | 2d721d3 | 2015-11-11 13:06:05 -0800 | [diff] [blame] | 390 | GrGLSLFragmentShaderBuilder::DeclaredColorOutputName())); |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 391 | } |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 392 | if (fFS.hasSecondaryOutput() && caps.shaderCaps()->mustDeclareFragmentShaderOutput()) { |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 393 | GL_CALL(BindFragDataLocationIndexed(programID, 0, 1, |
egdaniel | 2d721d3 | 2015-11-11 13:06:05 -0800 | [diff] [blame] | 394 | GrGLSLFragmentShaderBuilder::DeclaredSecondaryColorOutputName())); |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 395 | } |
joshualitt | d8dd47b | 2015-09-11 11:45:01 -0700 | [diff] [blame] | 396 | |
| 397 | // handle NVPR separable varyings |
| 398 | if (!fGpu->glCaps().shaderCaps()->pathRenderingSupport() || |
| 399 | !fGpu->glPathRendering()->shouldBindFragmentInputs()) { |
| 400 | return; |
| 401 | } |
egdaniel | 0eafe79 | 2015-11-20 14:01:22 -0800 | [diff] [blame] | 402 | int count = fVaryingHandler.fPathProcVaryingInfos.count(); |
joshualitt | d8dd47b | 2015-09-11 11:45:01 -0700 | [diff] [blame] | 403 | for (int i = 0; i < count; ++i) { |
egdaniel | 0eafe79 | 2015-11-20 14:01:22 -0800 | [diff] [blame] | 404 | GL_CALL(BindFragmentInputLocation(programID, i, |
| 405 | fVaryingHandler.fPathProcVaryingInfos[i].fVariable.c_str())); |
| 406 | fVaryingHandler.fPathProcVaryingInfos[i].fLocation = i; |
joshualitt | d8dd47b | 2015-09-11 11:45:01 -0700 | [diff] [blame] | 407 | } |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 408 | } |
| 409 | |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 410 | bool GrGLProgramBuilder::checkLinkStatus(GrGLuint programID, |
| 411 | GrContextOptions::ShaderErrorHandler* errorHandler, |
| 412 | SkSL::String* sksl[], const SkSL::String glsl[]) { |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 413 | GrGLint linked = GR_GL_INIT_ZERO; |
| 414 | GL_CALL(GetProgramiv(programID, GR_GL_LINK_STATUS, &linked)); |
| 415 | if (!linked) { |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 416 | SkSL::String allShaders; |
| 417 | if (sksl) { |
| 418 | allShaders.appendf("// Vertex SKSL\n%s\n", sksl[kVertex_GrShaderType]->c_str()); |
| 419 | if (!sksl[kGeometry_GrShaderType]->empty()) { |
| 420 | allShaders.appendf("// Geometry SKSL\n%s\n", sksl[kGeometry_GrShaderType]->c_str()); |
| 421 | } |
| 422 | allShaders.appendf("// Fragment SKSL\n%s\n", sksl[kFragment_GrShaderType]->c_str()); |
| 423 | } |
| 424 | if (glsl) { |
| 425 | allShaders.appendf("// Vertex GLSL\n%s\n", glsl[kVertex_GrShaderType].c_str()); |
| 426 | if (!glsl[kGeometry_GrShaderType].empty()) { |
| 427 | allShaders.appendf("// Geometry GLSL\n%s\n", glsl[kGeometry_GrShaderType].c_str()); |
| 428 | } |
| 429 | allShaders.appendf("// Fragment GLSL\n%s\n", glsl[kFragment_GrShaderType].c_str()); |
| 430 | } |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 431 | GrGLint infoLen = GR_GL_INIT_ZERO; |
| 432 | GL_CALL(GetProgramiv(programID, GR_GL_INFO_LOG_LENGTH, &infoLen)); |
| 433 | SkAutoMalloc log(sizeof(char)*(infoLen+1)); // outside if for debugger |
| 434 | if (infoLen > 0) { |
| 435 | // retrieve length even though we don't need it to workaround |
| 436 | // bug in chrome cmd buffer param validation. |
| 437 | GrGLsizei length = GR_GL_INIT_ZERO; |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 438 | GL_CALL(GetProgramInfoLog(programID, infoLen+1, &length, (char*)log.get())); |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 439 | } |
Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 440 | errorHandler->compileError(allShaders.c_str(), infoLen > 0 ? (const char*)log.get() : ""); |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 441 | } |
| 442 | return SkToBool(linked); |
| 443 | } |
| 444 | |
kkinnunen | 7aedda5 | 2015-06-29 23:01:28 -0700 | [diff] [blame] | 445 | void GrGLProgramBuilder::resolveProgramResourceLocations(GrGLuint programID) { |
egdaniel | 7ea439b | 2015-12-03 09:20:44 -0800 | [diff] [blame] | 446 | fUniformHandler.getUniformLocations(programID, fGpu->glCaps()); |
joshualitt | d8dd47b | 2015-09-11 11:45:01 -0700 | [diff] [blame] | 447 | |
| 448 | // handle NVPR separable varyings |
| 449 | if (!fGpu->glCaps().shaderCaps()->pathRenderingSupport() || |
kkinnunen | 7bdb05d | 2016-01-25 00:47:23 -0800 | [diff] [blame] | 450 | fGpu->glPathRendering()->shouldBindFragmentInputs()) { |
joshualitt | d8dd47b | 2015-09-11 11:45:01 -0700 | [diff] [blame] | 451 | return; |
| 452 | } |
egdaniel | 0eafe79 | 2015-11-20 14:01:22 -0800 | [diff] [blame] | 453 | int count = fVaryingHandler.fPathProcVaryingInfos.count(); |
joshualitt | d8dd47b | 2015-09-11 11:45:01 -0700 | [diff] [blame] | 454 | for (int i = 0; i < count; ++i) { |
| 455 | GrGLint location; |
egdaniel | 0eafe79 | 2015-11-20 14:01:22 -0800 | [diff] [blame] | 456 | GL_CALL_RET(location, GetProgramResourceLocation( |
| 457 | programID, |
| 458 | GR_GL_FRAGMENT_INPUT, |
| 459 | fVaryingHandler.fPathProcVaryingInfos[i].fVariable.c_str())); |
| 460 | fVaryingHandler.fPathProcVaryingInfos[i].fLocation = location; |
joshualitt | d8dd47b | 2015-09-11 11:45:01 -0700 | [diff] [blame] | 461 | } |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 462 | } |
| 463 | |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 464 | void GrGLProgramBuilder::cleanupProgram(GrGLuint programID, const SkTDArray<GrGLuint>& shaderIDs) { |
| 465 | GL_CALL(DeleteProgram(programID)); |
egdaniel | fa89632 | 2016-01-13 12:19:30 -0800 | [diff] [blame] | 466 | this->cleanupShaders(shaderIDs); |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 467 | } |
| 468 | void GrGLProgramBuilder::cleanupShaders(const SkTDArray<GrGLuint>& shaderIDs) { |
| 469 | for (int i = 0; i < shaderIDs.count(); ++i) { |
Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 470 | GL_CALL(DeleteShader(shaderIDs[i])); |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 471 | } |
| 472 | } |
| 473 | |
| 474 | GrGLProgram* GrGLProgramBuilder::createProgram(GrGLuint programID) { |
egdaniel | 7ea439b | 2015-12-03 09:20:44 -0800 | [diff] [blame] | 475 | return new GrGLProgram(fGpu, |
egdaniel | 7ea439b | 2015-12-03 09:20:44 -0800 | [diff] [blame] | 476 | fUniformHandles, |
| 477 | programID, |
| 478 | fUniformHandler.fUniforms, |
egdaniel | 09aa1fc | 2016-04-20 07:09:46 -0700 | [diff] [blame] | 479 | fUniformHandler.fSamplers, |
egdaniel | 0eafe79 | 2015-11-20 14:01:22 -0800 | [diff] [blame] | 480 | fVaryingHandler.fPathProcVaryingInfos, |
Robert Phillips | 369e8b7 | 2017-08-01 16:13:04 -0400 | [diff] [blame] | 481 | std::move(fGeometryProcessor), |
| 482 | std::move(fXferProcessor), |
Brian Salomon | 4d3f517 | 2018-06-07 14:42:52 -0400 | [diff] [blame] | 483 | std::move(fFragmentProcessors), |
Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 484 | fFragmentProcessorCnt, |
| 485 | std::move(fAttributes), |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 486 | fVertexAttributeCnt, |
| 487 | fInstanceAttributeCnt, |
Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 488 | fVertexStride, |
| 489 | fInstanceStride); |
joshualitt | 47bb382 | 2014-10-07 16:43:25 -0700 | [diff] [blame] | 490 | } |