Code for my SharpDX Tutorials at www.johanfalk.eu.
The beginners tutorial describes the basics of SharpDX, starting with setting up a project in Visual Studio.
In the first part we create the Visual Studio project, and adding the required NuGet packages. Read the full tutorial here.
In the second tutorial we create a window which we will later render in. Read tutorial here.
In this tutorial we initialize DirectX. We set up the swap chain and a backbuffer to render to and finally clear the backbuffer into a nice blue color. Read tutorial here.
Finally time to draw something else than a blue screen. We draw a simple triangle from three vertices and add a simple vertex and pixel shader. Read tutorial here.
In this tutorial we will look at setting a specific color for each vertex. The tutorial is available here.