mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Merge pull request #6153 from iwubcode/d3d_encode_param_type
D3D Backend: Change encoding parameter types from DWORD
This commit is contained in:
commit
eaa2742b41
1 changed files 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()
|
||||
|
|
Loading…
Add table
Reference in a new issue