2021-01-07 15:57:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 Google LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SKSL_DSL
|
|
|
|
#define SKSL_DSL
|
|
|
|
|
2021-03-04 19:30:25 +00:00
|
|
|
#include "include/sksl/DSLCore.h"
|
2021-01-07 15:57:27 +00:00
|
|
|
|
|
|
|
namespace SkSL {
|
|
|
|
|
|
|
|
namespace dsl {
|
|
|
|
|
2021-01-22 20:18:25 +00:00
|
|
|
using Block = DSLBlock;
|
2021-02-09 20:22:57 +00:00
|
|
|
using Case = DSLCase;
|
2021-01-07 15:57:27 +00:00
|
|
|
using Expression = DSLExpression;
|
2021-02-11 20:18:31 +00:00
|
|
|
using Field = DSLField;
|
2021-01-28 15:02:43 +00:00
|
|
|
using Function = DSLFunction;
|
2021-05-10 20:17:22 +00:00
|
|
|
using Layout = DSLLayout;
|
2021-01-27 12:53:46 +00:00
|
|
|
using Modifiers = DSLModifiers;
|
2021-01-22 20:18:25 +00:00
|
|
|
using Statement = DSLStatement;
|
2021-01-11 20:42:44 +00:00
|
|
|
using Var = DSLVar;
|
2021-05-04 16:22:02 +00:00
|
|
|
template<typename T> using Wrapper = DSLWrapper<T>;
|
2021-01-07 15:57:27 +00:00
|
|
|
|
|
|
|
} // namespace dsl
|
|
|
|
|
|
|
|
} // namespace SkSL
|
|
|
|
|
|
|
|
#endif
|