1 /* 2 * Copyright 2021 Google LLC 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #ifndef SKSL_CONSTRUCTOR_MATRIX_RESIZE 9 #define SKSL_CONSTRUCTOR_MATRIX_RESIZE 10 11 #include "src/sksl/SkSLContext.h" 12 #include "src/sksl/ir/SkSLConstructor.h" 13 #include "src/sksl/ir/SkSLExpression.h" 14 #include "src/sksl/ir/SkSLLiteral.h" 15 16 #include <memory> 17 18 namespace SkSL { 19 20 /** 21 * Represents the construction of a matrix resize operation, such as `mat4x4(myMat2x2)`. 22 * 23 * These always contain exactly 1 matrix of non-matching size. Cells that aren't present in the 24 * input matrix are populated with the identity matrix. 25 */ 26 class ConstructorMatrixResize final : public SingleArgumentConstructor { 27 public: 28 inline static constexpr Kind kExpressionKind = Kind::kConstructorMatrixResize; 29 ConstructorMatrixResize(int line,const Type & type,std::unique_ptr<Expression> arg)30 ConstructorMatrixResize(int line, const Type& type, std::unique_ptr<Expression> arg) 31 : INHERITED(line, kExpressionKind, &type, std::move(arg)) {} 32 33 static std::unique_ptr<Expression> Make(const Context& context, 34 int line, 35 const Type& type, 36 std::unique_ptr<Expression> arg); 37 clone()38 std::unique_ptr<Expression> clone() const override { 39 return std::make_unique<ConstructorMatrixResize>(fLine, this->type(), 40 argument()->clone()); 41 } 42 supportsConstantValues()43 bool supportsConstantValues() const override { return true; } 44 skstd::optional<double> getConstantValue(int n) const override; 45 46 private: 47 using INHERITED = SingleArgumentConstructor; 48 }; 49 50 } // namespace SkSL 51 52 #endif 53