コード例 #1
0
 public static extern SU_RESULT SUMaterialGetTexture(SUMaterialRef material, ref SUTextureRef texture);
コード例 #2
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureCreateFromImageData(ref SUTextureRef texture, size_t width, size_t height, size_t bits_per_pixel, SUByte[] pixel_data);
コード例 #3
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetImageDataSize(SUTextureRef texture, ref size_t data_size, ref size_t bits_per_pixel);
コード例 #4
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureWriteOriginalToFile(SUTextureRef texture, string file_path);
コード例 #5
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SUEntityRef SUTextureToEntity(SUTextureRef line);
コード例 #6
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetAverageColor(SUTextureRef texture, ref SUColor color_val);
コード例 #7
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetColorizedImageRep(SUTextureRef texture, ref SUImageRepRef image_rep);
コード例 #8
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetFileName(SUTextureRef texture, ref SUStringRef file_name);
コード例 #9
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetUseAlphaChannel(SUTextureRef texture, ref bool alpha_channel_used);
コード例 #10
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetImageRep(SUTextureRef texture, ref SUImageRepRef image);
コード例 #11
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureSetFileName(SUTextureRef texture, string name);
コード例 #12
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetDimensions(SUTextureRef texture, ref size_t width, ref size_t height, ref double s_scale, ref double t_scale);
コード例 #13
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureRelease(ref SUTextureRef texture);
コード例 #14
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureCreateFromFile(ref SUTextureRef texture, string file_path, double s_scale, double t_scale);
コード例 #15
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureCreateFromImageRep(ref SUTextureRef texture, SUImageRepRef image);
コード例 #16
0
ファイル: texture.cs プロジェクト: penguin-ku/uniskpnet
 public static extern SU_RESULT SUTextureGetImageData(SUTextureRef texture, size_t data_size, SUByte[] pixel_data);