dds texture fix #40

This commit is contained in:
Turanszki Janos
2021-08-04 22:18:27 +02:00
parent 91cf6a33c1
commit 855f09ac63
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -106,8 +106,8 @@ namespace wiResourceManager
desc.ArraySize = 1;
desc.BindFlags = BIND_SHADER_RESOURCE;
desc.CPUAccessFlags = 0;
desc.Height = dds.GetWidth();
desc.Width = dds.GetHeight();
desc.Width = dds.GetWidth();
desc.Height = dds.GetHeight();
desc.Depth = dds.GetDepth();
desc.MipLevels = dds.GetMipCount();
desc.ArraySize = dds.GetArraySize();
+1 -1
View File
@@ -9,7 +9,7 @@ namespace wiVersion
// minor features, major updates, breaking compatibility changes
const int minor = 56;
// minor bug fixes, alterations, refactors, updates
const int revision = 79;
const int revision = 80;
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);