| /* |
| * Copyright 2015 Google Inc. |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #include "glsl/GrGLSLProgramBuilder.h" |
| |
| #include "GrCaps.h" |
| #include "GrPipeline.h" |
| #include "GrShaderCaps.h" |
| #include "GrTexturePriv.h" |
| #include "glsl/GrGLSLFragmentProcessor.h" |
| #include "glsl/GrGLSLGeometryProcessor.h" |
| #include "glsl/GrGLSLVarying.h" |
| #include "glsl/GrGLSLXferProcessor.h" |
| |
| const int GrGLSLProgramBuilder::kVarsPerBlock = 8; |
| |
| GrGLSLProgramBuilder::GrGLSLProgramBuilder(const GrPipeline& pipeline, |
| const GrPrimitiveProcessor& primProc, |
| GrProgramDesc* desc) |
| : fVS(this) |
| , fGS(this) |
| , fFS(this) |
| , fStageIndex(-1) |
| , fPipeline(pipeline) |
| , fPrimProc(primProc) |
| , fDesc(desc) |
| , fGeometryProcessor(nullptr) |
| , fXferProcessor(nullptr) |
| , fNumVertexSamplers(0) |
| , fNumGeometrySamplers(0) |
| , fNumFragmentSamplers(0) |
| , fNumVertexImageStorages(0) |
| , fNumGeometryImageStorages(0) |
| , fNumFragmentImageStorages(0) { |
| } |
| |
| void GrGLSLProgramBuilder::addFeature(GrShaderFlags shaders, |
| uint32_t featureBit, |
| const char* extensionName) { |
| if (shaders & kVertex_GrShaderFlag) { |
| fVS.addFeature(featureBit, extensionName); |
| } |
| if (shaders & kGeometry_GrShaderFlag) { |
| SkASSERT(this->primitiveProcessor().willUseGeoShader()); |
| fGS.addFeature(featureBit, extensionName); |
| } |
| if (shaders & kFragment_GrShaderFlag) { |
| fFS.addFeature(featureBit, extensionName); |
| } |
| } |
| |
| bool GrGLSLProgramBuilder::emitAndInstallProcs() { |
| // First we loop over all of the installed processors and collect coord transforms. These will |
| // be sent to the GrGLSLPrimitiveProcessor in its emitCode function |
| const GrPrimitiveProcessor& primProc = this->primitiveProcessor(); |
| |
| SkString inputColor; |
| SkString inputCoverage; |
| this->emitAndInstallPrimProc(primProc, &inputColor, &inputCoverage); |
| this->emitAndInstallFragProcs(&inputColor, &inputCoverage); |
| this->emitAndInstallXferProc(inputColor, inputCoverage); |
| this->emitFSOutputSwizzle(this->pipeline().getXferProcessor().hasSecondaryOutput()); |
| |
| return this->checkSamplerCounts() && this->checkImageStorageCounts(); |
| } |
| |
| void GrGLSLProgramBuilder::emitAndInstallPrimProc(const GrPrimitiveProcessor& proc, |
| SkString* outputColor, |
| SkString* outputCoverage) { |
| // Program builders have a bit of state we need to clear with each effect |
| AutoStageAdvance adv(this); |
| this->nameExpression(outputColor, "outputColor"); |
| this->nameExpression(outputCoverage, "outputCoverage"); |
| |
| SkASSERT(!fUniformHandles.fRTAdjustmentUni.isValid()); |
| GrShaderFlags rtAdjustVisibility = kVertex_GrShaderFlag; |
| if (proc.willUseGeoShader()) { |
| rtAdjustVisibility |= kGeometry_GrShaderFlag; |
| } |
| fUniformHandles.fRTAdjustmentUni = this->uniformHandler()->addUniform(rtAdjustVisibility, |
| kVec4f_GrSLType, |
| kHigh_GrSLPrecision, |
| "rtAdjustment"); |
| const char* rtAdjustName = |
| this->uniformHandler()->getUniformCStr(fUniformHandles.fRTAdjustmentUni); |
| |
| // Enclose custom code in a block to avoid namespace conflicts |
| SkString openBrace; |
| openBrace.printf("{ // Stage %d, %s\n", fStageIndex, proc.name()); |
| fFS.codeAppend(openBrace.c_str()); |
| fVS.codeAppendf("// Primitive Processor %s\n", proc.name()); |
| |
| SkASSERT(!fGeometryProcessor); |
| fGeometryProcessor = proc.createGLSLInstance(*this->shaderCaps()); |
| |
| SkSTArray<4, SamplerHandle> texSamplers(proc.numTextureSamplers()); |
| SkSTArray<2, TexelBufferHandle> texelBuffers(proc.numBuffers()); |
| SkSTArray<2, ImageStorageHandle> imageStorages(proc.numImageStorages()); |
| this->emitSamplersAndImageStorages(proc, &texSamplers, &texelBuffers, &imageStorages); |
| |
| GrGLSLPrimitiveProcessor::FPCoordTransformHandler transformHandler(fPipeline, |
| &fTransformedCoordVars); |
| GrGLSLGeometryProcessor::EmitArgs args(&fVS, |
| proc.willUseGeoShader() ? &fGS : nullptr, |
| &fFS, |
| this->varyingHandler(), |
| this->uniformHandler(), |
| this->shaderCaps(), |
| proc, |
| outputColor->c_str(), |
| outputCoverage->c_str(), |
| rtAdjustName, |
| texSamplers.begin(), |
| texelBuffers.begin(), |
| imageStorages.begin(), |
| &transformHandler); |
| fGeometryProcessor->emitCode(args); |
| |
| // We have to check that effects and the code they emit are consistent, ie if an effect |
| // asks for dst color, then the emit code needs to follow suit |
| SkDEBUGCODE(verify(proc);) |
| |
| fFS.codeAppend("}"); |
| } |
| |
| void GrGLSLProgramBuilder::emitAndInstallFragProcs(SkString* color, SkString* coverage) { |
| int transformedCoordVarsIdx = 0; |
| SkString** inOut = &color; |
| for (int i = 0; i < this->pipeline().numFragmentProcessors(); ++i) { |
| if (i == this->pipeline().numColorFragmentProcessors()) { |
| inOut = &coverage; |
| } |
| SkString output; |
| const GrFragmentProcessor& fp = this->pipeline().getFragmentProcessor(i); |
| output = this->emitAndInstallFragProc(fp, i, transformedCoordVarsIdx, **inOut, output); |
| GrFragmentProcessor::Iter iter(&fp); |
| while (const GrFragmentProcessor* fp = iter.next()) { |
| transformedCoordVarsIdx += fp->numCoordTransforms(); |
| } |
| **inOut = output; |
| } |
| } |
| |
| // TODO Processors cannot output zeros because an empty string is all 1s |
| // the fix is to allow effects to take the SkString directly |
| SkString GrGLSLProgramBuilder::emitAndInstallFragProc(const GrFragmentProcessor& fp, |
| int index, |
| int transformedCoordVarsIdx, |
| const SkString& input, |
| SkString output) { |
| SkASSERT(input.size()); |
| // Program builders have a bit of state we need to clear with each effect |
| AutoStageAdvance adv(this); |
| this->nameExpression(&output, "output"); |
| |
| // Enclose custom code in a block to avoid namespace conflicts |
| SkString openBrace; |
| openBrace.printf("{ // Stage %d, %s\n", fStageIndex, fp.name()); |
| fFS.codeAppend(openBrace.c_str()); |
| |
| GrGLSLFragmentProcessor* fragProc = fp.createGLSLInstance(); |
| |
| SkSTArray<4, SamplerHandle> textureSamplerArray(fp.numTextureSamplers()); |
| SkSTArray<2, TexelBufferHandle> texelBufferArray(fp.numBuffers()); |
| SkSTArray<2, ImageStorageHandle> imageStorageArray(fp.numImageStorages()); |
| GrFragmentProcessor::Iter iter(&fp); |
| while (const GrFragmentProcessor* subFP = iter.next()) { |
| this->emitSamplersAndImageStorages(*subFP, &textureSamplerArray, &texelBufferArray, |
| &imageStorageArray); |
| } |
| |
| const GrShaderVar* coordVars = fTransformedCoordVars.begin() + transformedCoordVarsIdx; |
| GrGLSLFragmentProcessor::TransformedCoordVars coords(&fp, coordVars); |
| GrGLSLFragmentProcessor::TextureSamplers textureSamplers(&fp, textureSamplerArray.begin()); |
| GrGLSLFragmentProcessor::TexelBuffers texelBuffers(&fp, texelBufferArray.begin()); |
| GrGLSLFragmentProcessor::ImageStorages imageStorages(&fp, imageStorageArray.begin()); |
| GrGLSLFragmentProcessor::EmitArgs args(&fFS, |
| this->uniformHandler(), |
| this->shaderCaps(), |
| fp, |
| output.c_str(), |
| input.c_str(), |
| coords, |
| textureSamplers, |
| texelBuffers, |
| imageStorages); |
| |
| fragProc->emitCode(args); |
| |
| // We have to check that effects and the code they emit are consistent, ie if an effect |
| // asks for dst color, then the emit code needs to follow suit |
| SkDEBUGCODE(verify(fp);) |
| fFragmentProcessors.push_back(fragProc); |
| |
| fFS.codeAppend("}"); |
| return output; |
| } |
| |
| void GrGLSLProgramBuilder::emitAndInstallXferProc(const SkString& colorIn, |
| const SkString& coverageIn) { |
| // Program builders have a bit of state we need to clear with each effect |
| AutoStageAdvance adv(this); |
| |
| SkASSERT(!fXferProcessor); |
| const GrXferProcessor& xp = fPipeline.getXferProcessor(); |
| fXferProcessor = xp.createGLSLInstance(); |
| |
| // Enable dual source secondary output if we have one |
| if (xp.hasSecondaryOutput()) { |
| fFS.enableSecondaryOutput(); |
| } |
| |
| if (this->shaderCaps()->mustDeclareFragmentShaderOutput()) { |
| fFS.enableCustomOutput(); |
| } |
| |
| SkString openBrace; |
| openBrace.printf("{ // Xfer Processor: %s\n", xp.name()); |
| fFS.codeAppend(openBrace.c_str()); |
| |
| SamplerHandle dstTextureSamplerHandle; |
| GrSurfaceOrigin dstTextureOrigin = kTopLeft_GrSurfaceOrigin; |
| |
| if (GrTexture* dstTexture = fPipeline.peekDstTexture()) { |
| // GrProcessor::TextureSampler sampler(dstTexture); |
| SkString name("DstTextureSampler"); |
| dstTextureSamplerHandle = |
| this->emitSampler(dstTexture->texturePriv().samplerType(), dstTexture->config(), |
| "DstTextureSampler", kFragment_GrShaderFlag); |
| dstTextureOrigin = dstTexture->origin(); |
| SkASSERT(kTextureExternalSampler_GrSLType != dstTexture->texturePriv().samplerType()); |
| } |
| |
| GrGLSLXferProcessor::EmitArgs args(&fFS, |
| this->uniformHandler(), |
| this->shaderCaps(), |
| xp, |
| colorIn.size() ? colorIn.c_str() : "vec4(1)", |
| coverageIn.size() ? coverageIn.c_str() : "vec4(1)", |
| fFS.getPrimaryColorOutputName(), |
| fFS.getSecondaryColorOutputName(), |
| dstTextureSamplerHandle, |
| dstTextureOrigin); |
| fXferProcessor->emitCode(args); |
| |
| // We have to check that effects and the code they emit are consistent, ie if an effect |
| // asks for dst color, then the emit code needs to follow suit |
| SkDEBUGCODE(verify(xp);) |
| fFS.codeAppend("}"); |
| } |
| |
| void GrGLSLProgramBuilder::emitSamplersAndImageStorages( |
| const GrResourceIOProcessor& processor, |
| SkTArray<SamplerHandle>* outTexSamplerHandles, |
| SkTArray<TexelBufferHandle>* outTexelBufferHandles, |
| SkTArray<ImageStorageHandle>* outImageStorageHandles) { |
| SkString name; |
| int numTextureSamplers = processor.numTextureSamplers(); |
| for (int t = 0; t < numTextureSamplers; ++t) { |
| const GrResourceIOProcessor::TextureSampler& sampler = processor.textureSampler(t); |
| name.printf("TextureSampler_%d", outTexSamplerHandles->count()); |
| GrSLType samplerType = sampler.peekTexture()->texturePriv().samplerType(); |
| if (kTextureExternalSampler_GrSLType == samplerType) { |
| const char* externalFeatureString = |
| this->shaderCaps()->externalTextureExtensionString(); |
| // We shouldn't ever create a GrGLTexture that requires external sampler type |
| SkASSERT(externalFeatureString); |
| this->addFeature(sampler.visibility(), |
| 1 << GrGLSLShaderBuilder::kExternalTexture_GLSLPrivateFeature, |
| externalFeatureString); |
| } |
| outTexSamplerHandles->emplace_back(this->emitSampler( |
| samplerType, sampler.peekTexture()->config(), name.c_str(), sampler.visibility())); |
| } |
| if (int numBuffers = processor.numBuffers()) { |
| SkASSERT(this->shaderCaps()->texelBufferSupport()); |
| GrShaderFlags texelBufferVisibility = kNone_GrShaderFlags; |
| |
| for (int b = 0; b < numBuffers; ++b) { |
| const GrResourceIOProcessor::BufferAccess& access = processor.bufferAccess(b); |
| name.printf("TexelBuffer_%d", outTexelBufferHandles->count()); |
| outTexelBufferHandles->emplace_back( |
| this->emitTexelBuffer(access.texelConfig(), name.c_str(), access.visibility())); |
| texelBufferVisibility |= access.visibility(); |
| } |
| |
| if (const char* extension = this->shaderCaps()->texelBufferExtensionString()) { |
| this->addFeature(texelBufferVisibility, |
| 1 << GrGLSLShaderBuilder::kTexelBuffer_GLSLPrivateFeature, |
| extension); |
| } |
| } |
| int numImageStorages = processor.numImageStorages(); |
| for (int i = 0; i < numImageStorages; ++i) { |
| const GrResourceIOProcessor::ImageStorageAccess& imageStorageAccess = |
| processor.imageStorageAccess(i); |
| name.printf("Image_%d", outImageStorageHandles->count()); |
| outImageStorageHandles->emplace_back( |
| this->emitImageStorage(imageStorageAccess, name.c_str())); |
| } |
| } |
| |
| void GrGLSLProgramBuilder::updateSamplerCounts(GrShaderFlags visibility) { |
| if (visibility & kVertex_GrShaderFlag) { |
| ++fNumVertexSamplers; |
| } |
| if (visibility & kGeometry_GrShaderFlag) { |
| SkASSERT(this->primitiveProcessor().willUseGeoShader()); |
| ++fNumGeometrySamplers; |
| } |
| if (visibility & kFragment_GrShaderFlag) { |
| ++fNumFragmentSamplers; |
| } |
| } |
| |
| GrGLSLProgramBuilder::SamplerHandle GrGLSLProgramBuilder::emitSampler(GrSLType samplerType, |
| GrPixelConfig config, |
| const char* name, |
| GrShaderFlags visibility) { |
| this->updateSamplerCounts(visibility); |
| GrSLPrecision precision = this->shaderCaps()->samplerPrecision(config, visibility); |
| GrSwizzle swizzle = this->shaderCaps()->configTextureSwizzle(config); |
| return this->uniformHandler()->addSampler(visibility, swizzle, samplerType, precision, name); |
| } |
| |
| GrGLSLProgramBuilder::TexelBufferHandle GrGLSLProgramBuilder::emitTexelBuffer( |
| GrPixelConfig config, const char* name, GrShaderFlags visibility) { |
| this->updateSamplerCounts(visibility); |
| GrSLPrecision precision = this->shaderCaps()->samplerPrecision(config, visibility); |
| return this->uniformHandler()->addTexelBuffer(visibility, precision, name); |
| } |
| |
| GrGLSLProgramBuilder::ImageStorageHandle GrGLSLProgramBuilder::emitImageStorage( |
| const GrResourceIOProcessor::ImageStorageAccess& access, const char* name) { |
| if (access.visibility() & kVertex_GrShaderFlag) { |
| ++fNumVertexImageStorages; |
| } |
| if (access.visibility() & kGeometry_GrShaderFlag) { |
| SkASSERT(this->primitiveProcessor().willUseGeoShader()); |
| ++fNumGeometryImageStorages; |
| } |
| if (access.visibility() & kFragment_GrShaderFlag) { |
| ++fNumFragmentImageStorages; |
| } |
| GrSLType uniformType = access.proxy()->imageStorageType(); |
| return this->uniformHandler()->addImageStorage(access.visibility(), uniformType, |
| access.format(), access.memoryModel(), |
| access.restrict(), access.ioType(), name); |
| } |
| |
| void GrGLSLProgramBuilder::emitFSOutputSwizzle(bool hasSecondaryOutput) { |
| // Swizzle the fragment shader outputs if necessary. |
| GrSwizzle swizzle; |
| swizzle.setFromKey(this->desc()->header().fOutputSwizzle); |
| if (swizzle != GrSwizzle::RGBA()) { |
| fFS.codeAppendf("%s = %s.%s;", fFS.getPrimaryColorOutputName(), |
| fFS.getPrimaryColorOutputName(), |
| swizzle.c_str()); |
| if (hasSecondaryOutput) { |
| fFS.codeAppendf("%s = %s.%s;", fFS.getSecondaryColorOutputName(), |
| fFS.getSecondaryColorOutputName(), |
| swizzle.c_str()); |
| } |
| } |
| } |
| |
| bool GrGLSLProgramBuilder::checkSamplerCounts() { |
| const GrShaderCaps& shaderCaps = *this->shaderCaps(); |
| if (fNumVertexSamplers > shaderCaps.maxVertexSamplers()) { |
| GrCapsDebugf(this->caps(), "Program would use too many vertex samplers\n"); |
| return false; |
| } |
| if (fNumGeometrySamplers > shaderCaps.maxGeometrySamplers()) { |
| GrCapsDebugf(this->caps(), "Program would use too many geometry samplers\n"); |
| return false; |
| } |
| if (fNumFragmentSamplers > shaderCaps.maxFragmentSamplers()) { |
| GrCapsDebugf(this->caps(), "Program would use too many fragment samplers\n"); |
| return false; |
| } |
| // If the same sampler is used in two different shaders, it counts as two combined samplers. |
| int numCombinedSamplers = fNumVertexSamplers + fNumGeometrySamplers + fNumFragmentSamplers; |
| if (numCombinedSamplers > shaderCaps.maxCombinedSamplers()) { |
| GrCapsDebugf(this->caps(), "Program would use too many combined samplers\n"); |
| return false; |
| } |
| return true; |
| } |
| |
| bool GrGLSLProgramBuilder::checkImageStorageCounts() { |
| const GrShaderCaps& shaderCaps = *this->shaderCaps(); |
| if (fNumVertexImageStorages > shaderCaps.maxVertexImageStorages()) { |
| GrCapsDebugf(this->caps(), "Program would use too many vertex images\n"); |
| return false; |
| } |
| if (fNumGeometryImageStorages > shaderCaps.maxGeometryImageStorages()) { |
| GrCapsDebugf(this->caps(), "Program would use too many geometry images\n"); |
| return false; |
| } |
| if (fNumFragmentImageStorages > shaderCaps.maxFragmentImageStorages()) { |
| GrCapsDebugf(this->caps(), "Program would use too many fragment images\n"); |
| return false; |
| } |
| // If the same image is used in two different shaders, it counts as two combined images. |
| int numCombinedImages = fNumVertexImageStorages + fNumGeometryImageStorages + |
| fNumFragmentImageStorages; |
| if (numCombinedImages > shaderCaps.maxCombinedImageStorages()) { |
| GrCapsDebugf(this->caps(), "Program would use too many combined images\n"); |
| return false; |
| } |
| return true; |
| } |
| |
| #ifdef SK_DEBUG |
| void GrGLSLProgramBuilder::verify(const GrPrimitiveProcessor& gp) { |
| SkASSERT(fFS.usedProcessorFeatures() == gp.requiredFeatures()); |
| } |
| |
| void GrGLSLProgramBuilder::verify(const GrXferProcessor& xp) { |
| SkASSERT(fFS.usedProcessorFeatures() == xp.requiredFeatures()); |
| SkASSERT(fFS.hasReadDstColor() == xp.willReadDstColor()); |
| } |
| |
| void GrGLSLProgramBuilder::verify(const GrFragmentProcessor& fp) { |
| SkASSERT(fFS.usedProcessorFeatures() == fp.requiredFeatures()); |
| } |
| #endif |
| |
| void GrGLSLProgramBuilder::nameVariable(SkString* out, char prefix, const char* name, bool mangle) { |
| if ('\0' == prefix) { |
| *out = name; |
| } else { |
| out->printf("%c%s", prefix, name); |
| } |
| if (mangle) { |
| if (out->endsWith('_')) { |
| // Names containing "__" are reserved. |
| out->append("x"); |
| } |
| out->appendf("_Stage%d%s", fStageIndex, fFS.getMangleString().c_str()); |
| } |
| } |
| |
| void GrGLSLProgramBuilder::nameExpression(SkString* output, const char* baseName) { |
| // create var to hold stage result. If we already have a valid output name, just use that |
| // otherwise create a new mangled one. This name is only valid if we are reordering stages |
| // and have to tell stage exactly where to put its output. |
| SkString outName; |
| if (output->size()) { |
| outName = output->c_str(); |
| } else { |
| this->nameVariable(&outName, '\0', baseName); |
| } |
| fFS.codeAppendf("vec4 %s;", outName.c_str()); |
| *output = outName; |
| } |
| |
| void GrGLSLProgramBuilder::appendUniformDecls(GrShaderFlags visibility, SkString* out) const { |
| this->uniformHandler()->appendUniformDecls(visibility, out); |
| } |
| |
| void GrGLSLProgramBuilder::addRTHeightUniform(const char* name) { |
| SkASSERT(!fUniformHandles.fRTHeightUni.isValid()); |
| GrGLSLUniformHandler* uniformHandler = this->uniformHandler(); |
| fUniformHandles.fRTHeightUni = |
| uniformHandler->internalAddUniformArray(kFragment_GrShaderFlag, |
| kFloat_GrSLType, kDefault_GrSLPrecision, |
| name, false, 0, nullptr); |
| } |
| |
| void GrGLSLProgramBuilder::cleanupFragmentProcessors() { |
| for (int i = 0; i < fFragmentProcessors.count(); ++i) { |
| delete fFragmentProcessors[i]; |
| } |
| } |
| |
| void GrGLSLProgramBuilder::finalizeShaders() { |
| this->varyingHandler()->finalize(); |
| fVS.finalize(kVertex_GrShaderFlag); |
| if (this->primitiveProcessor().willUseGeoShader()) { |
| SkASSERT(this->shaderCaps()->geometryShaderSupport()); |
| fGS.finalize(kGeometry_GrShaderFlag); |
| } |
| fFS.finalize(kFragment_GrShaderFlag); |
| } |