mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-19 10:46:28 +01:00
Add a comment to the software renderer that stride should be implemented
This commit is contained in:
parent
32e5043b29
commit
c5f9301e6e
@ -203,6 +203,9 @@ void VideoSoftware::Video_Prepare()
|
|||||||
// Run from the CPU thread (from VideoInterface.cpp)
|
// Run from the CPU thread (from VideoInterface.cpp)
|
||||||
void VideoSoftware::Video_BeginField(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight)
|
void VideoSoftware::Video_BeginField(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight)
|
||||||
{
|
{
|
||||||
|
// XXX: fbStride should be implemented properly here
|
||||||
|
// If stride isn't implemented then there are problems with XFB
|
||||||
|
// Animal Crossing is a good example for this.
|
||||||
s_beginFieldArgs.xfbAddr = xfbAddr;
|
s_beginFieldArgs.xfbAddr = xfbAddr;
|
||||||
s_beginFieldArgs.fbWidth = fbWidth;
|
s_beginFieldArgs.fbWidth = fbWidth;
|
||||||
s_beginFieldArgs.fbHeight = fbHeight;
|
s_beginFieldArgs.fbHeight = fbHeight;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user