blob: b03dc095336778adbb41bc90caa355d60a154ebf [file] [log] [blame]
/*
* Copyright 2021 Google LLC.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_DSL_STATEMENT
#define SKSL_DSL_STATEMENT
#include "include/core/SkString.h"
#include "include/core/SkTypes.h"
#include <memory>
class GrGLSLShaderBuilder;
namespace SkSL {
class Expression;
class Statement;
namespace dsl {
class DSLBlock;
class DSLExpression;
class DSLVar;
class DSLStatement {
public:
DSLStatement() {}
DSLStatement(DSLExpression expr);
DSLStatement(DSLBlock block);
DSLStatement(DSLStatement&&) = default;
~DSLStatement();
std::unique_ptr<SkSL::Statement> release() {
return std::move(fStatement);
}
private:
DSLStatement(std::unique_ptr<SkSL::Statement> stmt);
DSLStatement(std::unique_ptr<SkSL::Expression> expr);
std::unique_ptr<SkSL::Statement> fStatement;
friend class DSLBlock;
friend class DSLCore;
friend class DSLExpression;
friend class DSLWriter;
};
} // namespace dsl
} // namespace SkSL
#endif