Difference between revisions of "3D Fundamentals Tutorial 8"
From Chilipedia
(→Video) |
(→Video) |
||
Line 13: | Line 13: | ||
</div> | </div> | ||
* The fixed function pipeline [https://youtu.be/aeU8eVAExMQ?t=3m00s 3:00] | * The fixed function pipeline [https://youtu.be/aeU8eVAExMQ?t=3m00s 3:00] | ||
− | * Code refactoring/implementation: walks-through [https://youtu.be/aeU8eVAExMQ?t=5m35s 5:35] | + | * Code refactoring/implementation commits: start of the walks-through [https://youtu.be/aeU8eVAExMQ?t=5m35s 5:35] |
* Implementing <code>Pipeline.h</code> [https://youtu.be/aeU8eVAExMQ?t=5m51s 5:51] | * Implementing <code>Pipeline.h</code> [https://youtu.be/aeU8eVAExMQ?t=5m51s 5:51] | ||
<div class="mw-collapsible-content"> | <div class="mw-collapsible-content"> | ||
Line 24: | Line 24: | ||
:* The <code>PostProcessTriangleVertices()</code> function. Transforms into screen space and calls the draw function. [https://youtu.be/aeU8eVAExMQ?t=9m42s 9:42] | :* The <code>PostProcessTriangleVertices()</code> function. Transforms into screen space and calls the draw function. [https://youtu.be/aeU8eVAExMQ?t=9m42s 9:42] | ||
:* The <code>DrawTriangle()</code> function. Same basic triangle drawing function that splits into flat top and flat bottom triangles and call <code>DrawFlatTriangle</code> with appropriate parameters [https://youtu.be/aeU8eVAExMQ?t=10m01s 10:01] | :* The <code>DrawTriangle()</code> function. Same basic triangle drawing function that splits into flat top and flat bottom triangles and call <code>DrawFlatTriangle</code> with appropriate parameters [https://youtu.be/aeU8eVAExMQ?t=10m01s 10:01] | ||
− | + | :* Major difference in interpolation approach in the inner rasterization loop. Extended from texture coordinate only to interpolation of the whole vertex. This will be useful later. [https://youtu.be/aeU8eVAExMQ?t=10m37s 10:37] | |
− | + | :* Data members of the <code>Pipeline</code> class [https://youtu.be/aeU8eVAExMQ?t=11m37s 11:37] | |
− | + | ||
− | + | ||
</div> | </div> | ||
+ | * Different Scene classes and <code>TexVertex.h<code> removed [https://youtu.be/aeU8eVAExMQ?t=12m41s 12:41] | ||
+ | * Templated interpolation implemented in <ChiliMath.h> [https://youtu.be/aeU8eVAExMQ?t=12m54s 12:54] | ||
Revision as of 05:39, 22 May 2020
Here we set up the pipeline that is going to form the scaffolding for our model of the 3D graphics processing. In the coming videos, we are going to be replacing units of fixed functionality in this pipeline one by one with programmable shader stages.
Video
The tutorial video is on YouTube here.
- Major refactoring, implementinng a
Pipeline
class: Why? 0:10
- Get rid of a lot of redundancy in the code
- Introduce a structure to develop specific parts of the D3D10 Graphics Pipeline
- Effective way to deal with proliferation of effects and settings related to graphics
- The fixed function pipeline 3:00
- Code refactoring/implementation commits: start of the walks-through 5:35
- Implementing
Pipeline.h
5:51
- The pipeline works through a series of nested function calls (representing the stages of the pipeline)
- The
Draw()
function 6:24 - The
Vertex
used throughout the pipeline 6:32 - The
ProcessVertices()
function. Applies rotatioin & translation transformations 7:25 - The
AssembleTriangles()
function. Assembles vertex stream into triangles, culls and passes on triangle vertices (three at a time) 8:06 - The
ProcessTriangles
function. Placeholder for the Geometry Shader (implemented later). Creates aTriangle
object and passes on 8:47 - The
PostProcessTriangleVertices()
function. Transforms into screen space and calls the draw function. 9:42 - The
DrawTriangle()
function. Same basic triangle drawing function that splits into flat top and flat bottom triangles and callDrawFlatTriangle
with appropriate parameters 10:01 - Major difference in interpolation approach in the inner rasterization loop. Extended from texture coordinate only to interpolation of the whole vertex. This will be useful later. 10:37
- Data members of the
Pipeline
class 11:37
- Different Scene classes and
TexVertex.h<code> removed 12:41
- Templated interpolation implemented in <ChiliMath.h> 12:54
</div>
Downloads
The GitHub repository for the tutorial code is here.
3D Graphics History
Coming soon!