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