mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 22:55:42 -04:00
GPU: Remove textured draw time penalty
Fixes missing elements in Bloody Roar 2.
This commit is contained in:
parent
759c7c52d5
commit
badfe6117e
@ -385,7 +385,7 @@ protected:
|
|||||||
#else
|
#else
|
||||||
const u32 draw_ticks = ((width + 1) / 2) * height;
|
const u32 draw_ticks = ((width + 1) / 2) * height;
|
||||||
#endif
|
#endif
|
||||||
AddCommandTicks(draw_ticks << (BoolToUInt8(textured)));
|
AddCommandTicks(draw_ticks);
|
||||||
}
|
}
|
||||||
ALWAYS_INLINE void AddDrawRectangleTicks(u32 width, u32 height, bool textured) { AddCommandTicks(width * height); }
|
ALWAYS_INLINE void AddDrawRectangleTicks(u32 width, u32 height, bool textured) { AddCommandTicks(width * height); }
|
||||||
ALWAYS_INLINE void AddDrawLineTicks(u32 width, u32 height, bool shaded) { AddCommandTicks(std::max(width, height)); }
|
ALWAYS_INLINE void AddDrawLineTicks(u32 width, u32 height, bool shaded) { AddCommandTicks(std::max(width, height)); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user