Browse Source

Added image formats.

Brucey 5 years ago
parent
commit
c399d007ea
1 changed files with 22 additions and 0 deletions
  1. 22 0
      lib.mod/common.bmx

+ 22 - 0
lib.mod/common.bmx

@@ -950,3 +950,25 @@ Const LOC_MAP_BRDF:Int = 24
 Const FONT_DEFAULT:Int = 0
 Const FONT_BITMAP:Int = 1
 Const FONT_SDF:Int = 2
+
+Const UNCOMPRESSED_GRAYSCALE:Int = 1
+Const UNCOMPRESSED_GRAY_ALPHA:Int = 2
+Const UNCOMPRESSED_R5G6B5:Int = 3
+Const UNCOMPRESSED_R8G8B8:Int = 4
+Const UNCOMPRESSED_R5G5B5A1:Int = 5
+Const UNCOMPRESSED_R4G4B4A4:Int = 6
+Const UNCOMPRESSED_R8G8B8A8:Int = 7
+Const UNCOMPRESSED_R32:Int = 8
+Const UNCOMPRESSED_R32G32B32:Int = 9
+Const UNCOMPRESSED_R32G32B32A32:Int = 10
+Const COMPRESSED_DXT1_RGB:Int = 11
+Const COMPRESSED_DXT1_RGBA:Int = 12
+Const COMPRESSED_DXT3_RGBA:Int = 13
+Const COMPRESSED_DXT5_RGBA:Int = 14
+Const COMPRESSED_ETC1_RGB:Int = 15
+Const COMPRESSED_ETC2_RGB:Int = 16
+Const COMPRESSED_ETC2_EAC_RGBA:Int = 17
+Const COMPRESSED_PVRT_RGB:Int = 18
+Const COMPRESSED_PVRT_RGBA:Int = 19
+Const COMPRESSED_ASTC_4x4_RGBA:Int = 20
+Const COMPRESSED_ASTC_8x8_RGBA:Int = 21