Skip to content
Jeremiah van Oosten edited this page Oct 22, 2020 · 9 revisions

Learning DirectX 12

This is the GitHub repository for the Learning DirectX 12 tutorial series on 3dgep.com:

  1. Initialize DirectX 12
  2. Rendering a Cube
  3. Building a DirectX 12 Framework
  4. Loading Textures and Generating Mipmaps

During the process of writing the tutorial series, I also created the DX12Lib in an attempt to simplify working with DirectX 12. The DX12Lib library is written for people just starting out with DirectX 12. I'm a teacher at a games education in Breda, The Netherlands (www.buas.nl) and I primarily teach graphics programming to our 2nd year students. DX12Lib was written for them to help them get started building their game engines using DirectX 12. Ideally, they will use this library as a starting point for their own graphics engines while learning how to work with DirectX 12 and eventually make their own graphics libraries that are better than mine!

With this target audience in mind, DX12Lib was made to be easy to use. Making something easy to use usually means trade-offs. For example, instead of using raw pointers, I made the choice to use smart-pointers (ComPtr, shared_ptr and unique_pointer) so that my student's don't have to remember to delete their class instances (one of my

Clone this wiki locally