CSPspEmu.Hle.Modules.display.sceDisplay.sceDisplayGetFrameBuf C# (CSharp) 메소드

sceDisplayGetFrameBuf() 개인적인 메소드

private sceDisplayGetFrameBuf ( uint &topaddr, int &bufferwidth, GuPixelFormats &pixelformat, uint sync ) : int
topaddr uint
bufferwidth int
pixelformat GuPixelFormats
sync uint
리턴 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;
        }