User talk:Oeq1st1

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Drafting Direct3D Pipeline[edit]

Pipeline[edit]

Graphics pipeline process

The Microsoft Direct3D 10 API defines a process to convert a group of vertices, textures, buffers, and state into an image on the screen. This process is described as a rendering pipeline with several distinct stages. The different stages of the Direct3D 10 pipeline[1] are:[2]

  1. Input Assembler: Reads in vertex data from a user supplied vertex buffer and feeds them down the pipeline.
  2. Vertex Shader: Performs operations on a single vertex at a time, such as transformations, skinning, or lighting.
  3. Geometry Shader: Processes entire primitives such as triangles, points, or lines. Given a primitive, this stage discards it, or generates one or more new primitives.
  4. Stream Output: Can write out the previous stage's results to memory. This is useful to recirculate data back into the pipeline.
  5. Rasterizer: Converts primitives into pixels, feeding these pixels into the pixel shader. The Rasterizer may also perform other tasks such as clipping what is not visible, or interpolating vertex data into per-pixel data.
  6. Pixel Shader: Determines the final pixel colour to be written to the render target and can also calculate a depth value to be written to the depth buffer.
  7. Output Merger: Merges various types of output data (pixel shader values, alpha blending, depth/stencil...) to build the final result.

The pipeline stages illustrated with a round box are fully programmable. The user provides a shader program that describes the exact operations to be completed for that stage. Many stages are optional and can be disabled altogether.

  1. ^ "Direct3D 9.0 pipeline diagram".
  2. ^ "Direct3D 10 pipeline stages".