/* * 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_EXTENSION #define SKSL_EXTENSION #include "src/sksl/SkSLPosition.h" #include "src/sksl/ir/SkSLIRNode.h" #include "src/sksl/ir/SkSLProgramElement.h" #include <memory> #include <string> #include <string_view> namespace SkSL { class Context; /** * #extension <name> : enable */ class Extension final : public ProgramElement { … }; } // namespace SkSL #endif