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

From Chilipedia
Jump to: navigation, search
(See also)
(Video Timestamp Index)
 
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 ==

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