Beispiel #1
0
 public static extern SU_RESULT SUTextureGetImageRep(SUTextureRef texture, ref SUImageRepRef image);
Beispiel #2
0
 public static extern SU_RESULT SUStyleGetThumbnail(SUStyleRef style, ref SUImageRepRef image);
Beispiel #3
0
 public static extern SU_RESULT SUTextureCreateFromImageRep(ref SUTextureRef texture, SUImageRepRef image);
Beispiel #4
0
 public static extern SU_RESULT SUImageRepRelease(ref SUImageRepRef image);
Beispiel #5
0
 public static extern SU_RESULT SUImageRepCopy(SUImageRepRef image, SUImageRepRef copy_image);
Beispiel #6
0
 public static extern SU_RESULT SUImageCreateFromImageRep(ref SUImageRef image, SUImageRepRef image_rep);
Beispiel #7
0
 public static extern SU_RESULT SUImageRepSaveToFile(SUImageRepRef image, string file_path);
Beispiel #8
0
 public static extern SU_RESULT SUImageRepGetData(SUImageRepRef image, size_t data_size, SUByte[] pixel_data);
Beispiel #9
0
 public static extern SU_RESULT SUImageRepGetDataAsColors(SUImageRepRef image, SUColor[] color_data);
Beispiel #10
0
 public static extern SU_RESULT SUImageRepConvertTo32BitsPerPixel(SUImageRepRef image);
Beispiel #11
0
 public static extern SU_RESULT SUImageRepGetDataSize(SUImageRepRef image, ref size_t data_size, ref size_t bits_per_pixel);
Beispiel #12
0
 public static extern SU_RESULT SUImageRepResize(SUImageRepRef image, size_t width, size_t height);
Beispiel #13
0
 public static extern SU_RESULT SUImageRepGetRowPadding(SUImageRepRef image, ref size_t row_padding);
Beispiel #14
0
 public static extern SU_RESULT SUImageRepGetPixelDimensions(SUImageRepRef image, ref size_t width, ref size_t height);
Beispiel #15
0
 public static extern SU_RESULT SUTextureGetColorizedImageRep(SUTextureRef texture, ref SUImageRepRef image_rep);
Beispiel #16
0
 public static extern SU_RESULT SUImageRepGetColorAtUV(SUImageRepRef image, double u, double v, bool bilinear, ref SUColor color);
Beispiel #17
0
 public static extern SU_RESULT SUTextureWriterGetImageRep(SUTextureWriterRef writer, long texture_id, ref SUImageRepRef image);
Beispiel #18
0
 public static extern SU_RESULT SUImageRepCreate(ref SUImageRepRef image);
Beispiel #19
0
 public static extern SU_RESULT SUImageGetImageRep(SUImageRef image, ref SUImageRepRef image_rep);
Beispiel #20
0
 public static extern SU_RESULT SUImageRepSetData(SUImageRepRef image, size_t width, size_t height, size_t bits_per_pixel, size_t row_padding, SUByte[] pixel_data);