Exemple #1
0
 //Looks like it creates an empty image for either next/mip/layer for current image, then creates
 //N "next" images for the subimage
 public static bool CreateSubImage(SubImageType subImageType, int subImageCount) {
     //Returns 0 if something happened.
     if(ilCreateSubImage((uint) subImageType, (uint) subImageCount) != 0) {
         return true;
     }
     return false;
 }
Exemple #2
0
 public static bool CreateSubImage(SubImageType subImageType, int subImageCount)
 {
     return((int)IL.ilCreateSubImage((uint)subImageType, (uint)subImageCount) != 0);
 }