public static void SetScissorState(ScissorState value, bool intersectWithCurrent = false) { if (intersectWithCurrent && scissorState.Enable && value.Enable) { value.Bounds = (WindowRect)IntRectangle.Intersect((IntRectangle)value.Bounds, (IntRectangle)scissorState.Bounds); } ScissorState = value; }
public static void SetScissorState(ScissorState value) { Context.SetScissorState(value); }