Ejemplo n.º 1
0
 internal static extern DxgiError CreateDXGIFactory(
     /* _In_  REFIID */ [In] ref Guid riid,
     /* _Out_ void** */ [Out] out IDxgiFactory factory
     );
Ejemplo n.º 2
0
 public static IDxgiFactory CreateRef(this IDxgiFactory objectRef) =>
 ((IDxgiFactory)objectRef.CreateRef(typeof(IDxgiFactory)));
Ejemplo n.º 3
0
 public static extern void CreateDxgiFactory(
     [In, MarshalAs(UnmanagedType.LPStruct)] Guid riid,
     [Out] out IDxgiFactory factory);
Ejemplo n.º 4
0
 internal DxgiFactory(IDxgiFactory factory)
 {
     this.factory = factory;
 }
Ejemplo n.º 5
0
 internal DxgiFactory(IDxgiFactory factory)
 {
     this.factory = factory;
 }
Ejemplo n.º 6
0
 internal DxgiFactory(IDxgiFactory dxgiFactory)
 {
     _dxgiFactory = dxgiFactory;
 }