diff options
Diffstat (limited to 'doc/pipeline.txt')
-rw-r--r-- | doc/pipeline.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/pipeline.txt b/doc/pipeline.txt new file mode 100644 index 0000000..51523d6 --- /dev/null +++ b/doc/pipeline.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | @startuml | ||
2 | |||
3 | class RenderPipeline { | ||
4 | |||
5 | } | ||
6 | |||
7 | RenderPipeline *-- RenderPass | ||
8 | |||
9 | class RenderPass { | ||
10 | +clear colour | ||
11 | } | ||
12 | |||
13 | RenderPass --> Shader | ||
14 | RenderPass o-- RenderTarget | ||
15 | |||
16 | @enduml | ||