You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
594 B
33 lines
594 B
/*
|
|
* 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
|
|
|
|
#include "include/sksl/DSLCore.h"
|
|
|
|
namespace SkSL {
|
|
|
|
namespace dsl {
|
|
|
|
using Block = DSLBlock;
|
|
using Case = DSLCase;
|
|
using Expression = DSLExpression;
|
|
using Field = DSLField;
|
|
using Function = DSLFunction;
|
|
using Layout = DSLLayout;
|
|
using Modifiers = DSLModifiers;
|
|
using Statement = DSLStatement;
|
|
using Var = DSLVar;
|
|
template<typename T> using Wrapper = DSLWrapper<T>;
|
|
|
|
} // namespace dsl
|
|
|
|
} // namespace SkSL
|
|
|
|
#endif
|