1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-05 01:24:14 +01:00

[d3d9] Do a little packing of subresource members

This commit is contained in:
Joshua Ashton 2021-07-24 18:47:52 +01:00 committed by Joshie
parent d922e261e8
commit f4ce795fe7

View File

@ -131,10 +131,11 @@ namespace dxvk {
IDirect3DBaseTexture9* m_baseTexture;
D3D9CommonTexture* m_texture;
UINT m_face;
UINT m_mipLevel;
bool m_isSrgbCompatible;
UINT m_face : 8;
UINT m_mipLevel : 16;
UINT m_isSrgbCompatible : 1;
D3D9ColorView m_sampleView;
D3D9ColorView m_renderTargetView;
Rc<DxvkImageView> m_depthStencilView;