/* * Copyright 2019 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkRuntimeEffect_DEFINED #define SkRuntimeEffect_DEFINED #include "include/core/SkData.h" #include "include/core/SkImageInfo.h" #include "include/core/SkMatrix.h" #include "include/core/SkShader.h" #include "include/core/SkString.h" #include "include/private/SkOnce.h" #include "include/private/SkSLSampleUsage.h" #include class GrFragmentProcessor; class GrRecordingContext; class SkColorFilter; class SkImage; class SkShader; namespace SkSL { class FunctionDefinition; struct Program; enum class ProgramKind : int8_t; } // namespace SkSL namespace skvm { class Program; } // namespace skvm /* * SkRuntimeEffect supports creating custom SkShader and SkColorFilter objects using Skia's SkSL * shading language. * * NOTE: This API is experimental and subject to change. */ class SK_API SkRuntimeEffect : public SkRefCnt { public: struct Uniform { enum class Type { kFloat, kFloat2, kFloat3, kFloat4, kFloat2x2, kFloat3x3, kFloat4x4, kInt, kInt2, kInt3, kInt4, }; enum Flags { kArray_Flag = 0x1, kSRGBUnpremul_Flag = 0x2, }; SkString name; size_t offset; Type type; int count; uint32_t flags; bool isArray() const { return SkToBool(this->flags & kArray_Flag); } size_t sizeInBytes() const; }; struct Child { enum class Type { kShader, kColorFilter, }; SkString name; Type type; int index; }; struct Options { // For testing purposes, completely disable the inliner. (Normally, Runtime Effects don't // run the inliner directly, but they still get an inlining pass once they are painted.) bool forceNoInline = false; // For testing purposes only; only honored when GR_TEST_UTILS is enabled. This flag lifts // the ES2 restrictions on Runtime Effects that are gated by the `strictES2Mode` check. // Be aware that the software renderer and pipeline-stage effect are still largely // ES3-unaware and can still fail or crash if post-ES2 features are used. bool enforceES2Restrictions = true; }; // If the effect is compiled successfully, `effect` will be non-null. // Otherwise, `errorText` will contain the reason for failure. struct Result { sk_sp effect; SkString errorText; }; // MakeForColorFilter and MakeForShader verify that the SkSL code is valid for those stages of // the Skia pipeline. In all of the signatures described below, color parameters and return // values are flexible. They are listed as being 'vec4', but they can also be 'half4' or // 'float4'. ('vec4' is an alias for 'float4'). // Color filter SkSL requires an entry point that looks like: // vec4 main(vec4 inColor) { ... } static Result MakeForColorFilter(SkString sksl, const Options&); // Shader SkSL requires an entry point that looks like: // vec4 main(vec2 inCoords) { ... } // -or- // vec4 main(vec2 inCoords, vec4 inColor) { ... } // // Most shaders don't use the input color, so that parameter is optional. static Result MakeForShader(SkString sksl, const Options&); // We can't use a default argument for `options` due to a bug in Clang. // https://bugs.llvm.org/show_bug.cgi?id=36684 static Result MakeForColorFilter(SkString sksl) { return MakeForColorFilter(std::move(sksl), Options{}); } static Result MakeForShader(SkString sksl) { return MakeForShader(std::move(sksl), Options{}); } static Result MakeForColorFilter(std::unique_ptr program); static Result MakeForShader(std::unique_ptr program); sk_sp makeShader(sk_sp uniforms, sk_sp children[], size_t childCount, const SkMatrix* localMatrix, bool isOpaque) const; sk_sp makeImage(GrRecordingContext*, sk_sp uniforms, sk_sp children[], size_t childCount, const SkMatrix* localMatrix, SkImageInfo resultInfo, bool mipmapped) const; sk_sp makeColorFilter(sk_sp uniforms) const; sk_sp makeColorFilter(sk_sp uniforms, sk_sp children[], size_t childCount) const; const SkString& source() const { return fSkSL; } template class ConstIterable { public: ConstIterable(const std::vector& vec) : fVec(vec) {} using const_iterator = typename std::vector::const_iterator; const_iterator begin() const { return fVec.begin(); } const_iterator end() const { return fVec.end(); } size_t count() const { return fVec.size(); } private: const std::vector& fVec; }; // Combined size of all 'uniform' variables. When calling makeColorFilter or makeShader, // provide an SkData of this size, containing values for all of those variables. size_t uniformSize() const; ConstIterable uniforms() const { return ConstIterable(fUniforms); } ConstIterable children() const { return ConstIterable(fChildren); } // Returns pointer to the named uniform variable's description, or nullptr if not found const Uniform* findUniform(const char* name) const; // Returns pointer to the named child's description, or nullptr if not found const Child* findChild(const char* name) const; static void RegisterFlattenables(); ~SkRuntimeEffect() override; #if SK_SUPPORT_GPU // For internal use. std::unique_ptr makeFP(sk_sp uniforms, std::unique_ptr children[], size_t childCount) const; #endif private: enum Flags { kUsesSampleCoords_Flag = 0x1, kAllowColorFilter_Flag = 0x2, kAllowShader_Flag = 0x4, }; SkRuntimeEffect(SkString sksl, std::unique_ptr baseProgram, const Options& options, const SkSL::FunctionDefinition& main, std::vector&& uniforms, std::vector&& children, std::vector&& sampleUsages, uint32_t flags); static Result Make(std::unique_ptr program, SkSL::ProgramKind kind); static Result Make(SkString sksl, const Options& options, SkSL::ProgramKind kind); static Result Make(SkString sksl, std::unique_ptr program, const Options& options, SkSL::ProgramKind kind); uint32_t hash() const { return fHash; } bool usesSampleCoords() const { return (fFlags & kUsesSampleCoords_Flag); } bool allowShader() const { return (fFlags & kAllowShader_Flag); } bool allowColorFilter() const { return (fFlags & kAllowColorFilter_Flag); } struct FilterColorInfo { const skvm::Program* program; // May be nullptr if it's not possible to compute bool alphaUnchanged; }; void initFilterColorInfo(); FilterColorInfo getFilterColorInfo(); #if SK_SUPPORT_GPU friend class GrSkSLFP; // fBaseProgram, fSampleUsages friend class GrGLSLSkSLFP; // #endif friend class SkRTShader; // fBaseProgram, fMain friend class SkRuntimeColorFilter; // uint32_t fHash; SkString fSkSL; std::unique_ptr fBaseProgram; const SkSL::FunctionDefinition& fMain; std::vector fUniforms; std::vector fChildren; std::vector fSampleUsages; std::unique_ptr fColorFilterProgram; bool fColorFilterProgramLeavesAlphaUnchanged = false; uint32_t fFlags; // Flags }; /** Base class for SkRuntimeShaderBuilder, defined below. */ template class SkRuntimeEffectBuilder { public: struct BuilderUniform { // Copy 'val' to this variable. No type conversion is performed - 'val' must be same // size as expected by the effect. Information about the variable can be queried by // looking at fVar. If the size is incorrect, no copy will be performed, and debug // builds will abort. If this is the result of querying a missing variable, fVar will // be nullptr, and assigning will also do nothing (and abort in debug builds). template std::enable_if_t::value, BuilderUniform&> operator=( const T& val) { if (!fVar) { SkDEBUGFAIL("Assigning to missing variable"); } else if (sizeof(val) != fVar->sizeInBytes()) { SkDEBUGFAIL("Incorrect value size"); } else { memcpy(SkTAddOffset(fOwner->writableUniformData(), fVar->offset), &val, sizeof(val)); } return *this; } BuilderUniform& operator=(const SkMatrix& val) { if (!fVar) { SkDEBUGFAIL("Assigning to missing variable"); } else if (fVar->sizeInBytes() != 9 * sizeof(float)) { SkDEBUGFAIL("Incorrect value size"); } else { float* data = SkTAddOffset(fOwner->writableUniformData(), fVar->offset); data[0] = val.get(0); data[1] = val.get(3); data[2] = val.get(6); data[3] = val.get(1); data[4] = val.get(4); data[5] = val.get(7); data[6] = val.get(2); data[7] = val.get(5); data[8] = val.get(8); } return *this; } template bool set(const T val[], const int count) { static_assert(std::is_trivially_copyable::value, "Value must be trivial copyable"); if (!fVar) { SkDEBUGFAIL("Assigning to missing variable"); return false; } else if (sizeof(T) * count != fVar->sizeInBytes()) { SkDEBUGFAIL("Incorrect value size"); return false; } else { memcpy(SkTAddOffset(fOwner->writableUniformData(), fVar->offset), val, sizeof(T) * count); } return true; } SkRuntimeEffectBuilder* fOwner; const SkRuntimeEffect::Uniform* fVar; // nullptr if the variable was not found }; struct BuilderChild { template BuilderChild& operator=(C&& val) { // TODO(skbug:11813): Validate that the type of val lines up with the type of the child // (SkShader vs. SkColorFilter). if (!fChild) { SkDEBUGFAIL("Assigning to missing child"); } else { fOwner->fChildren[fChild->index] = std::forward(val); } return *this; } SkRuntimeEffectBuilder* fOwner; const SkRuntimeEffect::Child* fChild; // nullptr if the child was not found // DEPRECATED - Left temporarily for Android int fIndex; // -1 if the child was not found }; const SkRuntimeEffect* effect() const { return fEffect.get(); } BuilderUniform uniform(const char* name) { return { this, fEffect->findUniform(name) }; } BuilderChild child(const char* name) { const SkRuntimeEffect::Child* child = fEffect->findChild(name); return { this, child, child ? child->index : -1 }; } protected: SkRuntimeEffectBuilder() = delete; explicit SkRuntimeEffectBuilder(sk_sp effect) : fEffect(std::move(effect)) , fUniforms(SkData::MakeUninitialized(fEffect->uniformSize())) , fChildren(fEffect->children().count()) {} SkRuntimeEffectBuilder(SkRuntimeEffectBuilder&&) = default; SkRuntimeEffectBuilder(const SkRuntimeEffectBuilder&) = default; SkRuntimeEffectBuilder& operator=(SkRuntimeEffectBuilder&&) = delete; SkRuntimeEffectBuilder& operator=(const SkRuntimeEffectBuilder&) = delete; sk_sp uniforms() { return fUniforms; } Child* children() { return fChildren.data(); } size_t numChildren() { return fChildren.size(); } private: void* writableUniformData() { if (!fUniforms->unique()) { fUniforms = SkData::MakeWithCopy(fUniforms->data(), fUniforms->size()); } return fUniforms->writable_data(); } sk_sp fEffect; sk_sp fUniforms; std::vector fChildren; }; /** * SkRuntimeShaderBuilder is a utility to simplify creating SkShader objects from SkRuntimeEffects. * * NOTE: Like SkRuntimeEffect, this API is experimental and subject to change! * * Given an SkRuntimeEffect, the SkRuntimeShaderBuilder manages creating an input data block and * provides named access to the 'uniform' variables in that block, as well as named access * to a list of child shader slots. Usage: * * sk_sp effect = ...; * SkRuntimeShaderBuilder builder(effect); * builder.uniform("some_uniform_float") = 3.14f; * builder.uniform("some_uniform_matrix") = SkM44::Rotate(...); * builder.child("some_child_effect") = mySkImage->makeShader(...); * ... * sk_sp shader = builder.makeShader(nullptr, false); * * Note that SkRuntimeShaderBuilder is built entirely on the public API of SkRuntimeEffect, * so can be used as-is or serve as inspiration for other interfaces or binding techniques. */ class SK_API SkRuntimeShaderBuilder : public SkRuntimeEffectBuilder> { public: explicit SkRuntimeShaderBuilder(sk_sp); // This is currently required by Android Framework but may go away if that dependency // can be removed. SkRuntimeShaderBuilder(const SkRuntimeShaderBuilder&) = default; ~SkRuntimeShaderBuilder(); sk_sp makeShader(const SkMatrix* localMatrix, bool isOpaque); sk_sp makeImage(GrRecordingContext*, const SkMatrix* localMatrix, SkImageInfo resultInfo, bool mipmapped); private: using INHERITED = SkRuntimeEffectBuilder>; }; #endif