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 struct EFBEncodeParams
{ {
DWORD SrcLeft; s32 SrcLeft;
DWORD SrcTop; s32 SrcTop;
DWORD DestWidth; u32 DestWidth;
DWORD ScaleFactor; u32 ScaleFactor;
}; };
PSTextureEncoder::PSTextureEncoder() PSTextureEncoder::PSTextureEncoder()