18 lines
413 B
C#
18 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SharpDX.DirectManipulation
|
|
{
|
|
partial class Viewport2
|
|
{
|
|
public Viewport2(Manager manager, FrameInfoProvider frameInfo, IntPtr window) : base(IntPtr.Zero)
|
|
{
|
|
IntPtr temp;
|
|
manager.CreateViewport(frameInfo, window, Utilities.GetGuidFromType(typeof(Viewport2)), out temp);
|
|
NativePointer = temp;
|
|
}
|
|
}
|
|
}
|