diff options
Diffstat (limited to 'src/sksl/ir/SkSLSetting.h')
-rw-r--r-- | src/sksl/ir/SkSLSetting.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/sksl/ir/SkSLSetting.h b/src/sksl/ir/SkSLSetting.h deleted file mode 100644 index 995fcf55bf..0000000000 --- a/src/sksl/ir/SkSLSetting.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright 2016 Google Inc. - * - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#ifndef SKSL_SETTING -#define SKSL_SETTING - -#include "SkSLContext.h" -#include "SkSLExpression.h" - -namespace SkSL { - -/** - * Represents a compile-time constant setting, such as sk_Caps.fbFetchSupport. These are generally - * collapsed down to their constant representations during the compilation process. - */ -struct Setting : public Expression { - Setting(Position position, String name, std::unique_ptr<Expression> value) - : INHERITED(position, kSetting_Kind, value->fType) - , fName(std::move(name)) - , fValue(std::move(value)) { - ASSERT(fValue->isConstant()); - } - - std::unique_ptr<Expression> constantPropagate(const IRGenerator& irGenerator, - const DefinitionMap& definitions) override; - - String description() const override { - return fName; - } - - bool hasSideEffects() const override { - return false; - } - - bool isConstant() const override { - return true; - } - - const String fName; - std::unique_ptr<Expression> fValue; - - typedef Expression INHERITED; -}; - -} // namespace - -#endif |