Esempio n. 1
0
 /// <summary>
 ///   Constructs a new <see cref = "T:SharpDX.Direct3D11.Counter" /> based on the specified description.
 /// </summary>
 /// <param name = "device">The device with which to associate the state object.</param>
 /// <param name = "description">The counter description.</param>
 /// <returns>The newly created object.</returns>
 public Counter(Device device, CounterDescription description)
     : base(IntPtr.Zero)
 {
     device.CreateCounter(description, this);
 }