• 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/DSLBlock.h"
12 #include "include/sksl/DSLCore.h"
13 #include "include/sksl/DSLExpression.h"
14 #include "include/sksl/DSLFunction.h"
15 #include "include/sksl/DSLType.h"
16 
17 namespace SkSL {
18 
19 namespace dsl {
20 
21 using Block = DSLBlock;
22 using Case = DSLCase;
23 using Expression = DSLExpression;
24 using Field = DSLField;
25 using Function = DSLFunction;
26 using GlobalVar = DSLGlobalVar;
27 using Layout = DSLLayout;
28 using Modifiers = DSLModifiers;
29 using Parameter = DSLParameter;
30 using Statement = DSLStatement;
31 using Var = DSLVar;
32 
33 } // namespace dsl
34 
35 } // namespace SkSL
36 
37 #endif
38