/* * 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_MODIFIERDECLARATION #define SKSL_MODIFIERDECLARATION #include "src/sksl/SkSLPosition.h" #include "src/sksl/ir/SkSLIRNode.h" #include "src/sksl/ir/SkSLLayout.h" #include "src/sksl/ir/SkSLModifierFlags.h" #include "src/sksl/ir/SkSLProgramElement.h" #include <memory> #include <string> namespace SkSL { class Context; struct Modifiers; /** * A declaration that consists only of modifiers, e.g.: * * layout(blend_support_all_equations) out; */ class ModifiersDeclaration final : public ProgramElement { … }; } // namespace SkSL #endif