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

From Chilipedia
Jump to: navigation, search
(See also)
(See also)
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
 
== Topics Covered ==
 
== Topics Covered ==
 +
* Triangle winding order / back face culling
 
* Line list and line strip primitive topologies
 
* Line list and line strip primitive topologies
 
* Adding vertex attributes (vertex color)
 
* Adding vertex attributes (vertex color)
 +
* UNORM vs UINT
 
* Indexed drawing
 
* Indexed drawing
 
* Adjusting the viewport
 
* Adjusting the viewport
Line 14: Line 16:
  
 
== See also ==
 
== See also ==
* [[Hardware 3D (C++ DirectX Graphics) Tutorial 18|Next in series (Tutorial 18)]]
+
* [[Hardware 3D (C++ DirectX Graphics) Tutorial 18|Next in series (Tutorial 18)]]
 
* [[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:38, 29 March 2019

In this video we get a little more familiar with the rendering pipeline as we fiddle with the various settings and try all sorts of variations out.

Topics Covered

  • Triangle winding order / back face culling
  • Line list and line strip primitive topologies
  • Adding vertex attributes (vertex color)
  • UNORM vs UINT
  • Indexed drawing
  • Adjusting the viewport

Video Timestamp Index

Tutorial 17

Source Code

See also