blob: 98cd3918a16bb678846dee71ac187e90b915a592 [file] [log] [blame]
/*
* 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 "src/sksl/dsl/DSL_core.h"
namespace SkSL {
namespace dsl {
using Block = DSLBlock;
using Expression = DSLExpression;
using Statement = DSLStatement;
using Type = DSLType;
using Var = DSLVar;
} // namespace dsl
} // namespace SkSL
#endif