1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 11:52:12 +01:00

[d3d9] Make D3D9_COMMON_TEXTURE_DESC smaller

This commit is contained in:
Joshua Ashton 2021-07-24 18:23:34 +01:00 committed by Joshie
parent 3592d7b48f
commit d922e261e8

View File

@ -39,11 +39,11 @@ namespace dxvk {
DWORD Usage; DWORD Usage;
D3D9Format Format; D3D9Format Format;
D3DPOOL Pool; D3DPOOL Pool;
BOOL Discard;
D3DMULTISAMPLE_TYPE MultiSample; D3DMULTISAMPLE_TYPE MultiSample;
DWORD MultisampleQuality; DWORD MultisampleQuality;
BOOL IsBackBuffer; bool Discard;
BOOL IsAttachmentOnly; bool IsBackBuffer;
bool IsAttachmentOnly;
}; };
struct D3D9ColorView { struct D3D9ColorView {