/* * 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_CONTEXT #define SKSL_CONTEXT #include "include/private/base/SkAssert.h" namespace SkSL { class BuiltinTypes; class ErrorReporter; struct Module; struct ProgramConfig; class SymbolTable; /** * Contains compiler-wide objects and state. */ class Context { … }; } // namespace SkSL #endif