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