stb_dxt.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  1. // stb_dxt.h - v1.12 - DXT1/DXT5 compressor - public domain
  2. // original by fabian "ryg" giesen - ported to C by stb
  3. // use '#define STB_DXT_IMPLEMENTATION' before including to create the implementation
  4. //
  5. // USAGE:
  6. // call stb_compress_dxt_block() for every block (you must pad)
  7. // source should be a 4x4 block of RGBA data in row-major order;
  8. // Alpha channel is not stored if you specify alpha=0 (but you
  9. // must supply some constant alpha in the alpha channel).
  10. // You can turn on dithering and "high quality" using mode.
  11. //
  12. // version history:
  13. // v1.12 - (ryg) fix bug in single-color table generator
  14. // v1.11 - (ryg) avoid racy global init, better single-color tables, remove dither
  15. // v1.10 - (i.c) various small quality improvements
  16. // v1.09 - (stb) update documentation re: surprising alpha channel requirement
  17. // v1.08 - (stb) fix bug in dxt-with-alpha block
  18. // v1.07 - (stb) bc4; allow not using libc; add STB_DXT_STATIC
  19. // v1.06 - (stb) fix to known-broken 1.05
  20. // v1.05 - (stb) support bc5/3dc (Arvids Kokins), use extern "C" in C++ (Pavel Krajcevski)
  21. // v1.04 - (ryg) default to no rounding bias for lerped colors (as per S3TC/DX10 spec);
  22. // single color match fix (allow for inexact color interpolation);
  23. // optimal DXT5 index finder; "high quality" mode that runs multiple refinement steps.
  24. // v1.03 - (stb) endianness support
  25. // v1.02 - (stb) fix alpha encoding bug
  26. // v1.01 - (stb) fix bug converting to RGB that messed up quality, thanks ryg & cbloom
  27. // v1.00 - (stb) first release
  28. //
  29. // contributors:
  30. // Rich Geldreich (more accurate index selection)
  31. // Kevin Schmidt (#defines for "freestanding" compilation)
  32. // github:ppiastucki (BC4 support)
  33. // Ignacio Castano - improve DXT endpoint quantization
  34. // Alan Hickman - static table initialization
  35. //
  36. // LICENSE
  37. //
  38. // See end of file for license information.
  39. #ifndef STB_INCLUDE_STB_DXT_H
  40. #define STB_INCLUDE_STB_DXT_H
  41. #ifdef __cplusplus
  42. extern "C" {
  43. #endif
  44. #ifdef STB_DXT_STATIC
  45. #define STBDDEF static
  46. #else
  47. #define STBDDEF extern
  48. #endif
  49. // compression mode (bitflags)
  50. #define STB_DXT_NORMAL 0
  51. #define STB_DXT_DITHER 1 // use dithering. was always dubious, now deprecated. does nothing!
  52. #define STB_DXT_HIGHQUAL 2 // high quality mode, does two refinement steps instead of 1. ~30-40% slower.
  53. STBDDEF void stb_compress_dxt_block(unsigned char *dest, const unsigned char *src_rgba_four_bytes_per_pixel, int alpha, int mode);
  54. STBDDEF void stb_compress_bc4_block(unsigned char *dest, const unsigned char *src_r_one_byte_per_pixel);
  55. STBDDEF void stb_compress_bc5_block(unsigned char *dest, const unsigned char *src_rg_two_byte_per_pixel);
  56. #define STB_COMPRESS_DXT_BLOCK
  57. #ifdef __cplusplus
  58. }
  59. #endif
  60. #endif // STB_INCLUDE_STB_DXT_H
  61. #ifdef STB_DXT_IMPLEMENTATION
  62. // configuration options for DXT encoder. set them in the project/makefile or just define
  63. // them at the top.
  64. // STB_DXT_USE_ROUNDING_BIAS
  65. // use a rounding bias during color interpolation. this is closer to what "ideal"
  66. // interpolation would do but doesn't match the S3TC/DX10 spec. old versions (pre-1.03)
  67. // implicitly had this turned on.
  68. //
  69. // in case you're targeting a specific type of hardware (e.g. console programmers):
  70. // NVidia and Intel GPUs (as of 2010) as well as DX9 ref use DXT decoders that are closer
  71. // to STB_DXT_USE_ROUNDING_BIAS. AMD/ATI, S3 and DX10 ref are closer to rounding with no bias.
  72. // you also see "(a*5 + b*3) / 8" on some old GPU designs.
  73. // #define STB_DXT_USE_ROUNDING_BIAS
  74. #include <stdlib.h>
  75. #if !defined(STBD_FABS)
  76. #include <math.h>
  77. #endif
  78. #ifndef STBD_FABS
  79. #define STBD_FABS(x) fabs(x)
  80. #endif
  81. static const unsigned char stb__OMatch5[256][2] = {
  82. { 0, 0 }, { 0, 0 }, { 0, 1 }, { 0, 1 }, { 1, 0 }, { 1, 0 }, { 1, 0 }, { 1, 1 },
  83. { 1, 1 }, { 1, 1 }, { 1, 2 }, { 0, 4 }, { 2, 1 }, { 2, 1 }, { 2, 1 }, { 2, 2 },
  84. { 2, 2 }, { 2, 2 }, { 2, 3 }, { 1, 5 }, { 3, 2 }, { 3, 2 }, { 4, 0 }, { 3, 3 },
  85. { 3, 3 }, { 3, 3 }, { 3, 4 }, { 3, 4 }, { 3, 4 }, { 3, 5 }, { 4, 3 }, { 4, 3 },
  86. { 5, 2 }, { 4, 4 }, { 4, 4 }, { 4, 5 }, { 4, 5 }, { 5, 4 }, { 5, 4 }, { 5, 4 },
  87. { 6, 3 }, { 5, 5 }, { 5, 5 }, { 5, 6 }, { 4, 8 }, { 6, 5 }, { 6, 5 }, { 6, 5 },
  88. { 6, 6 }, { 6, 6 }, { 6, 6 }, { 6, 7 }, { 5, 9 }, { 7, 6 }, { 7, 6 }, { 8, 4 },
  89. { 7, 7 }, { 7, 7 }, { 7, 7 }, { 7, 8 }, { 7, 8 }, { 7, 8 }, { 7, 9 }, { 8, 7 },
  90. { 8, 7 }, { 9, 6 }, { 8, 8 }, { 8, 8 }, { 8, 9 }, { 8, 9 }, { 9, 8 }, { 9, 8 },
  91. { 9, 8 }, { 10, 7 }, { 9, 9 }, { 9, 9 }, { 9, 10 }, { 8, 12 }, { 10, 9 }, { 10, 9 },
  92. { 10, 9 }, { 10, 10 }, { 10, 10 }, { 10, 10 }, { 10, 11 }, { 9, 13 }, { 11, 10 }, { 11, 10 },
  93. { 12, 8 }, { 11, 11 }, { 11, 11 }, { 11, 11 }, { 11, 12 }, { 11, 12 }, { 11, 12 }, { 11, 13 },
  94. { 12, 11 }, { 12, 11 }, { 13, 10 }, { 12, 12 }, { 12, 12 }, { 12, 13 }, { 12, 13 }, { 13, 12 },
  95. { 13, 12 }, { 13, 12 }, { 14, 11 }, { 13, 13 }, { 13, 13 }, { 13, 14 }, { 12, 16 }, { 14, 13 },
  96. { 14, 13 }, { 14, 13 }, { 14, 14 }, { 14, 14 }, { 14, 14 }, { 14, 15 }, { 13, 17 }, { 15, 14 },
  97. { 15, 14 }, { 16, 12 }, { 15, 15 }, { 15, 15 }, { 15, 15 }, { 15, 16 }, { 15, 16 }, { 15, 16 },
  98. { 15, 17 }, { 16, 15 }, { 16, 15 }, { 17, 14 }, { 16, 16 }, { 16, 16 }, { 16, 17 }, { 16, 17 },
  99. { 17, 16 }, { 17, 16 }, { 17, 16 }, { 18, 15 }, { 17, 17 }, { 17, 17 }, { 17, 18 }, { 16, 20 },
  100. { 18, 17 }, { 18, 17 }, { 18, 17 }, { 18, 18 }, { 18, 18 }, { 18, 18 }, { 18, 19 }, { 17, 21 },
  101. { 19, 18 }, { 19, 18 }, { 20, 16 }, { 19, 19 }, { 19, 19 }, { 19, 19 }, { 19, 20 }, { 19, 20 },
  102. { 19, 20 }, { 19, 21 }, { 20, 19 }, { 20, 19 }, { 21, 18 }, { 20, 20 }, { 20, 20 }, { 20, 21 },
  103. { 20, 21 }, { 21, 20 }, { 21, 20 }, { 21, 20 }, { 22, 19 }, { 21, 21 }, { 21, 21 }, { 21, 22 },
  104. { 20, 24 }, { 22, 21 }, { 22, 21 }, { 22, 21 }, { 22, 22 }, { 22, 22 }, { 22, 22 }, { 22, 23 },
  105. { 21, 25 }, { 23, 22 }, { 23, 22 }, { 24, 20 }, { 23, 23 }, { 23, 23 }, { 23, 23 }, { 23, 24 },
  106. { 23, 24 }, { 23, 24 }, { 23, 25 }, { 24, 23 }, { 24, 23 }, { 25, 22 }, { 24, 24 }, { 24, 24 },
  107. { 24, 25 }, { 24, 25 }, { 25, 24 }, { 25, 24 }, { 25, 24 }, { 26, 23 }, { 25, 25 }, { 25, 25 },
  108. { 25, 26 }, { 24, 28 }, { 26, 25 }, { 26, 25 }, { 26, 25 }, { 26, 26 }, { 26, 26 }, { 26, 26 },
  109. { 26, 27 }, { 25, 29 }, { 27, 26 }, { 27, 26 }, { 28, 24 }, { 27, 27 }, { 27, 27 }, { 27, 27 },
  110. { 27, 28 }, { 27, 28 }, { 27, 28 }, { 27, 29 }, { 28, 27 }, { 28, 27 }, { 29, 26 }, { 28, 28 },
  111. { 28, 28 }, { 28, 29 }, { 28, 29 }, { 29, 28 }, { 29, 28 }, { 29, 28 }, { 30, 27 }, { 29, 29 },
  112. { 29, 29 }, { 29, 30 }, { 29, 30 }, { 30, 29 }, { 30, 29 }, { 30, 29 }, { 30, 30 }, { 30, 30 },
  113. { 30, 30 }, { 30, 31 }, { 30, 31 }, { 31, 30 }, { 31, 30 }, { 31, 30 }, { 31, 31 }, { 31, 31 },
  114. };
  115. static const unsigned char stb__OMatch6[256][2] = {
  116. { 0, 0 }, { 0, 1 }, { 1, 0 }, { 1, 1 }, { 1, 1 }, { 1, 2 }, { 2, 1 }, { 2, 2 },
  117. { 2, 2 }, { 2, 3 }, { 3, 2 }, { 3, 3 }, { 3, 3 }, { 3, 4 }, { 4, 3 }, { 4, 4 },
  118. { 4, 4 }, { 4, 5 }, { 5, 4 }, { 5, 5 }, { 5, 5 }, { 5, 6 }, { 6, 5 }, { 6, 6 },
  119. { 6, 6 }, { 6, 7 }, { 7, 6 }, { 7, 7 }, { 7, 7 }, { 7, 8 }, { 8, 7 }, { 8, 8 },
  120. { 8, 8 }, { 8, 9 }, { 9, 8 }, { 9, 9 }, { 9, 9 }, { 9, 10 }, { 10, 9 }, { 10, 10 },
  121. { 10, 10 }, { 10, 11 }, { 11, 10 }, { 8, 16 }, { 11, 11 }, { 11, 12 }, { 12, 11 }, { 9, 17 },
  122. { 12, 12 }, { 12, 13 }, { 13, 12 }, { 11, 16 }, { 13, 13 }, { 13, 14 }, { 14, 13 }, { 12, 17 },
  123. { 14, 14 }, { 14, 15 }, { 15, 14 }, { 14, 16 }, { 15, 15 }, { 15, 16 }, { 16, 14 }, { 16, 15 },
  124. { 17, 14 }, { 16, 16 }, { 16, 17 }, { 17, 16 }, { 18, 15 }, { 17, 17 }, { 17, 18 }, { 18, 17 },
  125. { 20, 14 }, { 18, 18 }, { 18, 19 }, { 19, 18 }, { 21, 15 }, { 19, 19 }, { 19, 20 }, { 20, 19 },
  126. { 20, 20 }, { 20, 20 }, { 20, 21 }, { 21, 20 }, { 21, 21 }, { 21, 21 }, { 21, 22 }, { 22, 21 },
  127. { 22, 22 }, { 22, 22 }, { 22, 23 }, { 23, 22 }, { 23, 23 }, { 23, 23 }, { 23, 24 }, { 24, 23 },
  128. { 24, 24 }, { 24, 24 }, { 24, 25 }, { 25, 24 }, { 25, 25 }, { 25, 25 }, { 25, 26 }, { 26, 25 },
  129. { 26, 26 }, { 26, 26 }, { 26, 27 }, { 27, 26 }, { 24, 32 }, { 27, 27 }, { 27, 28 }, { 28, 27 },
  130. { 25, 33 }, { 28, 28 }, { 28, 29 }, { 29, 28 }, { 27, 32 }, { 29, 29 }, { 29, 30 }, { 30, 29 },
  131. { 28, 33 }, { 30, 30 }, { 30, 31 }, { 31, 30 }, { 30, 32 }, { 31, 31 }, { 31, 32 }, { 32, 30 },
  132. { 32, 31 }, { 33, 30 }, { 32, 32 }, { 32, 33 }, { 33, 32 }, { 34, 31 }, { 33, 33 }, { 33, 34 },
  133. { 34, 33 }, { 36, 30 }, { 34, 34 }, { 34, 35 }, { 35, 34 }, { 37, 31 }, { 35, 35 }, { 35, 36 },
  134. { 36, 35 }, { 36, 36 }, { 36, 36 }, { 36, 37 }, { 37, 36 }, { 37, 37 }, { 37, 37 }, { 37, 38 },
  135. { 38, 37 }, { 38, 38 }, { 38, 38 }, { 38, 39 }, { 39, 38 }, { 39, 39 }, { 39, 39 }, { 39, 40 },
  136. { 40, 39 }, { 40, 40 }, { 40, 40 }, { 40, 41 }, { 41, 40 }, { 41, 41 }, { 41, 41 }, { 41, 42 },
  137. { 42, 41 }, { 42, 42 }, { 42, 42 }, { 42, 43 }, { 43, 42 }, { 40, 48 }, { 43, 43 }, { 43, 44 },
  138. { 44, 43 }, { 41, 49 }, { 44, 44 }, { 44, 45 }, { 45, 44 }, { 43, 48 }, { 45, 45 }, { 45, 46 },
  139. { 46, 45 }, { 44, 49 }, { 46, 46 }, { 46, 47 }, { 47, 46 }, { 46, 48 }, { 47, 47 }, { 47, 48 },
  140. { 48, 46 }, { 48, 47 }, { 49, 46 }, { 48, 48 }, { 48, 49 }, { 49, 48 }, { 50, 47 }, { 49, 49 },
  141. { 49, 50 }, { 50, 49 }, { 52, 46 }, { 50, 50 }, { 50, 51 }, { 51, 50 }, { 53, 47 }, { 51, 51 },
  142. { 51, 52 }, { 52, 51 }, { 52, 52 }, { 52, 52 }, { 52, 53 }, { 53, 52 }, { 53, 53 }, { 53, 53 },
  143. { 53, 54 }, { 54, 53 }, { 54, 54 }, { 54, 54 }, { 54, 55 }, { 55, 54 }, { 55, 55 }, { 55, 55 },
  144. { 55, 56 }, { 56, 55 }, { 56, 56 }, { 56, 56 }, { 56, 57 }, { 57, 56 }, { 57, 57 }, { 57, 57 },
  145. { 57, 58 }, { 58, 57 }, { 58, 58 }, { 58, 58 }, { 58, 59 }, { 59, 58 }, { 59, 59 }, { 59, 59 },
  146. { 59, 60 }, { 60, 59 }, { 60, 60 }, { 60, 60 }, { 60, 61 }, { 61, 60 }, { 61, 61 }, { 61, 61 },
  147. { 61, 62 }, { 62, 61 }, { 62, 62 }, { 62, 62 }, { 62, 63 }, { 63, 62 }, { 63, 63 }, { 63, 63 },
  148. };
  149. static int stb__Mul8Bit(int a, int b)
  150. {
  151. int t = a*b + 128;
  152. return (t + (t >> 8)) >> 8;
  153. }
  154. static void stb__From16Bit(unsigned char *out, unsigned short v)
  155. {
  156. int rv = (v & 0xf800) >> 11;
  157. int gv = (v & 0x07e0) >> 5;
  158. int bv = (v & 0x001f) >> 0;
  159. // expand to 8 bits via bit replication
  160. out[0] = (rv * 33) >> 2;
  161. out[1] = (gv * 65) >> 4;
  162. out[2] = (bv * 33) >> 2;
  163. out[3] = 0;
  164. }
  165. static unsigned short stb__As16Bit(int r, int g, int b)
  166. {
  167. return (unsigned short)((stb__Mul8Bit(r,31) << 11) + (stb__Mul8Bit(g,63) << 5) + stb__Mul8Bit(b,31));
  168. }
  169. // linear interpolation at 1/3 point between a and b, using desired rounding type
  170. static int stb__Lerp13(int a, int b)
  171. {
  172. #ifdef STB_DXT_USE_ROUNDING_BIAS
  173. // with rounding bias
  174. return a + stb__Mul8Bit(b-a, 0x55);
  175. #else
  176. // without rounding bias
  177. // replace "/ 3" by "* 0xaaab) >> 17" if your compiler sucks or you really need every ounce of speed.
  178. return (2*a + b) / 3;
  179. #endif
  180. }
  181. // lerp RGB color
  182. static void stb__Lerp13RGB(unsigned char *out, unsigned char *p1, unsigned char *p2)
  183. {
  184. out[0] = (unsigned char)stb__Lerp13(p1[0], p2[0]);
  185. out[1] = (unsigned char)stb__Lerp13(p1[1], p2[1]);
  186. out[2] = (unsigned char)stb__Lerp13(p1[2], p2[2]);
  187. }
  188. /****************************************************************************/
  189. static void stb__EvalColors(unsigned char *color,unsigned short c0,unsigned short c1)
  190. {
  191. stb__From16Bit(color+ 0, c0);
  192. stb__From16Bit(color+ 4, c1);
  193. stb__Lerp13RGB(color+ 8, color+0, color+4);
  194. stb__Lerp13RGB(color+12, color+4, color+0);
  195. }
  196. // The color matching function
  197. static unsigned int stb__MatchColorsBlock(unsigned char *block, unsigned char *color)
  198. {
  199. unsigned int mask = 0;
  200. int dirr = color[0*4+0] - color[1*4+0];
  201. int dirg = color[0*4+1] - color[1*4+1];
  202. int dirb = color[0*4+2] - color[1*4+2];
  203. int dots[16];
  204. int stops[4];
  205. int i;
  206. int c0Point, halfPoint, c3Point;
  207. for(i=0;i<16;i++)
  208. dots[i] = block[i*4+0]*dirr + block[i*4+1]*dirg + block[i*4+2]*dirb;
  209. for(i=0;i<4;i++)
  210. stops[i] = color[i*4+0]*dirr + color[i*4+1]*dirg + color[i*4+2]*dirb;
  211. // think of the colors as arranged on a line; project point onto that line, then choose
  212. // next color out of available ones. we compute the crossover points for "best color in top
  213. // half"/"best in bottom half" and then the same inside that subinterval.
  214. //
  215. // relying on this 1d approximation isn't always optimal in terms of euclidean distance,
  216. // but it's very close and a lot faster.
  217. // http://cbloomrants.blogspot.com/2008/12/12-08-08-dxtc-summary.html
  218. c0Point = (stops[1] + stops[3]);
  219. halfPoint = (stops[3] + stops[2]);
  220. c3Point = (stops[2] + stops[0]);
  221. for (i=15;i>=0;i--) {
  222. int dot = dots[i]*2;
  223. mask <<= 2;
  224. if(dot < halfPoint)
  225. mask |= (dot < c0Point) ? 1 : 3;
  226. else
  227. mask |= (dot < c3Point) ? 2 : 0;
  228. }
  229. return mask;
  230. }
  231. // The color optimization function. (Clever code, part 1)
  232. static void stb__OptimizeColorsBlock(unsigned char *block, unsigned short *pmax16, unsigned short *pmin16)
  233. {
  234. int mind,maxd;
  235. unsigned char *minp, *maxp;
  236. double magn;
  237. int v_r,v_g,v_b;
  238. static const int nIterPower = 4;
  239. float covf[6],vfr,vfg,vfb;
  240. // determine color distribution
  241. int cov[6];
  242. int mu[3],min[3],max[3];
  243. int ch,i,iter;
  244. for(ch=0;ch<3;ch++)
  245. {
  246. const unsigned char *bp = ((const unsigned char *) block) + ch;
  247. int muv,minv,maxv;
  248. muv = minv = maxv = bp[0];
  249. for(i=4;i<64;i+=4)
  250. {
  251. muv += bp[i];
  252. if (bp[i] < minv) minv = bp[i];
  253. else if (bp[i] > maxv) maxv = bp[i];
  254. }
  255. mu[ch] = (muv + 8) >> 4;
  256. min[ch] = minv;
  257. max[ch] = maxv;
  258. }
  259. // determine covariance matrix
  260. for (i=0;i<6;i++)
  261. cov[i] = 0;
  262. for (i=0;i<16;i++)
  263. {
  264. int r = block[i*4+0] - mu[0];
  265. int g = block[i*4+1] - mu[1];
  266. int b = block[i*4+2] - mu[2];
  267. cov[0] += r*r;
  268. cov[1] += r*g;
  269. cov[2] += r*b;
  270. cov[3] += g*g;
  271. cov[4] += g*b;
  272. cov[5] += b*b;
  273. }
  274. // convert covariance matrix to float, find principal axis via power iter
  275. for(i=0;i<6;i++)
  276. covf[i] = cov[i] / 255.0f;
  277. vfr = (float) (max[0] - min[0]);
  278. vfg = (float) (max[1] - min[1]);
  279. vfb = (float) (max[2] - min[2]);
  280. for(iter=0;iter<nIterPower;iter++)
  281. {
  282. float r = vfr*covf[0] + vfg*covf[1] + vfb*covf[2];
  283. float g = vfr*covf[1] + vfg*covf[3] + vfb*covf[4];
  284. float b = vfr*covf[2] + vfg*covf[4] + vfb*covf[5];
  285. vfr = r;
  286. vfg = g;
  287. vfb = b;
  288. }
  289. magn = STBD_FABS(vfr);
  290. if (STBD_FABS(vfg) > magn) magn = STBD_FABS(vfg);
  291. if (STBD_FABS(vfb) > magn) magn = STBD_FABS(vfb);
  292. if(magn < 4.0f) { // too small, default to luminance
  293. v_r = 299; // JPEG YCbCr luma coefs, scaled by 1000.
  294. v_g = 587;
  295. v_b = 114;
  296. } else {
  297. magn = 512.0 / magn;
  298. v_r = (int) (vfr * magn);
  299. v_g = (int) (vfg * magn);
  300. v_b = (int) (vfb * magn);
  301. }
  302. minp = maxp = block;
  303. mind = maxd = block[0]*v_r + block[1]*v_g + block[2]*v_b;
  304. // Pick colors at extreme points
  305. for(i=1;i<16;i++)
  306. {
  307. int dot = block[i*4+0]*v_r + block[i*4+1]*v_g + block[i*4+2]*v_b;
  308. if (dot < mind) {
  309. mind = dot;
  310. minp = block+i*4;
  311. }
  312. if (dot > maxd) {
  313. maxd = dot;
  314. maxp = block+i*4;
  315. }
  316. }
  317. *pmax16 = stb__As16Bit(maxp[0],maxp[1],maxp[2]);
  318. *pmin16 = stb__As16Bit(minp[0],minp[1],minp[2]);
  319. }
  320. static const float stb__midpoints5[32] = {
  321. 0.015686f, 0.047059f, 0.078431f, 0.111765f, 0.145098f, 0.176471f, 0.207843f, 0.241176f, 0.274510f, 0.305882f, 0.337255f, 0.370588f, 0.403922f, 0.435294f, 0.466667f, 0.5f,
  322. 0.533333f, 0.564706f, 0.596078f, 0.629412f, 0.662745f, 0.694118f, 0.725490f, 0.758824f, 0.792157f, 0.823529f, 0.854902f, 0.888235f, 0.921569f, 0.952941f, 0.984314f, 1.0f
  323. };
  324. static const float stb__midpoints6[64] = {
  325. 0.007843f, 0.023529f, 0.039216f, 0.054902f, 0.070588f, 0.086275f, 0.101961f, 0.117647f, 0.133333f, 0.149020f, 0.164706f, 0.180392f, 0.196078f, 0.211765f, 0.227451f, 0.245098f,
  326. 0.262745f, 0.278431f, 0.294118f, 0.309804f, 0.325490f, 0.341176f, 0.356863f, 0.372549f, 0.388235f, 0.403922f, 0.419608f, 0.435294f, 0.450980f, 0.466667f, 0.482353f, 0.500000f,
  327. 0.517647f, 0.533333f, 0.549020f, 0.564706f, 0.580392f, 0.596078f, 0.611765f, 0.627451f, 0.643137f, 0.658824f, 0.674510f, 0.690196f, 0.705882f, 0.721569f, 0.737255f, 0.754902f,
  328. 0.772549f, 0.788235f, 0.803922f, 0.819608f, 0.835294f, 0.850980f, 0.866667f, 0.882353f, 0.898039f, 0.913725f, 0.929412f, 0.945098f, 0.960784f, 0.976471f, 0.992157f, 1.0f
  329. };
  330. static unsigned short stb__Quantize5(float x)
  331. {
  332. unsigned short q;
  333. x = x < 0 ? 0 : x > 1 ? 1 : x; // saturate
  334. q = (unsigned short)(x * 31);
  335. q += (x > stb__midpoints5[q]);
  336. return q;
  337. }
  338. static unsigned short stb__Quantize6(float x)
  339. {
  340. unsigned short q;
  341. x = x < 0 ? 0 : x > 1 ? 1 : x; // saturate
  342. q = (unsigned short)(x * 63);
  343. q += (x > stb__midpoints6[q]);
  344. return q;
  345. }
  346. // The refinement function. (Clever code, part 2)
  347. // Tries to optimize colors to suit block contents better.
  348. // (By solving a least squares system via normal equations+Cramer's rule)
  349. static int stb__RefineBlock(unsigned char *block, unsigned short *pmax16, unsigned short *pmin16, unsigned int mask)
  350. {
  351. static const int w1Tab[4] = { 3,0,2,1 };
  352. static const int prods[4] = { 0x090000,0x000900,0x040102,0x010402 };
  353. // ^some magic to save a lot of multiplies in the accumulating loop...
  354. // (precomputed products of weights for least squares system, accumulated inside one 32-bit register)
  355. float f;
  356. unsigned short oldMin, oldMax, min16, max16;
  357. int i, akku = 0, xx,xy,yy;
  358. int At1_r,At1_g,At1_b;
  359. int At2_r,At2_g,At2_b;
  360. unsigned int cm = mask;
  361. oldMin = *pmin16;
  362. oldMax = *pmax16;
  363. if((mask ^ (mask<<2)) < 4) // all pixels have the same index?
  364. {
  365. // yes, linear system would be singular; solve using optimal
  366. // single-color match on average color
  367. int r = 8, g = 8, b = 8;
  368. for (i=0;i<16;++i) {
  369. r += block[i*4+0];
  370. g += block[i*4+1];
  371. b += block[i*4+2];
  372. }
  373. r >>= 4; g >>= 4; b >>= 4;
  374. max16 = (stb__OMatch5[r][0]<<11) | (stb__OMatch6[g][0]<<5) | stb__OMatch5[b][0];
  375. min16 = (stb__OMatch5[r][1]<<11) | (stb__OMatch6[g][1]<<5) | stb__OMatch5[b][1];
  376. } else {
  377. At1_r = At1_g = At1_b = 0;
  378. At2_r = At2_g = At2_b = 0;
  379. for (i=0;i<16;++i,cm>>=2) {
  380. int step = cm&3;
  381. int w1 = w1Tab[step];
  382. int r = block[i*4+0];
  383. int g = block[i*4+1];
  384. int b = block[i*4+2];
  385. akku += prods[step];
  386. At1_r += w1*r;
  387. At1_g += w1*g;
  388. At1_b += w1*b;
  389. At2_r += r;
  390. At2_g += g;
  391. At2_b += b;
  392. }
  393. At2_r = 3*At2_r - At1_r;
  394. At2_g = 3*At2_g - At1_g;
  395. At2_b = 3*At2_b - At1_b;
  396. // extract solutions and decide solvability
  397. xx = akku >> 16;
  398. yy = (akku >> 8) & 0xff;
  399. xy = (akku >> 0) & 0xff;
  400. f = 3.0f / 255.0f / (xx*yy - xy*xy);
  401. max16 = stb__Quantize5((At1_r*yy - At2_r * xy) * f) << 11;
  402. max16 |= stb__Quantize6((At1_g*yy - At2_g * xy) * f) << 5;
  403. max16 |= stb__Quantize5((At1_b*yy - At2_b * xy) * f) << 0;
  404. min16 = stb__Quantize5((At2_r*xx - At1_r * xy) * f) << 11;
  405. min16 |= stb__Quantize6((At2_g*xx - At1_g * xy) * f) << 5;
  406. min16 |= stb__Quantize5((At2_b*xx - At1_b * xy) * f) << 0;
  407. }
  408. *pmin16 = min16;
  409. *pmax16 = max16;
  410. return oldMin != min16 || oldMax != max16;
  411. }
  412. // Color block compression
  413. static void stb__CompressColorBlock(unsigned char *dest, unsigned char *block, int mode)
  414. {
  415. unsigned int mask;
  416. int i;
  417. int refinecount;
  418. unsigned short max16, min16;
  419. unsigned char color[4*4];
  420. refinecount = (mode & STB_DXT_HIGHQUAL) ? 2 : 1;
  421. // check if block is constant
  422. for (i=1;i<16;i++)
  423. if (((unsigned int *) block)[i] != ((unsigned int *) block)[0])
  424. break;
  425. if(i == 16) { // constant color
  426. int r = block[0], g = block[1], b = block[2];
  427. mask = 0xaaaaaaaa;
  428. max16 = (stb__OMatch5[r][0]<<11) | (stb__OMatch6[g][0]<<5) | stb__OMatch5[b][0];
  429. min16 = (stb__OMatch5[r][1]<<11) | (stb__OMatch6[g][1]<<5) | stb__OMatch5[b][1];
  430. } else {
  431. // first step: PCA+map along principal axis
  432. stb__OptimizeColorsBlock(block,&max16,&min16);
  433. if (max16 != min16) {
  434. stb__EvalColors(color,max16,min16);
  435. mask = stb__MatchColorsBlock(block,color);
  436. } else
  437. mask = 0;
  438. // third step: refine (multiple times if requested)
  439. for (i=0;i<refinecount;i++) {
  440. unsigned int lastmask = mask;
  441. if (stb__RefineBlock(block,&max16,&min16,mask)) {
  442. if (max16 != min16) {
  443. stb__EvalColors(color,max16,min16);
  444. mask = stb__MatchColorsBlock(block,color);
  445. } else {
  446. mask = 0;
  447. break;
  448. }
  449. }
  450. if(mask == lastmask)
  451. break;
  452. }
  453. }
  454. // write the color block
  455. if(max16 < min16)
  456. {
  457. unsigned short t = min16;
  458. min16 = max16;
  459. max16 = t;
  460. mask ^= 0x55555555;
  461. }
  462. dest[0] = (unsigned char) (max16);
  463. dest[1] = (unsigned char) (max16 >> 8);
  464. dest[2] = (unsigned char) (min16);
  465. dest[3] = (unsigned char) (min16 >> 8);
  466. dest[4] = (unsigned char) (mask);
  467. dest[5] = (unsigned char) (mask >> 8);
  468. dest[6] = (unsigned char) (mask >> 16);
  469. dest[7] = (unsigned char) (mask >> 24);
  470. }
  471. // Alpha block compression (this is easy for a change)
  472. static void stb__CompressAlphaBlock(unsigned char *dest,unsigned char *src, int stride)
  473. {
  474. int i,dist,bias,dist4,dist2,bits,mask;
  475. // find min/max color
  476. int mn,mx;
  477. mn = mx = src[0];
  478. for (i=1;i<16;i++)
  479. {
  480. if (src[i*stride] < mn) mn = src[i*stride];
  481. else if (src[i*stride] > mx) mx = src[i*stride];
  482. }
  483. // encode them
  484. dest[0] = (unsigned char)mx;
  485. dest[1] = (unsigned char)mn;
  486. dest += 2;
  487. // determine bias and emit color indices
  488. // given the choice of mx/mn, these indices are optimal:
  489. // http://fgiesen.wordpress.com/2009/12/15/dxt5-alpha-block-index-determination/
  490. dist = mx-mn;
  491. dist4 = dist*4;
  492. dist2 = dist*2;
  493. bias = (dist < 8) ? (dist - 1) : (dist/2 + 2);
  494. bias -= mn * 7;
  495. bits = 0,mask=0;
  496. for (i=0;i<16;i++) {
  497. int a = src[i*stride]*7 + bias;
  498. int ind,t;
  499. // select index. this is a "linear scale" lerp factor between 0 (val=min) and 7 (val=max).
  500. t = (a >= dist4) ? -1 : 0; ind = t & 4; a -= dist4 & t;
  501. t = (a >= dist2) ? -1 : 0; ind += t & 2; a -= dist2 & t;
  502. ind += (a >= dist);
  503. // turn linear scale into DXT index (0/1 are extremal pts)
  504. ind = -ind & 7;
  505. ind ^= (2 > ind);
  506. // write index
  507. mask |= ind << bits;
  508. if((bits += 3) >= 8) {
  509. *dest++ = (unsigned char)mask;
  510. mask >>= 8;
  511. bits -= 8;
  512. }
  513. }
  514. }
  515. void stb_compress_dxt_block(unsigned char *dest, const unsigned char *src, int alpha, int mode)
  516. {
  517. unsigned char data[16][4];
  518. if (alpha) {
  519. int i;
  520. stb__CompressAlphaBlock(dest,(unsigned char*) src+3, 4);
  521. dest += 8;
  522. // make a new copy of the data in which alpha is opaque,
  523. // because code uses a fast test for color constancy
  524. memcpy(data, src, 4*16);
  525. for (i=0; i < 16; ++i)
  526. data[i][3] = 255;
  527. src = &data[0][0];
  528. }
  529. stb__CompressColorBlock(dest,(unsigned char*) src,mode);
  530. }
  531. void stb_compress_bc4_block(unsigned char *dest, const unsigned char *src)
  532. {
  533. stb__CompressAlphaBlock(dest,(unsigned char*) src, 1);
  534. }
  535. void stb_compress_bc5_block(unsigned char *dest, const unsigned char *src)
  536. {
  537. stb__CompressAlphaBlock(dest,(unsigned char*) src,2);
  538. stb__CompressAlphaBlock(dest + 8,(unsigned char*) src+1,2);
  539. }
  540. #endif // STB_DXT_IMPLEMENTATION
  541. // Compile with STB_DXT_IMPLEMENTATION and STB_DXT_GENERATE_TABLES
  542. // defined to generate the tables above.
  543. #ifdef STB_DXT_GENERATE_TABLES
  544. #include <stdio.h>
  545. int main()
  546. {
  547. int i, j;
  548. const char *omatch_names[] = { "stb__OMatch5", "stb__OMatch6" };
  549. int dequant_mults[2] = { 33*4, 65 }; // .4 fixed-point dequant multipliers
  550. // optimal endpoint tables
  551. for (i = 0; i < 2; ++i) {
  552. int dequant = dequant_mults[i];
  553. int size = i ? 64 : 32;
  554. printf("static const unsigned char %s[256][2] = {\n", omatch_names[i]);
  555. for (int j = 0; j < 256; ++j) {
  556. int mn, mx;
  557. int best_mn = 0, best_mx = 0;
  558. int best_err = 256 * 100;
  559. for (mn=0;mn<size;mn++) {
  560. for (mx=0;mx<size;mx++) {
  561. int mine = (mn * dequant) >> 4;
  562. int maxe = (mx * dequant) >> 4;
  563. int err = abs(stb__Lerp13(maxe, mine) - j) * 100;
  564. // DX10 spec says that interpolation must be within 3% of "correct" result,
  565. // add this as error term. Normally we'd expect a random distribution of
  566. // +-1.5% error, but nowhere in the spec does it say that the error has to be
  567. // unbiased - better safe than sorry.
  568. err += abs(maxe - mine) * 3;
  569. if(err < best_err) {
  570. best_mn = mn;
  571. best_mx = mx;
  572. best_err = err;
  573. }
  574. }
  575. }
  576. if ((j % 8) == 0) printf(" "); // 2 spaces, third is done below
  577. printf(" { %2d, %2d },", best_mx, best_mn);
  578. if ((j % 8) == 7) printf("\n");
  579. }
  580. printf("};\n");
  581. }
  582. return 0;
  583. }
  584. #endif
  585. /*
  586. ------------------------------------------------------------------------------
  587. This software is available under 2 licenses -- choose whichever you prefer.
  588. ------------------------------------------------------------------------------
  589. ALTERNATIVE A - MIT License
  590. Copyright (c) 2017 Sean Barrett
  591. Permission is hereby granted, free of charge, to any person obtaining a copy of
  592. this software and associated documentation files (the "Software"), to deal in
  593. the Software without restriction, including without limitation the rights to
  594. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  595. of the Software, and to permit persons to whom the Software is furnished to do
  596. so, subject to the following conditions:
  597. The above copyright notice and this permission notice shall be included in all
  598. copies or substantial portions of the Software.
  599. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  600. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  601. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  602. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  603. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  604. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  605. SOFTWARE.
  606. ------------------------------------------------------------------------------
  607. ALTERNATIVE B - Public Domain (www.unlicense.org)
  608. This is free and unencumbered software released into the public domain.
  609. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
  610. software, either in source code form or as a compiled binary, for any purpose,
  611. commercial or non-commercial, and by any means.
  612. In jurisdictions that recognize copyright laws, the author or authors of this
  613. software dedicate any and all copyright interest in the software to the public
  614. domain. We make this dedication for the benefit of the public at large and to
  615. the detriment of our heirs and successors. We intend this dedication to be an
  616. overt act of relinquishment in perpetuity of all present and future rights to
  617. this software under copyright law.
  618. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  619. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  620. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  621. AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  622. ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  623. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  624. ------------------------------------------------------------------------------
  625. */