mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-14 05:22:08 +00:00
D3DTexture: in-class initialize class members where applicable
This commit is contained in:
parent
75435aea6f
commit
52099d1b0a
2 changed files with 5 additions and 5 deletions
|
@ -39,11 +39,11 @@ private:
|
|||
~D3DTexture2D();
|
||||
|
||||
ID3D11Texture2D* tex;
|
||||
ID3D11ShaderResourceView* srv;
|
||||
ID3D11RenderTargetView* rtv;
|
||||
ID3D11DepthStencilView* dsv;
|
||||
ID3D11ShaderResourceView* srv = nullptr;
|
||||
ID3D11RenderTargetView* rtv = nullptr;
|
||||
ID3D11DepthStencilView* dsv = nullptr;
|
||||
D3D11_BIND_FLAG bindflags;
|
||||
UINT ref;
|
||||
UINT ref = 1;
|
||||
};
|
||||
|
||||
} // namespace DX11
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue