Difference between revisions of "Hardware 3D (C++ DirectX Graphics) Tutorial 48"

From Chilipedia
Jump to: navigation, search
(Topics Covered)
(Topics Covered)
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
* Distinction between Buffer <code>Sink</code>/<code>Source</code> and Bindable <code>Sink</code>/<code>Source</code>
 
* Distinction between Buffer <code>Sink</code>/<code>Source</code> and Bindable <code>Sink</code>/<code>Source</code>
 
* <code>ContainerBindableSink</code>
 
* <code>ContainerBindableSink</code>
 +
* Wishlist of future render graph system features
  
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==
* [https://youtu.be/DtuuAw1GS9M Tutorial 48]
+
* [https://youtu.be/FNtMryLkQ5U Tutorial 48]
  
 
== Source Code ==
 
== Source Code ==

Latest revision as of 20:59, 29 March 2020

We look at a render graph system for creating smart Pass objects that encapsulate and automate the different render passes in our scene, and for defining the connection between those passes and compiling them into a single render graph. Very THICC video.

Topics Covered

  • Overview of render graph and why this system is needed
  • Pass classes and the pass hierarchy
  • Sink and Source
  • RenderGraph base class and usage
  • Changes to Step
  • Distinction between Buffer Sink/Source and Bindable Sink/Source
  • ContainerBindableSink
  • Wishlist of future render graph system features

Video Timestamp Index

Source Code

See also