Merge pull request #6153 from iwubcode/d3d_encode_param_type

D3D Backend: Change encoding parameter types from DWORD
This commit is contained in:
Anthony 2017-10-30 09:19:07 -07:00 committed by GitHub
commit eaa2742b41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,10 +22,10 @@ namespace DX11
{
struct EFBEncodeParams
{
DWORD SrcLeft;
DWORD SrcTop;
DWORD DestWidth;
DWORD ScaleFactor;
s32 SrcLeft;
s32 SrcTop;
u32 DestWidth;
u32 ScaleFactor;
};
PSTextureEncoder::PSTextureEncoder()