wabbajack/Wabbajack.DTOs/Texture/ImageState.cs
Timothy Baldridge 7b46a88fc0
Fix ba2 compilation errors (#2286)
* Fix BA2 compilation errors by implementing mipmap detection and usage during texture recompression

* Update CHANGELOG.md

* Fix broken mipmap support on Linux/OSX
2023-01-28 14:42:23 -07:00

16 lines
393 B
C#

namespace Wabbajack.DTOs.Texture;
public class ImageState
{
public int Width { get; set; }
public int Height { get; set; }
public DXGI_FORMAT Format { get; set; }
public PHash PerceptualHash { get; set; }
public int MipLevels { get; set; }
public override string ToString()
{
return $"ImageState<{Width}, {Height}, {Format}, {MipLevels} levels>";
}
}