Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

S3MPixelFormat.js 373B

123456789101112131415161718192021222324
  1. const S3MPixelFormat = {
  2. LUMINANCE_8: 1,
  3. LUMINANCE_16: 2,
  4. ALPHA: 3,
  5. ALPHA_4_LUMINANCE_4: 4,
  6. LUMINANCE_ALPHA: 5,
  7. RGB_565: 6,
  8. BGR565: 7,
  9. RGB: 10,
  10. BGR: 11,
  11. ARGB: 12,
  12. ABGR: 13,
  13. BGRA: 14,
  14. WEBP: 25,
  15. RGBA: 28,
  16. DXT1: 17,
  17. DXT2: 18,
  18. DXT3: 19,
  19. DXT4: 20,
  20. DXT5: 21,
  21. CRN_DXT5: 26,
  22. STANDARD_CRN: 27
  23. }
  24. export default Object.freeze(S3MPixelFormat)