コード例 #1
0
ファイル: GraphicsDevice.cs プロジェクト: khbecker/FNA
 public void Clear(ClearOptions options, Vector4 color, float depth, int stencil)
 {
     GLDevice.Clear(
         options,
         color,
         depth,
         stencil
         );
 }