CSPspEmu.Hle.Modules.display.sceDisplay.sceDisplayGetFrameBuf C# (CSharp) Method

sceDisplayGetFrameBuf() private method

private sceDisplayGetFrameBuf ( uint &topaddr, int &bufferwidth, GuPixelFormats &pixelformat, uint sync ) : int
topaddr uint
bufferwidth int
pixelformat GuPixelFormats
sync uint
return int
        public int sceDisplayGetFrameBuf(ref uint topaddr, ref int bufferwidth, ref GuPixelFormats pixelformat, uint sync)
        {
            topaddr = PspDisplay.CurrentInfo.FrameAddress;
            bufferwidth = PspDisplay.CurrentInfo.BufferWidth;
            pixelformat = PspDisplay.CurrentInfo.PixelFormat;
            return 0;
        }