This tutorial is part of a Collection: Braynzar Soft Tutorials
10675
views
01. DirectX 9 - Braynzar Soft Tutorials [Collection]
This is a collection of directx 9 tutorials
01. A little about DirectX
0
rating
2436
views
Brief intro to DirectX.
02. Creating a Win32 Window
0
rating
3463
views
Learn how to set up and display a window with a message loop to keep the window displayed.
03. Initializing Direct3D
0
rating
4086
views
In this Lesson you will learn how to Initialize a Direct3D Object. Initializing Direct3D assumes you have knowledge of how to program with windows API and can create a blank window.
04. Fullscreen
0
rating
1808
views
This lesson will show you what you have to do to go fullscreen.
05. Start Drawing!
0
rating
2649
views
Now that we have all the initialization out of the way, we can start drawing polygons!
06. Color
0
rating
1958
views
This is a short tutorial showing you how to add color to your polygons.
07. Index Buffers
0
rating
2479
views
Index Buffers are used to speed up or optimize your program. They are pretty much the same thing as Vertex Buffers, but instead of storing vertices, it stores indeces. Buffers are used to speed up the rendering of geometry, and can be placed in video memory.
08. Rotation and Projection
0
rating
4118
views
This lesson will teach you how you can use matrices to rotate objects in world space. You will also learn how to set up a basic view and projection matrix (which is a basic camera) using D3DXMatrixLookAtLH() and D3DXMatrixPerspectiveFovLH().
09. Transformations
0
rating
2327
views
This lessons will cover how to translate and scale objects in 3D space. We will learn about translation, scaling, and rotation matrices.
10. Textures
0
rating
3103
views
It would be pretty hard to make a detailed game without using textures. Here we shall cover how to apply textures to our primitives.
11. Lighting
0
rating
2267
views
Without lighting, your scenes are bland and lack realism. With lighting, you have a more natural scene, you can see the solid form and volume of objects better and get a much more realistic feeling while wondering through your 3 Dimensional world.
12. Blending
0
rating
2586
views
In this lesson, we'll learn how to use simple blending. Blending can be used for many different effects, like the for glass in windows, or for masking textures and objects. Here we'll take 3 different images for the background, and slowly blend them together to make the background look interesting. We'll also learn how to make and use the alpha channel in a texture for blending.
Sign in to comment