We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb71a9 commit 52d62d8Copy full SHA for 52d62d8
scene.cpp
@@ -45,12 +45,14 @@ static int g_PixelFormatIndex;
45
static int g_SampleCountIndex;
46
47
static const char* kPixelFormatNames[] = {
48
- "R8G8B8A8_UNORM",
49
- "R32G32B32A32_FLOAT"
+ "(32 bpp) R8G8B8A8_UNORM",
+ "(64 bpp) R16G16B16A16_UNORM",
50
+ "(128 bpp) R32G32B32A32_FLOAT"
51
};
52
53
static const DXGI_FORMAT kPixelFormatFormats[] = {
54
DXGI_FORMAT_R8G8B8A8_UNORM,
55
+ DXGI_FORMAT_R16G16B16A16_UNORM,
56
DXGI_FORMAT_R32G32B32A32_FLOAT
57
58
0 commit comments