audren: implement Renderer Info output informations (#1179)

This implement the rendering information output informations of
RequestUpdate.

This is needed by some games to keep track of the count of update on the
DSP.
This commit is contained in:
Thog 2020-04-30 05:03:05 +02:00 committed by GitHub
parent 806e1c2b77
commit 73ca60676a
3 changed files with 34 additions and 0 deletions

View file

@ -21,5 +21,10 @@ namespace Ryujinx.HLE.Utilities
Position += Marshal.SizeOf<T>();
}
public void SkipBytes(long count)
{
Position += count;
}
}
}