mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
D3D Backend: Change encoding parameter types from DWORD to our platform agnostic types
This commit is contained in:
parent
91dac03c45
commit
b201777b83
1 changed files with 4 additions and 4 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue