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 SkVM_fwd_DEFINED
9#define SkVM_fwd_DEFINED
10
11namespace skvm {
12 class Assembler;
13 class Builder;
14 class Program;
15 struct Arg;
16 struct I32;
17 struct F32;
18 struct Color;
19 struct Uniforms;
20}
21
22#endif//SkVM_fwd_DEFINED
23