コード例 #1
0
ファイル: GS.cs プロジェクト: GoaLitiuM/libobs-sharp
 public static unsafe void Clear(GSClearFlags clear_flags, Color color, float depth, Byte stencil)
 {
     Clear(clear_flags, new Vector4(color), depth, stencil);
 }
コード例 #2
0
 public static unsafe void Clear(GSClearFlags clear_flags, Color color, float depth, Byte stencil)
 {
     Clear(clear_flags, new Vector4(color), depth, stencil);
 }
コード例 #3
0
ファイル: GS.cs プロジェクト: GoaLitiuM/libobs-sharp
 public static unsafe void Clear(GSClearFlags clear_flags, Vector4 color, float depth, Byte stencil)
 {
     libobs.gs_clear((UInt32)clear_flags, out color, depth, stencil);
 }
コード例 #4
0
 public static unsafe void Clear(GSClearFlags clear_flags, Vector4 color, float depth, Byte stencil)
 {
     libobs.gs_clear((UInt32)clear_flags, out color, depth, stencil);
 }