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

From Chilipedia
Jump to: navigation, search
(Created page with "Introduction of a huge game-changer. The render queue system is going to allow us to decouple the concern of traversing the scene graph from the concern of issuing rending com...")
 
(Video Timestamp Index)
 
(One intermediate revision by the same user not shown)
Line 11: Line 11:
  
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==
* [https://youtu.be/1URn3mmmmX4 Tutorial 43]
+
* [https://youtu.be/yJtyc5b0EHg Tutorial 43]
  
 
== Source Code ==
 
== Source Code ==
Line 17: Line 17:
  
 
== See also ==
 
== See also ==
* [[Hardware 3D (C++ DirectX Graphics) Tutorial 43|Next in series (Tutorial 44)]]
+
* [[Hardware 3D (C++ DirectX Graphics) Tutorial 44|Next in series (Tutorial 44)]]
 
* [[Hardware 3D Series (C++ DirectX Graphics)]]
 
* [[Hardware 3D Series (C++ DirectX Graphics)]]
 
* [https://www.patreon.com/planetchili Planet Chili Patreon]
 
* [https://www.patreon.com/planetchili Planet Chili Patreon]

Latest revision as of 23:15, 18 January 2020

Introduction of a huge game-changer. The render queue system is going to allow us to decouple the concern of traversing the scene graph from the concern of issuing rending commands, making it easier and more efficient to group draw calls as required by effect, easier to optimize render commands, and easier to execute rendering on concurrent threads.

Topics Covered

  • Render Queue System
    • Pass
    • Job
    • Technique
    • Step
    • FrameCommander
  • Bindable Cloning

Video Timestamp Index

Source Code

See also