CSPspEmu.Hle.Modules.ge.sceGe_user.sceGeListEnQueue C# (CSharp) Method

sceGeListEnQueue() private method

private sceGeListEnQueue ( uint InstructionAddressStart, uint InstructionAddressStall, int CallbackId, PspGeListArgs Args ) : int
InstructionAddressStart uint
InstructionAddressStall uint
CallbackId int
Args CSPspEmu.Core.Gpu.PspGeListArgs
return int
        public int sceGeListEnQueue(uint InstructionAddressStart, uint InstructionAddressStall, int CallbackId, PspGeListArgs* Args)
        {
            var DisplayList = _sceGeListEnQueue(InstructionAddressStart, InstructionAddressStall, CallbackId, Args);
            GpuProcessor.EnqueueDisplayListLast(DisplayList);
            return DisplayList.Id;
        }