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