mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fixed hires textures not scaling. Also increased max size of custom textures to 2048x2048.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6254 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -39,8 +39,7 @@ public:
|
||||
u32 oldpixel;
|
||||
|
||||
int frameCount;
|
||||
int w, h, fmt,MipLevels;
|
||||
int Scaledw, Scaledh;
|
||||
int w, h, fmt,MipLevels, Realw, Realh, Scaledw, Scaledh;
|
||||
|
||||
bool isRenderTarget;
|
||||
bool isDynamic;// mofified from cpu
|
||||
@ -59,6 +58,8 @@ public:
|
||||
isNonPow2 = true;
|
||||
w = 0;
|
||||
h = 0;
|
||||
Realw = 0;
|
||||
Realh = 0;
|
||||
Scaledw = 0;
|
||||
Scaledh = 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user