idTech4.UI.idDeviceContext.PushClipRectangle C# (CSharp) Method

PushClipRectangle() public method

public PushClipRectangle ( float x, float y, float width, float height ) : void
x float
y float
width float
height float
return void
		public void PushClipRectangle(float x, float y, float width, float height)
		{
			_clipRectangles.Push(new idRectangle(x, y, width, height));
		}

Same methods

idDeviceContext::PushClipRectangle ( idRectangle rect ) : void