[idd] updated to a VS2022 project with Windows 10 support

This commit is contained in:
Geoffrey McRae
2023-04-14 12:08:23 +10:00
parent 0c3dce3ca6
commit 0c176acf94
6 changed files with 68 additions and 24 deletions

View File

@@ -34,9 +34,9 @@ private:
struct StagingTexture
{
int width;
int height;
DXGI_FORMAT format;
int width = 0;
int height = 0;
DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN;
Microsoft::WRL::ComPtr<ID3D11Texture2D> tex;
};