ARCed.Controls.GraphicsDeviceService.AddRef C# (CSharp) Метод

AddRef() публичный статический Метод

Gets a reference to the singleton instance.
public static AddRef ( IntPtr windowHandle, int width, int height ) : GraphicsDeviceService
windowHandle System.IntPtr
width int
height int
Результат GraphicsDeviceService
		public static GraphicsDeviceService AddRef(IntPtr windowHandle,
												   int width, int height)
		{
			// Increment the "how many controls sharing the device" reference count.
			if (Interlocked.Increment(ref referenceCount) == 1)
			{
				// If this is the first control to start using the
				// device, we must create the singleton instance.
				singletonInstance = new GraphicsDeviceService(windowHandle,
															  width, height);
			}

			return singletonInstance;
		}