3 writes to bufferSize
System.Drawing (3)
commonui\System\Drawing\BufferedGraphicsContext.cs (3)
59bufferSize = Size.Empty; 396bufferSize = new Size(optWidth, optHeight); 594bufferSize = Size.Empty;
4 references to bufferSize
System.Drawing (4)
commonui\System\Drawing\BufferedGraphicsContext.cs (4)
383if (width > bufferSize.Width || height > bufferSize.Height) 386int optWidth = Math.Max(width, bufferSize.Width); 387int optHeight = Math.Max(height, bufferSize.Height);