Added pixelformat parameter to DepthStencilTarget-constructor

This commit is contained in:
Simon Lübeß
2021-06-02 16:51:25 +02:00
parent bf94f10a64
commit dc088dcb0a
2 changed files with 31 additions and 2 deletions
@@ -1,21 +1,32 @@
using System;
namespace GlitchyEngine.Renderer
{
public enum DepthStencilFormat
{
D16_UNorm,
D24_UNorm_S8_UInt,
D32_Float,
D32_Float_S8X24_UInt
}
// TODO: add all features.
public class DepthStencilTarget : RefCounted
{
protected internal GraphicsContext _context ~ _?.ReleaseRef();
protected uint32 _width, _height;
protected DepthStencilFormat _format;
public uint32 Width => _width;
public uint32 Height => _height;
public DepthStencilFormat Format => _format;
public this(GraphicsContext context, uint32 width, uint32 height)
public this(GraphicsContext context, uint32 width, uint32 height, DepthStencilFormat format = .D32_Float)
{
_context = context..AddRef();
_width = width;
_height = height;
_format = format;
PlatformCreate();
}