-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathindex.ts
More file actions
23 lines (22 loc) · 646 Bytes
/
index.ts
File metadata and controls
23 lines (22 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import RenderGraph from "./RenderGraph";
import Node from "./Node";
import Pass, {InternalResourceType} from "./Pass";
import type {InternalResource, ResourcePropMap} from "./Pass";
import Resource from "./Resource";
import PhysicalResource from "./PhysicalResource";
import PhysicalResourceBuilder from "./PhysicalResourceBuilder";
import PhysicalResourcePool from "./PhysicalResourcePool";
import ResourceDescriptor from "./ResourceDescriptor";
export {
RenderGraph,
Node,
Pass,
Resource,
PhysicalResourceBuilder,
PhysicalResourcePool,
ResourceDescriptor,
PhysicalResource,
ResourcePropMap,
InternalResourceType,
InternalResource
};