CSPspEmu.Core.Gpu.Run.GpuDisplayListRunner.OP_REGION2 C# (CSharp) Method

OP_REGION2() public method

public OP_REGION2 ( ) : void
return void
        public void OP_REGION2()
        {
            var X2 = (short)BitUtils.Extract(Params24, 0, 10);
            var Y2 = (short)BitUtils.Extract(Params24, 10, 10);
            GpuState->Viewport.RegionBottomRight.X = (short)(X2 + 1);
            GpuState->Viewport.RegionBottomRight.Y = (short)(Y2 + 1);
        }
GpuDisplayListRunner