1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #ifndef SKSL_DSL 9 #define SKSL_DSL 10 11 #include "include/sksl/DSLCore.h" 12 13 namespace SkSL { 14 15 namespace dsl { 16 17 using Block = DSLBlock; 18 using Case = DSLCase; 19 using Expression = DSLExpression; 20 using Field = DSLField; 21 using Function = DSLFunction; 22 using Layout = DSLLayout; 23 using Modifiers = DSLModifiers; 24 using Statement = DSLStatement; 25 using Var = DSLVar; 26 template<typename T> using Wrapper = DSLWrapper<T>; 27 28 } // namespace dsl 29 30 } // namespace SkSL 31 32 #endif 33