File tree 2 files changed +3
-2
lines changed
Siv3D/src/Siv3D-Platform/WindowsDesktop/Siv3D/Texture/D3D11
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,12 @@ namespace s3d
42
42
43
43
// 4x MSAA サポート状況を取得
44
44
{
45
- constexpr std::array<TextureFormat, 10 > formats =
45
+ constexpr std::array<TextureFormat, 11 > formats =
46
46
{
47
47
TextureFormat::Unknown,
48
48
TextureFormat::R8G8B8A8_Unorm,
49
49
TextureFormat::R8G8B8A8_Unorm_SRGB,
50
+ TextureFormat::R16G16_Unorm,
50
51
TextureFormat::R16G16_Float,
51
52
TextureFormat::R32_Float,
52
53
TextureFormat::R10G10B10A2_Unorm,
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ namespace s3d
35
35
AssetHandleManager<Texture::IDType, D3D11Texture> m_textures{ U" Texture" };
36
36
37
37
// マルチサンプルの対応
38
- std::array<bool , 10 > m_multiSampleAvailable = {};
38
+ std::array<bool , 11 > m_multiSampleAvailable = {};
39
39
40
40
public:
41
41
You can’t perform that action at this time.
0 commit comments