Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
|
#include <DepthStencilTarget.hpp>
Classes | |
struct | CreateInfo |
Public Member Functions | |
virtual void | Resize (uint32_t width, uint32_t height)=0 |
virtual void | BindFace (int k)=0 |
Depth Targets are a kind of image used as an attachment in one or more GraphicsPipeline. They are meant to contain both depth and stencil data. Depth data refers to how far pixels are from the screen, and are used to order which triangles appear on top when drawing many triangles to the screen. Stencil buffers are arbitrary data placed alongside the depth target, often used for controlling where rendering occurs.