예제 #1
0
파일: TextureData.cs 프로젝트: fingerx/Gist
 public void Dispose()
 {
     if (tex != null)
     {
         tex.Dispose();
         tex = null;
     }
 }
예제 #2
0
파일: TextureData.cs 프로젝트: fingerx/Gist
 public FloatFilter(ColorTextureData tex, int index)
 {
     this.tex   = tex;
     this.index = index;
 }