/* * Copyright 2021 Google LLC. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/sksl/ir/SkSLModifierFlags.h" #include "include/core/SkTypes.h" #include "src/sksl/SkSLContext.h" #include "src/sksl/SkSLErrorReporter.h" #include "src/sksl/SkSLPosition.h" namespace SkSL { std::string ModifierFlags::paddedDescription() const { … } std::string ModifierFlags::description() const { … } bool ModifierFlags::checkPermittedFlags(const Context& context, Position pos, ModifierFlags permittedModifierFlags) const { … } } // namespace SkSL