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