Hardware 3D (C++ DirectX Graphics) Tutorial 18

From Chilipedia
Revision as of 23:43, 29 March 2019 by Chili (Talk | contribs) (Created page with "Constant buffers allow us to pass data along to our shaders that remain uniform across all vertices/pixels/etc. in a single draw call. Use them for stuff like binding your tra...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Constant buffers allow us to pass data along to our shaders that remain uniform across all vertices/pixels/etc. in a single draw call. Use them for stuff like binding your transformation matrices to your vertex shader.

Topics Covered

  • Constant buffers
  • Dynamic resource type
  • HLSL matrix and mul()
  • row_major

Video Timestamp Index

Tutorial 17

Source Code

See also