• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 GlobalVar = DSLGlobalVar;
23 using Layout = DSLLayout;
24 using Modifiers = DSLModifiers;
25 using Parameter = DSLParameter;
26 using Statement = DSLStatement;
27 using Var = DSLVar;
28 template<typename T> using Wrapper = DSLWrapper<T>;
29 
30 } // namespace dsl
31 
32 } // namespace SkSL
33 
34 #endif
35