Example #1
0
 public static extern SU_RESULT SUMaterialGetTexture(SUMaterialRef material, ref SUTextureRef texture);
Example #2
0
 public static extern SU_RESULT SUTextureCreateFromImageData(ref SUTextureRef texture, size_t width, size_t height, size_t bits_per_pixel, SUByte[] pixel_data);
Example #3
0
 public static extern SU_RESULT SUTextureGetImageDataSize(SUTextureRef texture, ref size_t data_size, ref size_t bits_per_pixel);
Example #4
0
 public static extern SU_RESULT SUTextureWriteOriginalToFile(SUTextureRef texture, string file_path);
Example #5
0
 public static extern SUEntityRef SUTextureToEntity(SUTextureRef line);
Example #6
0
 public static extern SU_RESULT SUTextureGetAverageColor(SUTextureRef texture, ref SUColor color_val);
Example #7
0
 public static extern SU_RESULT SUTextureGetColorizedImageRep(SUTextureRef texture, ref SUImageRepRef image_rep);
Example #8
0
 public static extern SU_RESULT SUTextureGetFileName(SUTextureRef texture, ref SUStringRef file_name);
Example #9
0
 public static extern SU_RESULT SUTextureGetUseAlphaChannel(SUTextureRef texture, ref bool alpha_channel_used);
Example #10
0
 public static extern SU_RESULT SUTextureGetImageRep(SUTextureRef texture, ref SUImageRepRef image);
Example #11
0
 public static extern SU_RESULT SUTextureSetFileName(SUTextureRef texture, string name);
Example #12
0
 public static extern SU_RESULT SUTextureGetDimensions(SUTextureRef texture, ref size_t width, ref size_t height, ref double s_scale, ref double t_scale);
Example #13
0
 public static extern SU_RESULT SUTextureRelease(ref SUTextureRef texture);
Example #14
0
 public static extern SU_RESULT SUTextureCreateFromFile(ref SUTextureRef texture, string file_path, double s_scale, double t_scale);
Example #15
0
 public static extern SU_RESULT SUTextureCreateFromImageRep(ref SUTextureRef texture, SUImageRepRef image);
Example #16
0
 public static extern SU_RESULT SUTextureGetImageData(SUTextureRef texture, size_t data_size, SUByte[] pixel_data);