[IMPORTANT]: NEW VERSION (2025) of C++ 3D Game Tutorial Series available here: • C++ 3D Game Tutorial Series: 1 | Creating ...
This video is part of the previous series. Videos from that version feature an exclamation point icon in the top-right corner of their thumbnails, which should help distinguish them from the new ones.
SUPPORT ON PATREON: / pardcode
DISCORD SERVER: / discord
DESCRIPTION:
Hello everyone!
In this fifth video tutorial we will see how to render our first triangle with our Graphics Engine by using the DirectX 11 API!
In particular we will implement all the necessary resources to do that, like the VertexBuffer, InputLayout, and also we will see what is the Graphics Pipeline, a very important process that we need to know to be able to render our triangle!
ENTIRE TUTORIAL SERIES: • C++ 3D Game Tutorial Series From Scratch
I hope you'll enjoy this tutorial!
----------------------------------------------------------------------------
WEBSITE: https://www.pardcode.com
PATREON PAGE: / pardcode
TWITTER PAGE: / pardcode
Chapters:
0:00 Intro - Info about series at www.pardcode.com
0:49 Requirements
1:13 Design
8:03 Implementation
23:02 Warning: Replace D3D11_VIEWPORT vp; with D3D11_VIEWPORT vp = { };
23:22 Implementation
25:55 Missing Shader Step: See Pinned Message
28:09 Final Result
28:27 End