Skip to content
Permalink
Browse files
Merge pull request #6153 from iwubcode/d3d_encode_param_type
D3D Backend: Change encoding parameter types from DWORD
  • Loading branch information
Helios747 committed Oct 30, 2017
2 parents 91dac03 + b201777 commit eaa2742
Showing 1 changed file with 4 additions and 4 deletions.
@@ -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()

0 comments on commit eaa2742

Please sign in to comment.