mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Add a comment to the software renderer that stride should be implemented
This commit is contained in:
parent
32e5043b29
commit
c5f9301e6e
1 changed files with 3 additions and 0 deletions
|
@ -203,6 +203,9 @@ void VideoSoftware::Video_Prepare()
|
|||
// Run from the CPU thread (from VideoInterface.cpp)
|
||||
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.fbWidth = fbWidth;
|
||||
s_beginFieldArgs.fbHeight = fbHeight;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue