SDL_blit_N.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:53k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_blit_N.c,v 1.4 2002/04/22 21:38:03 wmay Exp $";
  21. #endif
  22. #include <stdio.h>
  23. #include "SDL_types.h"
  24. #include "SDL_video.h"
  25. #include "SDL_blit.h"
  26. #include "SDL_byteorder.h"
  27. /* Function to check the CPU flags */
  28. #define MMX_CPU 0x800000
  29. #ifdef USE_ASMBLIT
  30. #define CPU_Flags() Hermes_X86_CPU()
  31. #else
  32. #define CPU_Flags() 0L
  33. #endif
  34. /* Functions to blit from N-bit surfaces to other surfaces */
  35. #ifdef USE_ASMBLIT
  36. /* Heheheh, we coerce Hermes into using SDL blit information */
  37. #define X86_ASSEMBLER
  38. #define HermesConverterInterface SDL_BlitInfo
  39. #define HermesClearInterface void
  40. #define STACKCALL
  41. typedef Uint32 int32;
  42. #include "HeadMMX.h"
  43. #include "HeadX86.h"
  44. #else
  45. /* This is now endian dependent */
  46. #if ( SDL_BYTEORDER == SDL_LIL_ENDIAN )
  47. #define HI 1
  48. #define LO 0
  49. #else /* ( SDL_BYTEORDER == SDL_BIG_ENDIAN ) */
  50. #define HI 0
  51. #define LO 1
  52. #endif
  53. /* Special optimized blit for RGB 8-8-8 --> RGB 3-3-2 */
  54. #define RGB888_RGB332(dst, src) { 
  55. dst = (((src)&0x00E00000)>>16)| 
  56.       (((src)&0x0000E000)>>11)| 
  57.       (((src)&0x000000C0)>>6); 
  58. }
  59. static void Blit_RGB888_index8(SDL_BlitInfo *info)
  60. {
  61. #ifndef USE_DUFFS_LOOP
  62. int c;
  63. #endif
  64. int width, height;
  65. Uint32 *src;
  66. const Uint8 *map;
  67. Uint8 *dst;
  68. int srcskip, dstskip;
  69. /* Set up some basic variables */
  70. width = info->d_width;
  71. height = info->d_height;
  72. src = (Uint32 *)info->s_pixels;
  73. srcskip = info->s_skip/4;
  74. dst = info->d_pixels;
  75. dstskip = info->d_skip;
  76. map = info->table;
  77. if ( map == NULL ) {
  78. while ( height-- ) {
  79. #ifdef USE_DUFFS_LOOP
  80. DUFFS_LOOP(
  81. RGB888_RGB332(*dst++, *src);
  82. , width);
  83. #else
  84. for ( c=width/4; c; --c ) {
  85. /* Pack RGB into 8bit pixel */
  86. ++src;
  87. RGB888_RGB332(*dst++, *src);
  88. ++src;
  89. RGB888_RGB332(*dst++, *src);
  90. ++src;
  91. RGB888_RGB332(*dst++, *src);
  92. ++src;
  93. }
  94. switch ( width & 3 ) {
  95. case 3:
  96. RGB888_RGB332(*dst++, *src);
  97. ++src;
  98. case 2:
  99. RGB888_RGB332(*dst++, *src);
  100. ++src;
  101. case 1:
  102. RGB888_RGB332(*dst++, *src);
  103. ++src;
  104. }
  105. #endif /* USE_DUFFS_LOOP */
  106. src += srcskip;
  107. dst += dstskip;
  108. }
  109. } else {
  110. int pixel;
  111. while ( height-- ) {
  112. #ifdef USE_DUFFS_LOOP
  113. DUFFS_LOOP(
  114. RGB888_RGB332(pixel, *src);
  115. *dst++ = map[pixel];
  116. ++src;
  117. , width);
  118. #else
  119. for ( c=width/4; c; --c ) {
  120. /* Pack RGB into 8bit pixel */
  121. RGB888_RGB332(pixel, *src);
  122. *dst++ = map[pixel];
  123. ++src;
  124. RGB888_RGB332(pixel, *src);
  125. *dst++ = map[pixel];
  126. ++src;
  127. RGB888_RGB332(pixel, *src);
  128. *dst++ = map[pixel];
  129. ++src;
  130. RGB888_RGB332(pixel, *src);
  131. *dst++ = map[pixel];
  132. ++src;
  133. }
  134. switch ( width & 3 ) {
  135. case 3:
  136. RGB888_RGB332(pixel, *src);
  137. *dst++ = map[pixel];
  138. ++src;
  139. case 2:
  140. RGB888_RGB332(pixel, *src);
  141. *dst++ = map[pixel];
  142. ++src;
  143. case 1:
  144. RGB888_RGB332(pixel, *src);
  145. *dst++ = map[pixel];
  146. ++src;
  147. }
  148. #endif /* USE_DUFFS_LOOP */
  149. src += srcskip;
  150. dst += dstskip;
  151. }
  152. }
  153. }
  154. /* Special optimized blit for RGB 8-8-8 --> RGB 5-5-5 */
  155. #define RGB888_RGB555(dst, src) { 
  156. *(Uint16 *)(dst) = (((*src)&0x00F80000)>>9)| 
  157.                    (((*src)&0x0000F800)>>6)| 
  158.                    (((*src)&0x000000F8)>>3); 
  159. }
  160. #define RGB888_RGB555_TWO(dst, src) { 
  161. *(Uint32 *)(dst) = (((((src[HI])&0x00F80000)>>9)| 
  162.                      (((src[HI])&0x0000F800)>>6)| 
  163.                      (((src[HI])&0x000000F8)>>3))<<16)| 
  164.                      (((src[LO])&0x00F80000)>>9)| 
  165.                      (((src[LO])&0x0000F800)>>6)| 
  166.                      (((src[LO])&0x000000F8)>>3); 
  167. }
  168. static void Blit_RGB888_RGB555(SDL_BlitInfo *info)
  169. {
  170. #ifndef USE_DUFFS_LOOP
  171. int c;
  172. #endif
  173. int width, height;
  174. Uint32 *src;
  175. Uint16 *dst;
  176. int srcskip, dstskip;
  177. /* Set up some basic variables */
  178. width = info->d_width;
  179. height = info->d_height;
  180. src = (Uint32 *)info->s_pixels;
  181. srcskip = info->s_skip/4;
  182. dst = (Uint16 *)info->d_pixels;
  183. dstskip = info->d_skip/2;
  184. #ifdef USE_DUFFS_LOOP
  185. while ( height-- ) {
  186. DUFFS_LOOP(
  187. RGB888_RGB555(dst, src);
  188. ++src;
  189. ++dst;
  190. , width);
  191. src += srcskip;
  192. dst += dstskip;
  193. }
  194. #else
  195. /* Memory align at 4-byte boundary, if necessary */
  196. if ( (long)dst & 0x03 ) {
  197. /* Don't do anything if width is 0 */
  198. if ( width == 0 ) {
  199. return;
  200. }
  201. --width;
  202. while ( height-- ) {
  203. /* Perform copy alignment */
  204. RGB888_RGB555(dst, src);
  205. ++src;
  206. ++dst;
  207. /* Copy in 4 pixel chunks */
  208. for ( c=width/4; c; --c ) {
  209. RGB888_RGB555_TWO(dst, src);
  210. src += 2;
  211. dst += 2;
  212. RGB888_RGB555_TWO(dst, src);
  213. src += 2;
  214. dst += 2;
  215. }
  216. /* Get any leftovers */
  217. switch (width & 3) {
  218. case 3:
  219. RGB888_RGB555(dst, src);
  220. ++src;
  221. ++dst;
  222. case 2:
  223. RGB888_RGB555_TWO(dst, src);
  224. src += 2;
  225. dst += 2;
  226. break;
  227. case 1:
  228. RGB888_RGB555(dst, src);
  229. ++src;
  230. ++dst;
  231. break;
  232. }
  233. src += srcskip;
  234. dst += dstskip;
  235. }
  236. } else { 
  237. while ( height-- ) {
  238. /* Copy in 4 pixel chunks */
  239. for ( c=width/4; c; --c ) {
  240. RGB888_RGB555_TWO(dst, src);
  241. src += 2;
  242. dst += 2;
  243. RGB888_RGB555_TWO(dst, src);
  244. src += 2;
  245. dst += 2;
  246. }
  247. /* Get any leftovers */
  248. switch (width & 3) {
  249. case 3:
  250. RGB888_RGB555(dst, src);
  251. ++src;
  252. ++dst;
  253. case 2:
  254. RGB888_RGB555_TWO(dst, src);
  255. src += 2;
  256. dst += 2;
  257. break;
  258. case 1:
  259. RGB888_RGB555(dst, src);
  260. ++src;
  261. ++dst;
  262. break;
  263. }
  264. src += srcskip;
  265. dst += dstskip;
  266. }
  267. }
  268. #endif /* USE_DUFFS_LOOP */
  269. }
  270. /* Special optimized blit for RGB 8-8-8 --> RGB 5-6-5 */
  271. #define RGB888_RGB565(dst, src) { 
  272. *(Uint16 *)(dst) = (((*src)&0x00F80000)>>8)| 
  273.                    (((*src)&0x0000FC00)>>5)| 
  274.                    (((*src)&0x000000F8)>>3); 
  275. }
  276. #define RGB888_RGB565_TWO(dst, src) { 
  277. *(Uint32 *)(dst) = (((((src[HI])&0x00F80000)>>8)| 
  278.                      (((src[HI])&0x0000FC00)>>5)| 
  279.                      (((src[HI])&0x000000F8)>>3))<<16)| 
  280.                      (((src[LO])&0x00F80000)>>8)| 
  281.                      (((src[LO])&0x0000FC00)>>5)| 
  282.                      (((src[LO])&0x000000F8)>>3); 
  283. }
  284. static void Blit_RGB888_RGB565(SDL_BlitInfo *info)
  285. {
  286. #ifndef USE_DUFFS_LOOP
  287. int c;
  288. #endif
  289. int width, height;
  290. Uint32 *src;
  291. Uint16 *dst;
  292. int srcskip, dstskip;
  293. /* Set up some basic variables */
  294. width = info->d_width;
  295. height = info->d_height;
  296. src = (Uint32 *)info->s_pixels;
  297. srcskip = info->s_skip/4;
  298. dst = (Uint16 *)info->d_pixels;
  299. dstskip = info->d_skip/2;
  300. #ifdef USE_DUFFS_LOOP
  301. while ( height-- ) {
  302. DUFFS_LOOP(
  303. RGB888_RGB565(dst, src);
  304. ++src;
  305. ++dst;
  306. , width);
  307. src += srcskip;
  308. dst += dstskip;
  309. }
  310. #else
  311. /* Memory align at 4-byte boundary, if necessary */
  312. if ( (long)dst & 0x03 ) {
  313. /* Don't do anything if width is 0 */
  314. if ( width == 0 ) {
  315. return;
  316. }
  317. --width;
  318. while ( height-- ) {
  319. /* Perform copy alignment */
  320. RGB888_RGB565(dst, src);
  321. ++src;
  322. ++dst;
  323. /* Copy in 4 pixel chunks */
  324. for ( c=width/4; c; --c ) {
  325. RGB888_RGB565_TWO(dst, src);
  326. src += 2;
  327. dst += 2;
  328. RGB888_RGB565_TWO(dst, src);
  329. src += 2;
  330. dst += 2;
  331. }
  332. /* Get any leftovers */
  333. switch (width & 3) {
  334. case 3:
  335. RGB888_RGB565(dst, src);
  336. ++src;
  337. ++dst;
  338. case 2:
  339. RGB888_RGB565_TWO(dst, src);
  340. src += 2;
  341. dst += 2;
  342. break;
  343. case 1:
  344. RGB888_RGB565(dst, src);
  345. ++src;
  346. ++dst;
  347. break;
  348. }
  349. src += srcskip;
  350. dst += dstskip;
  351. }
  352. } else { 
  353. while ( height-- ) {
  354. /* Copy in 4 pixel chunks */
  355. for ( c=width/4; c; --c ) {
  356. RGB888_RGB565_TWO(dst, src);
  357. src += 2;
  358. dst += 2;
  359. RGB888_RGB565_TWO(dst, src);
  360. src += 2;
  361. dst += 2;
  362. }
  363. /* Get any leftovers */
  364. switch (width & 3) {
  365. case 3:
  366. RGB888_RGB565(dst, src);
  367. ++src;
  368. ++dst;
  369. case 2:
  370. RGB888_RGB565_TWO(dst, src);
  371. src += 2;
  372. dst += 2;
  373. break;
  374. case 1:
  375. RGB888_RGB565(dst, src);
  376. ++src;
  377. ++dst;
  378. break;
  379. }
  380. src += srcskip;
  381. dst += dstskip;
  382. }
  383. }
  384. #endif /* USE_DUFFS_LOOP */
  385. }
  386. #endif /* USE_ASMBLIT */
  387. /* Special optimized blit for RGB 5-6-5 --> 32-bit RGB surfaces */
  388. #if ( SDL_BYTEORDER == SDL_LIL_ENDIAN )
  389. #define RGB565_32(dst, src, map) (map[src[0]*2] + map[src[1]*2+1])
  390. #else /* ( SDL_BYTEORDER == SDL_BIG_ENDIAN ) */
  391. #define RGB565_32(dst, src, map) (map[src[1]*2] + map[src[0]*2+1])
  392. #endif
  393. static void Blit_RGB565_32(SDL_BlitInfo *info, const Uint32 *map)
  394. {
  395. #ifndef USE_DUFFS_LOOP
  396. int c;
  397. #endif
  398. int width, height;
  399. Uint8 *src;
  400. Uint32 *dst;
  401. int srcskip, dstskip;
  402. /* Set up some basic variables */
  403. width = info->d_width;
  404. height = info->d_height;
  405. src = (Uint8 *)info->s_pixels;
  406. srcskip = info->s_skip;
  407. dst = (Uint32 *)info->d_pixels;
  408. dstskip = info->d_skip/4;
  409. #ifdef USE_DUFFS_LOOP
  410. while ( height-- ) {
  411. DUFFS_LOOP(
  412. {
  413. *dst++ = RGB565_32(dst, src, map);
  414. src += 2;
  415. },
  416. width);
  417. src += srcskip;
  418. dst += dstskip;
  419. }
  420. #else
  421. while ( height-- ) {
  422. /* Copy in 4 pixel chunks */
  423. for ( c=width/4; c; --c ) {
  424. *dst++ = RGB565_32(dst, src, map);
  425. src += 2;
  426. *dst++ = RGB565_32(dst, src, map);
  427. src += 2;
  428. *dst++ = RGB565_32(dst, src, map);
  429. src += 2;
  430. *dst++ = RGB565_32(dst, src, map);
  431. src += 2;
  432. }
  433. /* Get any leftovers */
  434. switch (width & 3) {
  435. case 3:
  436. *dst++ = RGB565_32(dst, src, map);
  437. src += 2;
  438. case 2:
  439. *dst++ = RGB565_32(dst, src, map);
  440. src += 2;
  441. case 1:
  442. *dst++ = RGB565_32(dst, src, map);
  443. src += 2;
  444. break;
  445. }
  446. src += srcskip;
  447. dst += dstskip;
  448. }
  449. #endif /* USE_DUFFS_LOOP */
  450. }
  451. /* Special optimized blit for RGB 5-6-5 --> ARGB 8-8-8-8 */
  452. static const Uint32 RGB565_ARGB8888_LUT[512] = {
  453. 0x00000000, 0xff000000, 0x00000008, 0xff002000,
  454. 0x00000010, 0xff004000, 0x00000018, 0xff006100,
  455. 0x00000020, 0xff008100, 0x00000029, 0xff00a100,
  456. 0x00000031, 0xff00c200, 0x00000039, 0xff00e200,
  457. 0x00000041, 0xff080000, 0x0000004a, 0xff082000,
  458. 0x00000052, 0xff084000, 0x0000005a, 0xff086100,
  459. 0x00000062, 0xff088100, 0x0000006a, 0xff08a100,
  460. 0x00000073, 0xff08c200, 0x0000007b, 0xff08e200,
  461. 0x00000083, 0xff100000, 0x0000008b, 0xff102000,
  462. 0x00000094, 0xff104000, 0x0000009c, 0xff106100,
  463. 0x000000a4, 0xff108100, 0x000000ac, 0xff10a100,
  464. 0x000000b4, 0xff10c200, 0x000000bd, 0xff10e200,
  465. 0x000000c5, 0xff180000, 0x000000cd, 0xff182000,
  466. 0x000000d5, 0xff184000, 0x000000de, 0xff186100,
  467. 0x000000e6, 0xff188100, 0x000000ee, 0xff18a100,
  468. 0x000000f6, 0xff18c200, 0x000000ff, 0xff18e200,
  469. 0x00000400, 0xff200000, 0x00000408, 0xff202000,
  470. 0x00000410, 0xff204000, 0x00000418, 0xff206100,
  471. 0x00000420, 0xff208100, 0x00000429, 0xff20a100,
  472. 0x00000431, 0xff20c200, 0x00000439, 0xff20e200,
  473. 0x00000441, 0xff290000, 0x0000044a, 0xff292000,
  474. 0x00000452, 0xff294000, 0x0000045a, 0xff296100,
  475. 0x00000462, 0xff298100, 0x0000046a, 0xff29a100,
  476. 0x00000473, 0xff29c200, 0x0000047b, 0xff29e200,
  477. 0x00000483, 0xff310000, 0x0000048b, 0xff312000,
  478. 0x00000494, 0xff314000, 0x0000049c, 0xff316100,
  479. 0x000004a4, 0xff318100, 0x000004ac, 0xff31a100,
  480. 0x000004b4, 0xff31c200, 0x000004bd, 0xff31e200,
  481. 0x000004c5, 0xff390000, 0x000004cd, 0xff392000,
  482. 0x000004d5, 0xff394000, 0x000004de, 0xff396100,
  483. 0x000004e6, 0xff398100, 0x000004ee, 0xff39a100,
  484. 0x000004f6, 0xff39c200, 0x000004ff, 0xff39e200,
  485. 0x00000800, 0xff410000, 0x00000808, 0xff412000,
  486. 0x00000810, 0xff414000, 0x00000818, 0xff416100,
  487. 0x00000820, 0xff418100, 0x00000829, 0xff41a100,
  488. 0x00000831, 0xff41c200, 0x00000839, 0xff41e200,
  489. 0x00000841, 0xff4a0000, 0x0000084a, 0xff4a2000,
  490. 0x00000852, 0xff4a4000, 0x0000085a, 0xff4a6100,
  491. 0x00000862, 0xff4a8100, 0x0000086a, 0xff4aa100,
  492. 0x00000873, 0xff4ac200, 0x0000087b, 0xff4ae200,
  493. 0x00000883, 0xff520000, 0x0000088b, 0xff522000,
  494. 0x00000894, 0xff524000, 0x0000089c, 0xff526100,
  495. 0x000008a4, 0xff528100, 0x000008ac, 0xff52a100,
  496. 0x000008b4, 0xff52c200, 0x000008bd, 0xff52e200,
  497. 0x000008c5, 0xff5a0000, 0x000008cd, 0xff5a2000,
  498. 0x000008d5, 0xff5a4000, 0x000008de, 0xff5a6100,
  499. 0x000008e6, 0xff5a8100, 0x000008ee, 0xff5aa100,
  500. 0x000008f6, 0xff5ac200, 0x000008ff, 0xff5ae200,
  501. 0x00000c00, 0xff620000, 0x00000c08, 0xff622000,
  502. 0x00000c10, 0xff624000, 0x00000c18, 0xff626100,
  503. 0x00000c20, 0xff628100, 0x00000c29, 0xff62a100,
  504. 0x00000c31, 0xff62c200, 0x00000c39, 0xff62e200,
  505. 0x00000c41, 0xff6a0000, 0x00000c4a, 0xff6a2000,
  506. 0x00000c52, 0xff6a4000, 0x00000c5a, 0xff6a6100,
  507. 0x00000c62, 0xff6a8100, 0x00000c6a, 0xff6aa100,
  508. 0x00000c73, 0xff6ac200, 0x00000c7b, 0xff6ae200,
  509. 0x00000c83, 0xff730000, 0x00000c8b, 0xff732000,
  510. 0x00000c94, 0xff734000, 0x00000c9c, 0xff736100,
  511. 0x00000ca4, 0xff738100, 0x00000cac, 0xff73a100,
  512. 0x00000cb4, 0xff73c200, 0x00000cbd, 0xff73e200,
  513. 0x00000cc5, 0xff7b0000, 0x00000ccd, 0xff7b2000,
  514. 0x00000cd5, 0xff7b4000, 0x00000cde, 0xff7b6100,
  515. 0x00000ce6, 0xff7b8100, 0x00000cee, 0xff7ba100,
  516. 0x00000cf6, 0xff7bc200, 0x00000cff, 0xff7be200,
  517. 0x00001000, 0xff830000, 0x00001008, 0xff832000,
  518. 0x00001010, 0xff834000, 0x00001018, 0xff836100,
  519. 0x00001020, 0xff838100, 0x00001029, 0xff83a100,
  520. 0x00001031, 0xff83c200, 0x00001039, 0xff83e200,
  521. 0x00001041, 0xff8b0000, 0x0000104a, 0xff8b2000,
  522. 0x00001052, 0xff8b4000, 0x0000105a, 0xff8b6100,
  523. 0x00001062, 0xff8b8100, 0x0000106a, 0xff8ba100,
  524. 0x00001073, 0xff8bc200, 0x0000107b, 0xff8be200,
  525. 0x00001083, 0xff940000, 0x0000108b, 0xff942000,
  526. 0x00001094, 0xff944000, 0x0000109c, 0xff946100,
  527. 0x000010a4, 0xff948100, 0x000010ac, 0xff94a100,
  528. 0x000010b4, 0xff94c200, 0x000010bd, 0xff94e200,
  529. 0x000010c5, 0xff9c0000, 0x000010cd, 0xff9c2000,
  530. 0x000010d5, 0xff9c4000, 0x000010de, 0xff9c6100,
  531. 0x000010e6, 0xff9c8100, 0x000010ee, 0xff9ca100,
  532. 0x000010f6, 0xff9cc200, 0x000010ff, 0xff9ce200,
  533. 0x00001400, 0xffa40000, 0x00001408, 0xffa42000,
  534. 0x00001410, 0xffa44000, 0x00001418, 0xffa46100,
  535. 0x00001420, 0xffa48100, 0x00001429, 0xffa4a100,
  536. 0x00001431, 0xffa4c200, 0x00001439, 0xffa4e200,
  537. 0x00001441, 0xffac0000, 0x0000144a, 0xffac2000,
  538. 0x00001452, 0xffac4000, 0x0000145a, 0xffac6100,
  539. 0x00001462, 0xffac8100, 0x0000146a, 0xffaca100,
  540. 0x00001473, 0xffacc200, 0x0000147b, 0xfface200,
  541. 0x00001483, 0xffb40000, 0x0000148b, 0xffb42000,
  542. 0x00001494, 0xffb44000, 0x0000149c, 0xffb46100,
  543. 0x000014a4, 0xffb48100, 0x000014ac, 0xffb4a100,
  544. 0x000014b4, 0xffb4c200, 0x000014bd, 0xffb4e200,
  545. 0x000014c5, 0xffbd0000, 0x000014cd, 0xffbd2000,
  546. 0x000014d5, 0xffbd4000, 0x000014de, 0xffbd6100,
  547. 0x000014e6, 0xffbd8100, 0x000014ee, 0xffbda100,
  548. 0x000014f6, 0xffbdc200, 0x000014ff, 0xffbde200,
  549. 0x00001800, 0xffc50000, 0x00001808, 0xffc52000,
  550. 0x00001810, 0xffc54000, 0x00001818, 0xffc56100,
  551. 0x00001820, 0xffc58100, 0x00001829, 0xffc5a100,
  552. 0x00001831, 0xffc5c200, 0x00001839, 0xffc5e200,
  553. 0x00001841, 0xffcd0000, 0x0000184a, 0xffcd2000,
  554. 0x00001852, 0xffcd4000, 0x0000185a, 0xffcd6100,
  555. 0x00001862, 0xffcd8100, 0x0000186a, 0xffcda100,
  556. 0x00001873, 0xffcdc200, 0x0000187b, 0xffcde200,
  557. 0x00001883, 0xffd50000, 0x0000188b, 0xffd52000,
  558. 0x00001894, 0xffd54000, 0x0000189c, 0xffd56100,
  559. 0x000018a4, 0xffd58100, 0x000018ac, 0xffd5a100,
  560. 0x000018b4, 0xffd5c200, 0x000018bd, 0xffd5e200,
  561. 0x000018c5, 0xffde0000, 0x000018cd, 0xffde2000,
  562. 0x000018d5, 0xffde4000, 0x000018de, 0xffde6100,
  563. 0x000018e6, 0xffde8100, 0x000018ee, 0xffdea100,
  564. 0x000018f6, 0xffdec200, 0x000018ff, 0xffdee200,
  565. 0x00001c00, 0xffe60000, 0x00001c08, 0xffe62000,
  566. 0x00001c10, 0xffe64000, 0x00001c18, 0xffe66100,
  567. 0x00001c20, 0xffe68100, 0x00001c29, 0xffe6a100,
  568. 0x00001c31, 0xffe6c200, 0x00001c39, 0xffe6e200,
  569. 0x00001c41, 0xffee0000, 0x00001c4a, 0xffee2000,
  570. 0x00001c52, 0xffee4000, 0x00001c5a, 0xffee6100,
  571. 0x00001c62, 0xffee8100, 0x00001c6a, 0xffeea100,
  572. 0x00001c73, 0xffeec200, 0x00001c7b, 0xffeee200,
  573. 0x00001c83, 0xfff60000, 0x00001c8b, 0xfff62000,
  574. 0x00001c94, 0xfff64000, 0x00001c9c, 0xfff66100,
  575. 0x00001ca4, 0xfff68100, 0x00001cac, 0xfff6a100,
  576. 0x00001cb4, 0xfff6c200, 0x00001cbd, 0xfff6e200,
  577. 0x00001cc5, 0xffff0000, 0x00001ccd, 0xffff2000,
  578. 0x00001cd5, 0xffff4000, 0x00001cde, 0xffff6100,
  579. 0x00001ce6, 0xffff8100, 0x00001cee, 0xffffa100,
  580. 0x00001cf6, 0xffffc200, 0x00001cff, 0xffffe200
  581. };
  582. static void Blit_RGB565_ARGB8888(SDL_BlitInfo *info)
  583. {
  584.     Blit_RGB565_32(info, RGB565_ARGB8888_LUT);
  585. }
  586. /* Special optimized blit for RGB 5-6-5 --> ABGR 8-8-8-8 */
  587. static const Uint32 RGB565_ABGR8888_LUT[512] = {
  588. 0xff000000, 0x00000000, 0xff080000, 0x00002000,
  589. 0xff100000, 0x00004000, 0xff180000, 0x00006100,
  590. 0xff200000, 0x00008100, 0xff290000, 0x0000a100,
  591. 0xff310000, 0x0000c200, 0xff390000, 0x0000e200,
  592. 0xff410000, 0x00000008, 0xff4a0000, 0x00002008,
  593. 0xff520000, 0x00004008, 0xff5a0000, 0x00006108,
  594. 0xff620000, 0x00008108, 0xff6a0000, 0x0000a108,
  595. 0xff730000, 0x0000c208, 0xff7b0000, 0x0000e208,
  596. 0xff830000, 0x00000010, 0xff8b0000, 0x00002010,
  597. 0xff940000, 0x00004010, 0xff9c0000, 0x00006110,
  598. 0xffa40000, 0x00008110, 0xffac0000, 0x0000a110,
  599. 0xffb40000, 0x0000c210, 0xffbd0000, 0x0000e210,
  600. 0xffc50000, 0x00000018, 0xffcd0000, 0x00002018,
  601. 0xffd50000, 0x00004018, 0xffde0000, 0x00006118,
  602. 0xffe60000, 0x00008118, 0xffee0000, 0x0000a118,
  603. 0xfff60000, 0x0000c218, 0xffff0000, 0x0000e218,
  604. 0xff000400, 0x00000020, 0xff080400, 0x00002020,
  605. 0xff100400, 0x00004020, 0xff180400, 0x00006120,
  606. 0xff200400, 0x00008120, 0xff290400, 0x0000a120,
  607. 0xff310400, 0x0000c220, 0xff390400, 0x0000e220,
  608. 0xff410400, 0x00000029, 0xff4a0400, 0x00002029,
  609. 0xff520400, 0x00004029, 0xff5a0400, 0x00006129,
  610. 0xff620400, 0x00008129, 0xff6a0400, 0x0000a129,
  611. 0xff730400, 0x0000c229, 0xff7b0400, 0x0000e229,
  612. 0xff830400, 0x00000031, 0xff8b0400, 0x00002031,
  613. 0xff940400, 0x00004031, 0xff9c0400, 0x00006131,
  614. 0xffa40400, 0x00008131, 0xffac0400, 0x0000a131,
  615. 0xffb40400, 0x0000c231, 0xffbd0400, 0x0000e231,
  616. 0xffc50400, 0x00000039, 0xffcd0400, 0x00002039,
  617. 0xffd50400, 0x00004039, 0xffde0400, 0x00006139,
  618. 0xffe60400, 0x00008139, 0xffee0400, 0x0000a139,
  619. 0xfff60400, 0x0000c239, 0xffff0400, 0x0000e239,
  620. 0xff000800, 0x00000041, 0xff080800, 0x00002041,
  621. 0xff100800, 0x00004041, 0xff180800, 0x00006141,
  622. 0xff200800, 0x00008141, 0xff290800, 0x0000a141,
  623. 0xff310800, 0x0000c241, 0xff390800, 0x0000e241,
  624. 0xff410800, 0x0000004a, 0xff4a0800, 0x0000204a,
  625. 0xff520800, 0x0000404a, 0xff5a0800, 0x0000614a,
  626. 0xff620800, 0x0000814a, 0xff6a0800, 0x0000a14a,
  627. 0xff730800, 0x0000c24a, 0xff7b0800, 0x0000e24a,
  628. 0xff830800, 0x00000052, 0xff8b0800, 0x00002052,
  629. 0xff940800, 0x00004052, 0xff9c0800, 0x00006152,
  630. 0xffa40800, 0x00008152, 0xffac0800, 0x0000a152,
  631. 0xffb40800, 0x0000c252, 0xffbd0800, 0x0000e252,
  632. 0xffc50800, 0x0000005a, 0xffcd0800, 0x0000205a,
  633. 0xffd50800, 0x0000405a, 0xffde0800, 0x0000615a,
  634. 0xffe60800, 0x0000815a, 0xffee0800, 0x0000a15a,
  635. 0xfff60800, 0x0000c25a, 0xffff0800, 0x0000e25a,
  636. 0xff000c00, 0x00000062, 0xff080c00, 0x00002062,
  637. 0xff100c00, 0x00004062, 0xff180c00, 0x00006162,
  638. 0xff200c00, 0x00008162, 0xff290c00, 0x0000a162,
  639. 0xff310c00, 0x0000c262, 0xff390c00, 0x0000e262,
  640. 0xff410c00, 0x0000006a, 0xff4a0c00, 0x0000206a,
  641. 0xff520c00, 0x0000406a, 0xff5a0c00, 0x0000616a,
  642. 0xff620c00, 0x0000816a, 0xff6a0c00, 0x0000a16a,
  643. 0xff730c00, 0x0000c26a, 0xff7b0c00, 0x0000e26a,
  644. 0xff830c00, 0x00000073, 0xff8b0c00, 0x00002073,
  645. 0xff940c00, 0x00004073, 0xff9c0c00, 0x00006173,
  646. 0xffa40c00, 0x00008173, 0xffac0c00, 0x0000a173,
  647. 0xffb40c00, 0x0000c273, 0xffbd0c00, 0x0000e273,
  648. 0xffc50c00, 0x0000007b, 0xffcd0c00, 0x0000207b,
  649. 0xffd50c00, 0x0000407b, 0xffde0c00, 0x0000617b,
  650. 0xffe60c00, 0x0000817b, 0xffee0c00, 0x0000a17b,
  651. 0xfff60c00, 0x0000c27b, 0xffff0c00, 0x0000e27b,
  652. 0xff001000, 0x00000083, 0xff081000, 0x00002083,
  653. 0xff101000, 0x00004083, 0xff181000, 0x00006183,
  654. 0xff201000, 0x00008183, 0xff291000, 0x0000a183,
  655. 0xff311000, 0x0000c283, 0xff391000, 0x0000e283,
  656. 0xff411000, 0x0000008b, 0xff4a1000, 0x0000208b,
  657. 0xff521000, 0x0000408b, 0xff5a1000, 0x0000618b,
  658. 0xff621000, 0x0000818b, 0xff6a1000, 0x0000a18b,
  659. 0xff731000, 0x0000c28b, 0xff7b1000, 0x0000e28b,
  660. 0xff831000, 0x00000094, 0xff8b1000, 0x00002094,
  661. 0xff941000, 0x00004094, 0xff9c1000, 0x00006194,
  662. 0xffa41000, 0x00008194, 0xffac1000, 0x0000a194,
  663. 0xffb41000, 0x0000c294, 0xffbd1000, 0x0000e294,
  664. 0xffc51000, 0x0000009c, 0xffcd1000, 0x0000209c,
  665. 0xffd51000, 0x0000409c, 0xffde1000, 0x0000619c,
  666. 0xffe61000, 0x0000819c, 0xffee1000, 0x0000a19c,
  667. 0xfff61000, 0x0000c29c, 0xffff1000, 0x0000e29c,
  668. 0xff001400, 0x000000a4, 0xff081400, 0x000020a4,
  669. 0xff101400, 0x000040a4, 0xff181400, 0x000061a4,
  670. 0xff201400, 0x000081a4, 0xff291400, 0x0000a1a4,
  671. 0xff311400, 0x0000c2a4, 0xff391400, 0x0000e2a4,
  672. 0xff411400, 0x000000ac, 0xff4a1400, 0x000020ac,
  673. 0xff521400, 0x000040ac, 0xff5a1400, 0x000061ac,
  674. 0xff621400, 0x000081ac, 0xff6a1400, 0x0000a1ac,
  675. 0xff731400, 0x0000c2ac, 0xff7b1400, 0x0000e2ac,
  676. 0xff831400, 0x000000b4, 0xff8b1400, 0x000020b4,
  677. 0xff941400, 0x000040b4, 0xff9c1400, 0x000061b4,
  678. 0xffa41400, 0x000081b4, 0xffac1400, 0x0000a1b4,
  679. 0xffb41400, 0x0000c2b4, 0xffbd1400, 0x0000e2b4,
  680. 0xffc51400, 0x000000bd, 0xffcd1400, 0x000020bd,
  681. 0xffd51400, 0x000040bd, 0xffde1400, 0x000061bd,
  682. 0xffe61400, 0x000081bd, 0xffee1400, 0x0000a1bd,
  683. 0xfff61400, 0x0000c2bd, 0xffff1400, 0x0000e2bd,
  684. 0xff001800, 0x000000c5, 0xff081800, 0x000020c5,
  685. 0xff101800, 0x000040c5, 0xff181800, 0x000061c5,
  686. 0xff201800, 0x000081c5, 0xff291800, 0x0000a1c5,
  687. 0xff311800, 0x0000c2c5, 0xff391800, 0x0000e2c5,
  688. 0xff411800, 0x000000cd, 0xff4a1800, 0x000020cd,
  689. 0xff521800, 0x000040cd, 0xff5a1800, 0x000061cd,
  690. 0xff621800, 0x000081cd, 0xff6a1800, 0x0000a1cd,
  691. 0xff731800, 0x0000c2cd, 0xff7b1800, 0x0000e2cd,
  692. 0xff831800, 0x000000d5, 0xff8b1800, 0x000020d5,
  693. 0xff941800, 0x000040d5, 0xff9c1800, 0x000061d5,
  694. 0xffa41800, 0x000081d5, 0xffac1800, 0x0000a1d5,
  695. 0xffb41800, 0x0000c2d5, 0xffbd1800, 0x0000e2d5,
  696. 0xffc51800, 0x000000de, 0xffcd1800, 0x000020de,
  697. 0xffd51800, 0x000040de, 0xffde1800, 0x000061de,
  698. 0xffe61800, 0x000081de, 0xffee1800, 0x0000a1de,
  699. 0xfff61800, 0x0000c2de, 0xffff1800, 0x0000e2de,
  700. 0xff001c00, 0x000000e6, 0xff081c00, 0x000020e6,
  701. 0xff101c00, 0x000040e6, 0xff181c00, 0x000061e6,
  702. 0xff201c00, 0x000081e6, 0xff291c00, 0x0000a1e6,
  703. 0xff311c00, 0x0000c2e6, 0xff391c00, 0x0000e2e6,
  704. 0xff411c00, 0x000000ee, 0xff4a1c00, 0x000020ee,
  705. 0xff521c00, 0x000040ee, 0xff5a1c00, 0x000061ee,
  706. 0xff621c00, 0x000081ee, 0xff6a1c00, 0x0000a1ee,
  707. 0xff731c00, 0x0000c2ee, 0xff7b1c00, 0x0000e2ee,
  708. 0xff831c00, 0x000000f6, 0xff8b1c00, 0x000020f6,
  709. 0xff941c00, 0x000040f6, 0xff9c1c00, 0x000061f6,
  710. 0xffa41c00, 0x000081f6, 0xffac1c00, 0x0000a1f6,
  711. 0xffb41c00, 0x0000c2f6, 0xffbd1c00, 0x0000e2f6,
  712. 0xffc51c00, 0x000000ff, 0xffcd1c00, 0x000020ff,
  713. 0xffd51c00, 0x000040ff, 0xffde1c00, 0x000061ff,
  714. 0xffe61c00, 0x000081ff, 0xffee1c00, 0x0000a1ff,
  715. 0xfff61c00, 0x0000c2ff, 0xffff1c00, 0x0000e2ff
  716. };
  717. static void Blit_RGB565_ABGR8888(SDL_BlitInfo *info)
  718. {
  719.     Blit_RGB565_32(info, RGB565_ABGR8888_LUT);
  720. }
  721. /* Special optimized blit for RGB 5-6-5 --> RGBA 8-8-8-8 */
  722. static const Uint32 RGB565_RGBA8888_LUT[512] = {
  723. 0x000000ff, 0x00000000, 0x000008ff, 0x00200000,
  724. 0x000010ff, 0x00400000, 0x000018ff, 0x00610000,
  725. 0x000020ff, 0x00810000, 0x000029ff, 0x00a10000,
  726. 0x000031ff, 0x00c20000, 0x000039ff, 0x00e20000,
  727. 0x000041ff, 0x08000000, 0x00004aff, 0x08200000,
  728. 0x000052ff, 0x08400000, 0x00005aff, 0x08610000,
  729. 0x000062ff, 0x08810000, 0x00006aff, 0x08a10000,
  730. 0x000073ff, 0x08c20000, 0x00007bff, 0x08e20000,
  731. 0x000083ff, 0x10000000, 0x00008bff, 0x10200000,
  732. 0x000094ff, 0x10400000, 0x00009cff, 0x10610000,
  733. 0x0000a4ff, 0x10810000, 0x0000acff, 0x10a10000,
  734. 0x0000b4ff, 0x10c20000, 0x0000bdff, 0x10e20000,
  735. 0x0000c5ff, 0x18000000, 0x0000cdff, 0x18200000,
  736. 0x0000d5ff, 0x18400000, 0x0000deff, 0x18610000,
  737. 0x0000e6ff, 0x18810000, 0x0000eeff, 0x18a10000,
  738. 0x0000f6ff, 0x18c20000, 0x0000ffff, 0x18e20000,
  739. 0x000400ff, 0x20000000, 0x000408ff, 0x20200000,
  740. 0x000410ff, 0x20400000, 0x000418ff, 0x20610000,
  741. 0x000420ff, 0x20810000, 0x000429ff, 0x20a10000,
  742. 0x000431ff, 0x20c20000, 0x000439ff, 0x20e20000,
  743. 0x000441ff, 0x29000000, 0x00044aff, 0x29200000,
  744. 0x000452ff, 0x29400000, 0x00045aff, 0x29610000,
  745. 0x000462ff, 0x29810000, 0x00046aff, 0x29a10000,
  746. 0x000473ff, 0x29c20000, 0x00047bff, 0x29e20000,
  747. 0x000483ff, 0x31000000, 0x00048bff, 0x31200000,
  748. 0x000494ff, 0x31400000, 0x00049cff, 0x31610000,
  749. 0x0004a4ff, 0x31810000, 0x0004acff, 0x31a10000,
  750. 0x0004b4ff, 0x31c20000, 0x0004bdff, 0x31e20000,
  751. 0x0004c5ff, 0x39000000, 0x0004cdff, 0x39200000,
  752. 0x0004d5ff, 0x39400000, 0x0004deff, 0x39610000,
  753. 0x0004e6ff, 0x39810000, 0x0004eeff, 0x39a10000,
  754. 0x0004f6ff, 0x39c20000, 0x0004ffff, 0x39e20000,
  755. 0x000800ff, 0x41000000, 0x000808ff, 0x41200000,
  756. 0x000810ff, 0x41400000, 0x000818ff, 0x41610000,
  757. 0x000820ff, 0x41810000, 0x000829ff, 0x41a10000,
  758. 0x000831ff, 0x41c20000, 0x000839ff, 0x41e20000,
  759. 0x000841ff, 0x4a000000, 0x00084aff, 0x4a200000,
  760. 0x000852ff, 0x4a400000, 0x00085aff, 0x4a610000,
  761. 0x000862ff, 0x4a810000, 0x00086aff, 0x4aa10000,
  762. 0x000873ff, 0x4ac20000, 0x00087bff, 0x4ae20000,
  763. 0x000883ff, 0x52000000, 0x00088bff, 0x52200000,
  764. 0x000894ff, 0x52400000, 0x00089cff, 0x52610000,
  765. 0x0008a4ff, 0x52810000, 0x0008acff, 0x52a10000,
  766. 0x0008b4ff, 0x52c20000, 0x0008bdff, 0x52e20000,
  767. 0x0008c5ff, 0x5a000000, 0x0008cdff, 0x5a200000,
  768. 0x0008d5ff, 0x5a400000, 0x0008deff, 0x5a610000,
  769. 0x0008e6ff, 0x5a810000, 0x0008eeff, 0x5aa10000,
  770. 0x0008f6ff, 0x5ac20000, 0x0008ffff, 0x5ae20000,
  771. 0x000c00ff, 0x62000000, 0x000c08ff, 0x62200000,
  772. 0x000c10ff, 0x62400000, 0x000c18ff, 0x62610000,
  773. 0x000c20ff, 0x62810000, 0x000c29ff, 0x62a10000,
  774. 0x000c31ff, 0x62c20000, 0x000c39ff, 0x62e20000,
  775. 0x000c41ff, 0x6a000000, 0x000c4aff, 0x6a200000,
  776. 0x000c52ff, 0x6a400000, 0x000c5aff, 0x6a610000,
  777. 0x000c62ff, 0x6a810000, 0x000c6aff, 0x6aa10000,
  778. 0x000c73ff, 0x6ac20000, 0x000c7bff, 0x6ae20000,
  779. 0x000c83ff, 0x73000000, 0x000c8bff, 0x73200000,
  780. 0x000c94ff, 0x73400000, 0x000c9cff, 0x73610000,
  781. 0x000ca4ff, 0x73810000, 0x000cacff, 0x73a10000,
  782. 0x000cb4ff, 0x73c20000, 0x000cbdff, 0x73e20000,
  783. 0x000cc5ff, 0x7b000000, 0x000ccdff, 0x7b200000,
  784. 0x000cd5ff, 0x7b400000, 0x000cdeff, 0x7b610000,
  785. 0x000ce6ff, 0x7b810000, 0x000ceeff, 0x7ba10000,
  786. 0x000cf6ff, 0x7bc20000, 0x000cffff, 0x7be20000,
  787. 0x001000ff, 0x83000000, 0x001008ff, 0x83200000,
  788. 0x001010ff, 0x83400000, 0x001018ff, 0x83610000,
  789. 0x001020ff, 0x83810000, 0x001029ff, 0x83a10000,
  790. 0x001031ff, 0x83c20000, 0x001039ff, 0x83e20000,
  791. 0x001041ff, 0x8b000000, 0x00104aff, 0x8b200000,
  792. 0x001052ff, 0x8b400000, 0x00105aff, 0x8b610000,
  793. 0x001062ff, 0x8b810000, 0x00106aff, 0x8ba10000,
  794. 0x001073ff, 0x8bc20000, 0x00107bff, 0x8be20000,
  795. 0x001083ff, 0x94000000, 0x00108bff, 0x94200000,
  796. 0x001094ff, 0x94400000, 0x00109cff, 0x94610000,
  797. 0x0010a4ff, 0x94810000, 0x0010acff, 0x94a10000,
  798. 0x0010b4ff, 0x94c20000, 0x0010bdff, 0x94e20000,
  799. 0x0010c5ff, 0x9c000000, 0x0010cdff, 0x9c200000,
  800. 0x0010d5ff, 0x9c400000, 0x0010deff, 0x9c610000,
  801. 0x0010e6ff, 0x9c810000, 0x0010eeff, 0x9ca10000,
  802. 0x0010f6ff, 0x9cc20000, 0x0010ffff, 0x9ce20000,
  803. 0x001400ff, 0xa4000000, 0x001408ff, 0xa4200000,
  804. 0x001410ff, 0xa4400000, 0x001418ff, 0xa4610000,
  805. 0x001420ff, 0xa4810000, 0x001429ff, 0xa4a10000,
  806. 0x001431ff, 0xa4c20000, 0x001439ff, 0xa4e20000,
  807. 0x001441ff, 0xac000000, 0x00144aff, 0xac200000,
  808. 0x001452ff, 0xac400000, 0x00145aff, 0xac610000,
  809. 0x001462ff, 0xac810000, 0x00146aff, 0xaca10000,
  810. 0x001473ff, 0xacc20000, 0x00147bff, 0xace20000,
  811. 0x001483ff, 0xb4000000, 0x00148bff, 0xb4200000,
  812. 0x001494ff, 0xb4400000, 0x00149cff, 0xb4610000,
  813. 0x0014a4ff, 0xb4810000, 0x0014acff, 0xb4a10000,
  814. 0x0014b4ff, 0xb4c20000, 0x0014bdff, 0xb4e20000,
  815. 0x0014c5ff, 0xbd000000, 0x0014cdff, 0xbd200000,
  816. 0x0014d5ff, 0xbd400000, 0x0014deff, 0xbd610000,
  817. 0x0014e6ff, 0xbd810000, 0x0014eeff, 0xbda10000,
  818. 0x0014f6ff, 0xbdc20000, 0x0014ffff, 0xbde20000,
  819. 0x001800ff, 0xc5000000, 0x001808ff, 0xc5200000,
  820. 0x001810ff, 0xc5400000, 0x001818ff, 0xc5610000,
  821. 0x001820ff, 0xc5810000, 0x001829ff, 0xc5a10000,
  822. 0x001831ff, 0xc5c20000, 0x001839ff, 0xc5e20000,
  823. 0x001841ff, 0xcd000000, 0x00184aff, 0xcd200000,
  824. 0x001852ff, 0xcd400000, 0x00185aff, 0xcd610000,
  825. 0x001862ff, 0xcd810000, 0x00186aff, 0xcda10000,
  826. 0x001873ff, 0xcdc20000, 0x00187bff, 0xcde20000,
  827. 0x001883ff, 0xd5000000, 0x00188bff, 0xd5200000,
  828. 0x001894ff, 0xd5400000, 0x00189cff, 0xd5610000,
  829. 0x0018a4ff, 0xd5810000, 0x0018acff, 0xd5a10000,
  830. 0x0018b4ff, 0xd5c20000, 0x0018bdff, 0xd5e20000,
  831. 0x0018c5ff, 0xde000000, 0x0018cdff, 0xde200000,
  832. 0x0018d5ff, 0xde400000, 0x0018deff, 0xde610000,
  833. 0x0018e6ff, 0xde810000, 0x0018eeff, 0xdea10000,
  834. 0x0018f6ff, 0xdec20000, 0x0018ffff, 0xdee20000,
  835. 0x001c00ff, 0xe6000000, 0x001c08ff, 0xe6200000,
  836. 0x001c10ff, 0xe6400000, 0x001c18ff, 0xe6610000,
  837. 0x001c20ff, 0xe6810000, 0x001c29ff, 0xe6a10000,
  838. 0x001c31ff, 0xe6c20000, 0x001c39ff, 0xe6e20000,
  839. 0x001c41ff, 0xee000000, 0x001c4aff, 0xee200000,
  840. 0x001c52ff, 0xee400000, 0x001c5aff, 0xee610000,
  841. 0x001c62ff, 0xee810000, 0x001c6aff, 0xeea10000,
  842. 0x001c73ff, 0xeec20000, 0x001c7bff, 0xeee20000,
  843. 0x001c83ff, 0xf6000000, 0x001c8bff, 0xf6200000,
  844. 0x001c94ff, 0xf6400000, 0x001c9cff, 0xf6610000,
  845. 0x001ca4ff, 0xf6810000, 0x001cacff, 0xf6a10000,
  846. 0x001cb4ff, 0xf6c20000, 0x001cbdff, 0xf6e20000,
  847. 0x001cc5ff, 0xff000000, 0x001ccdff, 0xff200000,
  848. 0x001cd5ff, 0xff400000, 0x001cdeff, 0xff610000,
  849. 0x001ce6ff, 0xff810000, 0x001ceeff, 0xffa10000,
  850. 0x001cf6ff, 0xffc20000, 0x001cffff, 0xffe20000,
  851. };
  852. static void Blit_RGB565_RGBA8888(SDL_BlitInfo *info)
  853. {
  854.     Blit_RGB565_32(info, RGB565_RGBA8888_LUT);
  855. }
  856. /* Special optimized blit for RGB 5-6-5 --> BGRA 8-8-8-8 */
  857. static const Uint32 RGB565_BGRA8888_LUT[512] = {
  858. 0x00000000, 0x000000ff, 0x08000000, 0x002000ff,
  859. 0x10000000, 0x004000ff, 0x18000000, 0x006100ff,
  860. 0x20000000, 0x008100ff, 0x29000000, 0x00a100ff,
  861. 0x31000000, 0x00c200ff, 0x39000000, 0x00e200ff,
  862. 0x41000000, 0x000008ff, 0x4a000000, 0x002008ff,
  863. 0x52000000, 0x004008ff, 0x5a000000, 0x006108ff,
  864. 0x62000000, 0x008108ff, 0x6a000000, 0x00a108ff,
  865. 0x73000000, 0x00c208ff, 0x7b000000, 0x00e208ff,
  866. 0x83000000, 0x000010ff, 0x8b000000, 0x002010ff,
  867. 0x94000000, 0x004010ff, 0x9c000000, 0x006110ff,
  868. 0xa4000000, 0x008110ff, 0xac000000, 0x00a110ff,
  869. 0xb4000000, 0x00c210ff, 0xbd000000, 0x00e210ff,
  870. 0xc5000000, 0x000018ff, 0xcd000000, 0x002018ff,
  871. 0xd5000000, 0x004018ff, 0xde000000, 0x006118ff,
  872. 0xe6000000, 0x008118ff, 0xee000000, 0x00a118ff,
  873. 0xf6000000, 0x00c218ff, 0xff000000, 0x00e218ff,
  874. 0x00040000, 0x000020ff, 0x08040000, 0x002020ff,
  875. 0x10040000, 0x004020ff, 0x18040000, 0x006120ff,
  876. 0x20040000, 0x008120ff, 0x29040000, 0x00a120ff,
  877. 0x31040000, 0x00c220ff, 0x39040000, 0x00e220ff,
  878. 0x41040000, 0x000029ff, 0x4a040000, 0x002029ff,
  879. 0x52040000, 0x004029ff, 0x5a040000, 0x006129ff,
  880. 0x62040000, 0x008129ff, 0x6a040000, 0x00a129ff,
  881. 0x73040000, 0x00c229ff, 0x7b040000, 0x00e229ff,
  882. 0x83040000, 0x000031ff, 0x8b040000, 0x002031ff,
  883. 0x94040000, 0x004031ff, 0x9c040000, 0x006131ff,
  884. 0xa4040000, 0x008131ff, 0xac040000, 0x00a131ff,
  885. 0xb4040000, 0x00c231ff, 0xbd040000, 0x00e231ff,
  886. 0xc5040000, 0x000039ff, 0xcd040000, 0x002039ff,
  887. 0xd5040000, 0x004039ff, 0xde040000, 0x006139ff,
  888. 0xe6040000, 0x008139ff, 0xee040000, 0x00a139ff,
  889. 0xf6040000, 0x00c239ff, 0xff040000, 0x00e239ff,
  890. 0x00080000, 0x000041ff, 0x08080000, 0x002041ff,
  891. 0x10080000, 0x004041ff, 0x18080000, 0x006141ff,
  892. 0x20080000, 0x008141ff, 0x29080000, 0x00a141ff,
  893. 0x31080000, 0x00c241ff, 0x39080000, 0x00e241ff,
  894. 0x41080000, 0x00004aff, 0x4a080000, 0x00204aff,
  895. 0x52080000, 0x00404aff, 0x5a080000, 0x00614aff,
  896. 0x62080000, 0x00814aff, 0x6a080000, 0x00a14aff,
  897. 0x73080000, 0x00c24aff, 0x7b080000, 0x00e24aff,
  898. 0x83080000, 0x000052ff, 0x8b080000, 0x002052ff,
  899. 0x94080000, 0x004052ff, 0x9c080000, 0x006152ff,
  900. 0xa4080000, 0x008152ff, 0xac080000, 0x00a152ff,
  901. 0xb4080000, 0x00c252ff, 0xbd080000, 0x00e252ff,
  902. 0xc5080000, 0x00005aff, 0xcd080000, 0x00205aff,
  903. 0xd5080000, 0x00405aff, 0xde080000, 0x00615aff,
  904. 0xe6080000, 0x00815aff, 0xee080000, 0x00a15aff,
  905. 0xf6080000, 0x00c25aff, 0xff080000, 0x00e25aff,
  906. 0x000c0000, 0x000062ff, 0x080c0000, 0x002062ff,
  907. 0x100c0000, 0x004062ff, 0x180c0000, 0x006162ff,
  908. 0x200c0000, 0x008162ff, 0x290c0000, 0x00a162ff,
  909. 0x310c0000, 0x00c262ff, 0x390c0000, 0x00e262ff,
  910. 0x410c0000, 0x00006aff, 0x4a0c0000, 0x00206aff,
  911. 0x520c0000, 0x00406aff, 0x5a0c0000, 0x00616aff,
  912. 0x620c0000, 0x00816aff, 0x6a0c0000, 0x00a16aff,
  913. 0x730c0000, 0x00c26aff, 0x7b0c0000, 0x00e26aff,
  914. 0x830c0000, 0x000073ff, 0x8b0c0000, 0x002073ff,
  915. 0x940c0000, 0x004073ff, 0x9c0c0000, 0x006173ff,
  916. 0xa40c0000, 0x008173ff, 0xac0c0000, 0x00a173ff,
  917. 0xb40c0000, 0x00c273ff, 0xbd0c0000, 0x00e273ff,
  918. 0xc50c0000, 0x00007bff, 0xcd0c0000, 0x00207bff,
  919. 0xd50c0000, 0x00407bff, 0xde0c0000, 0x00617bff,
  920. 0xe60c0000, 0x00817bff, 0xee0c0000, 0x00a17bff,
  921. 0xf60c0000, 0x00c27bff, 0xff0c0000, 0x00e27bff,
  922. 0x00100000, 0x000083ff, 0x08100000, 0x002083ff,
  923. 0x10100000, 0x004083ff, 0x18100000, 0x006183ff,
  924. 0x20100000, 0x008183ff, 0x29100000, 0x00a183ff,
  925. 0x31100000, 0x00c283ff, 0x39100000, 0x00e283ff,
  926. 0x41100000, 0x00008bff, 0x4a100000, 0x00208bff,
  927. 0x52100000, 0x00408bff, 0x5a100000, 0x00618bff,
  928. 0x62100000, 0x00818bff, 0x6a100000, 0x00a18bff,
  929. 0x73100000, 0x00c28bff, 0x7b100000, 0x00e28bff,
  930. 0x83100000, 0x000094ff, 0x8b100000, 0x002094ff,
  931. 0x94100000, 0x004094ff, 0x9c100000, 0x006194ff,
  932. 0xa4100000, 0x008194ff, 0xac100000, 0x00a194ff,
  933. 0xb4100000, 0x00c294ff, 0xbd100000, 0x00e294ff,
  934. 0xc5100000, 0x00009cff, 0xcd100000, 0x00209cff,
  935. 0xd5100000, 0x00409cff, 0xde100000, 0x00619cff,
  936. 0xe6100000, 0x00819cff, 0xee100000, 0x00a19cff,
  937. 0xf6100000, 0x00c29cff, 0xff100000, 0x00e29cff,
  938. 0x00140000, 0x0000a4ff, 0x08140000, 0x0020a4ff,
  939. 0x10140000, 0x0040a4ff, 0x18140000, 0x0061a4ff,
  940. 0x20140000, 0x0081a4ff, 0x29140000, 0x00a1a4ff,
  941. 0x31140000, 0x00c2a4ff, 0x39140000, 0x00e2a4ff,
  942. 0x41140000, 0x0000acff, 0x4a140000, 0x0020acff,
  943. 0x52140000, 0x0040acff, 0x5a140000, 0x0061acff,
  944. 0x62140000, 0x0081acff, 0x6a140000, 0x00a1acff,
  945. 0x73140000, 0x00c2acff, 0x7b140000, 0x00e2acff,
  946. 0x83140000, 0x0000b4ff, 0x8b140000, 0x0020b4ff,
  947. 0x94140000, 0x0040b4ff, 0x9c140000, 0x0061b4ff,
  948. 0xa4140000, 0x0081b4ff, 0xac140000, 0x00a1b4ff,
  949. 0xb4140000, 0x00c2b4ff, 0xbd140000, 0x00e2b4ff,
  950. 0xc5140000, 0x0000bdff, 0xcd140000, 0x0020bdff,
  951. 0xd5140000, 0x0040bdff, 0xde140000, 0x0061bdff,
  952. 0xe6140000, 0x0081bdff, 0xee140000, 0x00a1bdff,
  953. 0xf6140000, 0x00c2bdff, 0xff140000, 0x00e2bdff,
  954. 0x00180000, 0x0000c5ff, 0x08180000, 0x0020c5ff,
  955. 0x10180000, 0x0040c5ff, 0x18180000, 0x0061c5ff,
  956. 0x20180000, 0x0081c5ff, 0x29180000, 0x00a1c5ff,
  957. 0x31180000, 0x00c2c5ff, 0x39180000, 0x00e2c5ff,
  958. 0x41180000, 0x0000cdff, 0x4a180000, 0x0020cdff,
  959. 0x52180000, 0x0040cdff, 0x5a180000, 0x0061cdff,
  960. 0x62180000, 0x0081cdff, 0x6a180000, 0x00a1cdff,
  961. 0x73180000, 0x00c2cdff, 0x7b180000, 0x00e2cdff,
  962. 0x83180000, 0x0000d5ff, 0x8b180000, 0x0020d5ff,
  963. 0x94180000, 0x0040d5ff, 0x9c180000, 0x0061d5ff,
  964. 0xa4180000, 0x0081d5ff, 0xac180000, 0x00a1d5ff,
  965. 0xb4180000, 0x00c2d5ff, 0xbd180000, 0x00e2d5ff,
  966. 0xc5180000, 0x0000deff, 0xcd180000, 0x0020deff,
  967. 0xd5180000, 0x0040deff, 0xde180000, 0x0061deff,
  968. 0xe6180000, 0x0081deff, 0xee180000, 0x00a1deff,
  969. 0xf6180000, 0x00c2deff, 0xff180000, 0x00e2deff,
  970. 0x001c0000, 0x0000e6ff, 0x081c0000, 0x0020e6ff,
  971. 0x101c0000, 0x0040e6ff, 0x181c0000, 0x0061e6ff,
  972. 0x201c0000, 0x0081e6ff, 0x291c0000, 0x00a1e6ff,
  973. 0x311c0000, 0x00c2e6ff, 0x391c0000, 0x00e2e6ff,
  974. 0x411c0000, 0x0000eeff, 0x4a1c0000, 0x0020eeff,
  975. 0x521c0000, 0x0040eeff, 0x5a1c0000, 0x0061eeff,
  976. 0x621c0000, 0x0081eeff, 0x6a1c0000, 0x00a1eeff,
  977. 0x731c0000, 0x00c2eeff, 0x7b1c0000, 0x00e2eeff,
  978. 0x831c0000, 0x0000f6ff, 0x8b1c0000, 0x0020f6ff,
  979. 0x941c0000, 0x0040f6ff, 0x9c1c0000, 0x0061f6ff,
  980. 0xa41c0000, 0x0081f6ff, 0xac1c0000, 0x00a1f6ff,
  981. 0xb41c0000, 0x00c2f6ff, 0xbd1c0000, 0x00e2f6ff,
  982. 0xc51c0000, 0x0000ffff, 0xcd1c0000, 0x0020ffff,
  983. 0xd51c0000, 0x0040ffff, 0xde1c0000, 0x0061ffff,
  984. 0xe61c0000, 0x0081ffff, 0xee1c0000, 0x00a1ffff,
  985. 0xf61c0000, 0x00c2ffff, 0xff1c0000, 0x00e2ffff
  986. };
  987. static void Blit_RGB565_BGRA8888(SDL_BlitInfo *info)
  988. {
  989.     Blit_RGB565_32(info, RGB565_BGRA8888_LUT);
  990. }
  991. /* Special optimized blit for RGB 8-8-8 --> RGB 3-3-2 */
  992. #ifndef RGB888_RGB332
  993. #define RGB888_RGB332(dst, src) { 
  994. dst = (((src)&0x00E00000)>>16)| 
  995.       (((src)&0x0000E000)>>11)| 
  996.       (((src)&0x000000C0)>>6); 
  997. }
  998. #endif
  999. static void Blit_RGB888_index8_map(SDL_BlitInfo *info)
  1000. {
  1001. #ifndef USE_DUFFS_LOOP
  1002. int c;
  1003. #endif
  1004. int pixel;
  1005. int width, height;
  1006. Uint32 *src;
  1007. const Uint8 *map;
  1008. Uint8 *dst;
  1009. int srcskip, dstskip;
  1010. /* Set up some basic variables */
  1011. width = info->d_width;
  1012. height = info->d_height;
  1013. src = (Uint32 *)info->s_pixels;
  1014. srcskip = info->s_skip/4;
  1015. dst = info->d_pixels;
  1016. dstskip = info->d_skip;
  1017. map = info->table;
  1018. #ifdef USE_DUFFS_LOOP
  1019. while ( height-- ) {
  1020. DUFFS_LOOP(
  1021. RGB888_RGB332(pixel, *src);
  1022. *dst++ = map[pixel];
  1023. ++src;
  1024. , width);
  1025. src += srcskip;
  1026. dst += dstskip;
  1027. }
  1028. #else
  1029. while ( height-- ) {
  1030. for ( c=width/4; c; --c ) {
  1031. /* Pack RGB into 8bit pixel */
  1032. RGB888_RGB332(pixel, *src);
  1033. *dst++ = map[pixel];
  1034. ++src;
  1035. RGB888_RGB332(pixel, *src);
  1036. *dst++ = map[pixel];
  1037. ++src;
  1038. RGB888_RGB332(pixel, *src);
  1039. *dst++ = map[pixel];
  1040. ++src;
  1041. RGB888_RGB332(pixel, *src);
  1042. *dst++ = map[pixel];
  1043. ++src;
  1044. }
  1045. switch ( width & 3 ) {
  1046. case 3:
  1047. RGB888_RGB332(pixel, *src);
  1048. *dst++ = map[pixel];
  1049. ++src;
  1050. case 2:
  1051. RGB888_RGB332(pixel, *src);
  1052. *dst++ = map[pixel];
  1053. ++src;
  1054. case 1:
  1055. RGB888_RGB332(pixel, *src);
  1056. *dst++ = map[pixel];
  1057. ++src;
  1058. }
  1059. src += srcskip;
  1060. dst += dstskip;
  1061. }
  1062. #endif /* USE_DUFFS_LOOP */
  1063. }
  1064. static void BlitNto1(SDL_BlitInfo *info)
  1065. {
  1066. #ifndef USE_DUFFS_LOOP
  1067. int c;
  1068. #endif
  1069. int width, height;
  1070. Uint8 *src;
  1071. const Uint8 *map;
  1072. Uint8 *dst;
  1073. int srcskip, dstskip;
  1074. int srcbpp;
  1075. Uint32 pixel;
  1076. int  sR, sG, sB;
  1077. SDL_PixelFormat *srcfmt;
  1078. /* Set up some basic variables */
  1079. width = info->d_width;
  1080. height = info->d_height;
  1081. src = info->s_pixels;
  1082. srcskip = info->s_skip;
  1083. dst = info->d_pixels;
  1084. dstskip = info->d_skip;
  1085. map = info->table;
  1086. srcfmt = info->src;
  1087. srcbpp = srcfmt->BytesPerPixel;
  1088. if ( map == NULL ) {
  1089. while ( height-- ) {
  1090. #ifdef USE_DUFFS_LOOP
  1091. DUFFS_LOOP(
  1092. DISEMBLE_RGB(src, srcbpp, srcfmt, pixel,
  1093. sR, sG, sB);
  1094. if ( 1 ) {
  1095.    /* Pack RGB into 8bit pixel */
  1096.    *dst = ((sR>>5)<<(3+2))|
  1097.         ((sG>>5)<<(2)) |
  1098.         ((sB>>6)<<(0)) ;
  1099. }
  1100. dst++;
  1101. src += srcbpp;
  1102. , width);
  1103. #else
  1104. for ( c=width; c; --c ) {
  1105. DISEMBLE_RGB(src, srcbpp, srcfmt, pixel,
  1106. sR, sG, sB);
  1107. if ( 1 ) {
  1108.    /* Pack RGB into 8bit pixel */
  1109.    *dst = ((sR>>5)<<(3+2))|
  1110.         ((sG>>5)<<(2)) |
  1111.         ((sB>>6)<<(0)) ;
  1112. }
  1113. dst++;
  1114. src += srcbpp;
  1115. }
  1116. #endif
  1117. src += srcskip;
  1118. dst += dstskip;
  1119. }
  1120. } else {
  1121. while ( height-- ) {
  1122. #ifdef USE_DUFFS_LOOP
  1123. DUFFS_LOOP(
  1124. DISEMBLE_RGB(src, srcbpp, srcfmt, pixel,
  1125. sR, sG, sB);
  1126. if ( 1 ) {
  1127.    /* Pack RGB into 8bit pixel */
  1128.    *dst = map[((sR>>5)<<(3+2))|
  1129.    ((sG>>5)<<(2))  |
  1130.    ((sB>>6)<<(0))  ];
  1131. }
  1132. dst++;
  1133. src += srcbpp;
  1134. , width);
  1135. #else
  1136. for ( c=width; c; --c ) {
  1137. DISEMBLE_RGB(src, srcbpp, srcfmt, pixel,
  1138. sR, sG, sB);
  1139. if ( 1 ) {
  1140.    /* Pack RGB into 8bit pixel */
  1141.    *dst = map[((sR>>5)<<(3+2))|
  1142.    ((sG>>5)<<(2))  |
  1143.    ((sB>>6)<<(0))  ];
  1144. }
  1145. dst++;
  1146. src += srcbpp;
  1147. }
  1148. #endif /* USE_DUFFS_LOOP */
  1149. src += srcskip;
  1150. dst += dstskip;
  1151. }
  1152. }
  1153. }
  1154. static void BlitNtoN(SDL_BlitInfo *info)
  1155. {
  1156. int width = info->d_width;
  1157. int height = info->d_height;
  1158. Uint8 *src = info->s_pixels;
  1159. int srcskip = info->s_skip;
  1160. Uint8 *dst = info->d_pixels;
  1161. int dstskip = info->d_skip;
  1162. SDL_PixelFormat *srcfmt = info->src;
  1163. int srcbpp = srcfmt->BytesPerPixel;
  1164. SDL_PixelFormat *dstfmt = info->dst;
  1165. int dstbpp = dstfmt->BytesPerPixel;
  1166. unsigned alpha = dstfmt->Amask ? SDL_ALPHA_OPAQUE : 0;
  1167. while ( height-- ) {
  1168. DUFFS_LOOP(
  1169. {
  1170.         Uint32 pixel;
  1171. unsigned sR;
  1172. unsigned sG;
  1173. unsigned sB;
  1174. DISEMBLE_RGB(src, srcbpp, srcfmt, pixel, sR, sG, sB);
  1175. ASSEMBLE_RGBA(dst, dstbpp, dstfmt, sR, sG, sB, alpha);
  1176. dst += dstbpp;
  1177. src += srcbpp;
  1178. },
  1179. width);
  1180. src += srcskip;
  1181. dst += dstskip;
  1182. }
  1183. }
  1184. static void BlitNtoNCopyAlpha(SDL_BlitInfo *info)
  1185. {
  1186. int width = info->d_width;
  1187. int height = info->d_height;
  1188. Uint8 *src = info->s_pixels;
  1189. int srcskip = info->s_skip;
  1190. Uint8 *dst = info->d_pixels;
  1191. int dstskip = info->d_skip;
  1192. SDL_PixelFormat *srcfmt = info->src;
  1193. int srcbpp = srcfmt->BytesPerPixel;
  1194. SDL_PixelFormat *dstfmt = info->dst;
  1195. int dstbpp = dstfmt->BytesPerPixel;
  1196. int c;
  1197. /* FIXME: should map alpha to [0..255] correctly! */
  1198. while ( height-- ) {
  1199. for ( c=width; c; --c ) {
  1200.         Uint32 pixel;
  1201. unsigned sR, sG, sB, sA;
  1202. DISEMBLE_RGBA(src, srcbpp, srcfmt, pixel,
  1203.       sR, sG, sB, sA);
  1204. ASSEMBLE_RGBA(dst, dstbpp, dstfmt,
  1205.       sR, sG, sB, sA);
  1206. dst += dstbpp;
  1207. src += srcbpp;
  1208. }
  1209. src += srcskip;
  1210. dst += dstskip;
  1211. }
  1212. }
  1213. static void BlitNto1Key(SDL_BlitInfo *info)
  1214. {
  1215. int width = info->d_width;
  1216. int height = info->d_height;
  1217. Uint8 *src = info->s_pixels;
  1218. int srcskip = info->s_skip;
  1219. Uint8 *dst = info->d_pixels;
  1220. int dstskip = info->d_skip;
  1221. SDL_PixelFormat *srcfmt = info->src;
  1222. const Uint8 *palmap = info->table;
  1223. Uint32 ckey = srcfmt->colorkey;
  1224. Uint32 rgbmask = ~srcfmt->Amask;
  1225. int srcbpp;
  1226. Uint32 pixel;
  1227. Uint8  sR, sG, sB;
  1228. /* Set up some basic variables */
  1229. srcbpp = srcfmt->BytesPerPixel;
  1230. ckey &= rgbmask;
  1231. if ( palmap == NULL ) {
  1232. while ( height-- ) {
  1233. DUFFS_LOOP(
  1234. {
  1235. DISEMBLE_RGB(src, srcbpp, srcfmt, pixel,
  1236. sR, sG, sB);
  1237. if ( (pixel & rgbmask) != ckey ) {
  1238.    /* Pack RGB into 8bit pixel */
  1239.    *dst = ((sR>>5)<<(3+2))|
  1240. ((sG>>5)<<(2)) |
  1241. ((sB>>6)<<(0)) ;
  1242. }
  1243. dst++;
  1244. src += srcbpp;
  1245. },
  1246. width);
  1247. src += srcskip;
  1248. dst += dstskip;
  1249. }
  1250. } else {
  1251. while ( height-- ) {
  1252. DUFFS_LOOP(
  1253. {
  1254. DISEMBLE_RGB(src, srcbpp, srcfmt, pixel,
  1255. sR, sG, sB);
  1256. if ( (pixel & rgbmask) != ckey ) {
  1257.    /* Pack RGB into 8bit pixel */
  1258.    *dst = palmap[((sR>>5)<<(3+2))|
  1259. ((sG>>5)<<(2))  |
  1260. ((sB>>6)<<(0))  ];
  1261. }
  1262. dst++;
  1263. src += srcbpp;
  1264. },
  1265. width);
  1266. src += srcskip;
  1267. dst += dstskip;
  1268. }
  1269. }
  1270. }
  1271. static void Blit2to2Key(SDL_BlitInfo *info)
  1272. {
  1273. int width = info->d_width;
  1274. int height = info->d_height;
  1275. Uint16 *srcp = (Uint16 *)info->s_pixels;
  1276. int srcskip = info->s_skip;
  1277. Uint16 *dstp = (Uint16 *)info->d_pixels;
  1278. int dstskip = info->d_skip;
  1279. Uint32 ckey = info->src->colorkey;
  1280. Uint32 rgbmask = ~info->src->Amask;
  1281. /* Set up some basic variables */
  1282.         srcskip /= 2;
  1283.         dstskip /= 2;
  1284. ckey &= rgbmask;
  1285. while ( height-- ) {
  1286. DUFFS_LOOP(
  1287. {
  1288. if ( (*srcp & rgbmask) != ckey ) {
  1289. *dstp = *srcp;
  1290. }
  1291. dstp++;
  1292. srcp++;
  1293. },
  1294. width);
  1295. srcp += srcskip;
  1296. dstp += dstskip;
  1297. }
  1298. }
  1299. static void BlitNtoNKey(SDL_BlitInfo *info)
  1300. {
  1301. int width = info->d_width;
  1302. int height = info->d_height;
  1303. Uint8 *src = info->s_pixels;
  1304. int srcskip = info->s_skip;
  1305. Uint8 *dst = info->d_pixels;
  1306. int dstskip = info->d_skip;
  1307. Uint32 ckey = info->src->colorkey;
  1308. SDL_PixelFormat *srcfmt = info->src;
  1309. SDL_PixelFormat *dstfmt = info->dst;
  1310. int srcbpp = srcfmt->BytesPerPixel;
  1311. int dstbpp = dstfmt->BytesPerPixel;
  1312. unsigned alpha = dstfmt->Amask ? SDL_ALPHA_OPAQUE : 0;
  1313. while ( height-- ) {
  1314. DUFFS_LOOP(
  1315. {
  1316.         Uint32 pixel;
  1317. unsigned sR;
  1318. unsigned sG;
  1319. unsigned sB;
  1320. RETRIEVE_RGB_PIXEL(src, srcbpp, pixel);
  1321. if ( pixel != ckey ) {
  1322.         RGB_FROM_PIXEL(pixel, srcfmt, sR, sG, sB);
  1323. ASSEMBLE_RGBA(dst, dstbpp, dstfmt,
  1324.       sR, sG, sB, alpha);
  1325. }
  1326. dst += dstbpp;
  1327. src += srcbpp;
  1328. },
  1329. width);
  1330. src += srcskip;
  1331. dst += dstskip;
  1332. }
  1333. }
  1334. static void BlitNtoNKeyCopyAlpha(SDL_BlitInfo *info)
  1335. {
  1336. int width = info->d_width;
  1337. int height = info->d_height;
  1338. Uint8 *src = info->s_pixels;
  1339. int srcskip = info->s_skip;
  1340. Uint8 *dst = info->d_pixels;
  1341. int dstskip = info->d_skip;
  1342. Uint32 ckey = info->src->colorkey;
  1343. SDL_PixelFormat *srcfmt = info->src;
  1344. SDL_PixelFormat *dstfmt = info->dst;
  1345. Uint32 rgbmask = ~srcfmt->Amask;
  1346. Uint8 srcbpp;
  1347. Uint8 dstbpp;
  1348. Uint32 pixel;
  1349. Uint8  sR, sG, sB, sA;
  1350. /* Set up some basic variables */
  1351. srcbpp = srcfmt->BytesPerPixel;
  1352. dstbpp = dstfmt->BytesPerPixel;
  1353. ckey &= rgbmask;
  1354. /* FIXME: should map alpha to [0..255] correctly! */
  1355. while ( height-- ) {
  1356. DUFFS_LOOP(
  1357. {
  1358. DISEMBLE_RGBA(src, srcbpp, srcfmt, pixel,
  1359.       sR, sG, sB, sA);
  1360. if ( (pixel & rgbmask) != ckey ) {
  1361.   ASSEMBLE_RGBA(dst, dstbpp, dstfmt,
  1362. sR, sG, sB, sA);
  1363. }
  1364. dst += dstbpp;
  1365. src += srcbpp;
  1366. },
  1367. width);
  1368. src += srcskip;
  1369. dst += dstskip;
  1370. }
  1371. }
  1372. /* Normal N to N optimized blitters */
  1373. struct blit_table {
  1374. Uint32 srcR, srcG, srcB;
  1375. int dstbpp;
  1376. Uint32 dstR, dstG, dstB;
  1377. Uint32 cpu_flags;
  1378. void *aux_data;
  1379. SDL_loblit blitfunc;
  1380.         enum { NO_ALPHA, SET_ALPHA, COPY_ALPHA } alpha;
  1381. };
  1382. static const struct blit_table normal_blit_1[] = {
  1383. /* Default for 8-bit RGB source, an invalid combination */
  1384. { 0,0,0, 0, 0,0,0, 0, NULL, NULL },
  1385. };
  1386. static const struct blit_table normal_blit_2[] = {
  1387. #ifdef USE_ASMBLIT
  1388.     { 0x0000F800,0x000007E0,0x0000001F, 2, 0x0000001F,0x000007E0,0x0000F800,
  1389.       0, ConvertX86p16_16BGR565, ConvertX86, NO_ALPHA },
  1390.     { 0x0000F800,0x000007E0,0x0000001F, 2, 0x00007C00,0x000003E0,0x0000001F,
  1391.       0, ConvertX86p16_16RGB555, ConvertX86, NO_ALPHA },
  1392.     { 0x0000F800,0x000007E0,0x0000001F, 2, 0x0000001F,0x000003E0,0x00007C00,
  1393.       0, ConvertX86p16_16BGR555, ConvertX86, NO_ALPHA },
  1394. #endif
  1395.     { 0x0000F800,0x000007E0,0x0000001F, 4, 0x00FF0000,0x0000FF00,0x000000FF,
  1396.       0, NULL, Blit_RGB565_ARGB8888, SET_ALPHA },
  1397.     { 0x0000F800,0x000007E0,0x0000001F, 4, 0x000000FF,0x0000FF00,0x00FF0000,
  1398.       0, NULL, Blit_RGB565_ABGR8888, SET_ALPHA },
  1399.     { 0x0000F800,0x000007E0,0x0000001F, 4, 0xFF000000,0x00FF0000,0x0000FF00,
  1400.       0, NULL, Blit_RGB565_RGBA8888, SET_ALPHA },
  1401.     { 0x0000F800,0x000007E0,0x0000001F, 4, 0x0000FF00,0x00FF0000,0xFF000000,
  1402.       0, NULL, Blit_RGB565_BGRA8888, SET_ALPHA },
  1403.     /* Default for 16-bit RGB source, used if no other blitter matches */
  1404.     { 0,0,0, 0, 0,0,0, 0, NULL, BlitNtoN, 0 }
  1405. };
  1406. static const struct blit_table normal_blit_3[] = {
  1407. /* Default for 24-bit RGB source, never optimized */
  1408.     { 0,0,0, 0, 0,0,0, 0, NULL, BlitNtoN, 0 }
  1409. };
  1410. static const struct blit_table normal_blit_4[] = {
  1411. #ifdef USE_ASMBLIT
  1412.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x0000F800,0x000007E0,0x0000001F,
  1413.       MMX_CPU, ConvertMMXpII32_16RGB565, ConvertMMX, NO_ALPHA },
  1414.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x0000F800,0x000007E0,0x0000001F,
  1415.       0, ConvertX86p32_16RGB565, ConvertX86, NO_ALPHA },
  1416.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x0000001F,0x000007E0,0x0000F800,
  1417.       MMX_CPU, ConvertMMXpII32_16BGR565, ConvertMMX, NO_ALPHA },
  1418.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x0000001F,0x000007E0,0x0000F800,
  1419.       0, ConvertX86p32_16BGR565, ConvertX86, NO_ALPHA },
  1420.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x00007C00,0x000003E0,0x0000001F,
  1421.       MMX_CPU, ConvertMMXpII32_16RGB555, ConvertMMX, NO_ALPHA },
  1422.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x00007C00,0x000003E0,0x0000001F,
  1423.       0, ConvertX86p32_16RGB555, ConvertX86, NO_ALPHA },
  1424.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x0000001F,0x000003E0,0x00007C00,
  1425.       MMX_CPU, ConvertMMXpII32_16BGR555, ConvertMMX, NO_ALPHA },
  1426.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x0000001F,0x000003E0,0x00007C00,
  1427.       0, ConvertX86p32_16BGR555, ConvertX86, NO_ALPHA },
  1428.     { 0x00FF0000,0x0000FF00,0x000000FF, 3, 0x00FF0000,0x0000FF00,0x000000FF,
  1429.       0, ConvertX86p32_24RGB888, ConvertX86, NO_ALPHA },
  1430.     { 0x00FF0000,0x0000FF00,0x000000FF, 3, 0x000000FF,0x0000FF00,0x00FF0000,
  1431.       0, ConvertX86p32_24BGR888, ConvertX86, NO_ALPHA },
  1432.     { 0x00FF0000,0x0000FF00,0x000000FF, 4, 0x000000FF,0x0000FF00,0x00FF0000,
  1433.       0, ConvertX86p32_32BGR888, ConvertX86, NO_ALPHA },
  1434.     { 0x00FF0000,0x0000FF00,0x000000FF, 4, 0xFF000000,0x00FF0000,0x0000FF00,
  1435.       0, ConvertX86p32_32RGBA888, ConvertX86, NO_ALPHA },
  1436.     { 0x00FF0000,0x0000FF00,0x000000FF, 4, 0x0000FF00,0x00FF0000,0xFF000000,
  1437.       0, ConvertX86p32_32BGRA888, ConvertX86, NO_ALPHA },
  1438. #else
  1439.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x0000F800,0x000007E0,0x0000001F,
  1440.       0, NULL, Blit_RGB888_RGB565, NO_ALPHA },
  1441.     { 0x00FF0000,0x0000FF00,0x000000FF, 2, 0x00007C00,0x000003E0,0x0000001F,
  1442.       0, NULL, Blit_RGB888_RGB555, NO_ALPHA },
  1443. #endif
  1444. /* Default for 32-bit RGB source, used if no other blitter matches */
  1445. { 0,0,0, 0, 0,0,0, 0, NULL, BlitNtoN, 0 }
  1446. };
  1447. static const struct blit_table *normal_blit[] = {
  1448. normal_blit_1, normal_blit_2, normal_blit_3, normal_blit_4
  1449. };
  1450. SDL_loblit SDL_CalculateBlitN(SDL_Surface *surface, int blit_index)
  1451. {
  1452. struct private_swaccel *sdata;
  1453. SDL_PixelFormat *srcfmt;
  1454. SDL_PixelFormat *dstfmt;
  1455. const struct blit_table *table;
  1456. int which;
  1457. SDL_loblit blitfun;
  1458. /* Set up data for choosing the blit */
  1459. sdata = surface->map->sw_data;
  1460. srcfmt = surface->format;
  1461. dstfmt = surface->map->dst->format;
  1462. if ( blit_index & 2 ) {
  1463.         /* alpha or alpha+colorkey */
  1464.         return SDL_CalculateAlphaBlit(surface, blit_index);
  1465. }
  1466. /* We don't support destinations less than 8-bits */
  1467. if ( dstfmt->BitsPerPixel < 8 ) {
  1468. return(NULL);
  1469. }
  1470. if(blit_index == 1) {
  1471.     /* colorkey blit: Here we don't have too many options, mostly
  1472.        because RLE is the preferred fast way to deal with this.
  1473.        If a particular case turns out to be useful we'll add it. */
  1474.     if(srcfmt->BytesPerPixel == 2
  1475.        && surface->map->identity)
  1476. return Blit2to2Key;
  1477.     else if(dstfmt->BytesPerPixel == 1)
  1478. return BlitNto1Key;
  1479.     else {
  1480. if(srcfmt->Amask && dstfmt->Amask)
  1481.     return BlitNtoNKeyCopyAlpha;
  1482. else
  1483.     return BlitNtoNKey;
  1484.     }
  1485. }
  1486. blitfun = NULL;
  1487. if ( dstfmt->BitsPerPixel == 8 ) {
  1488. /* We assume 8-bit destinations are palettized */
  1489. if ( (srcfmt->BytesPerPixel == 4) &&
  1490.      (srcfmt->Rmask == 0x00FF0000) &&
  1491.      (srcfmt->Gmask == 0x0000FF00) &&
  1492.      (srcfmt->Bmask == 0x000000FF) ) {
  1493. if ( surface->map->table ) {
  1494. blitfun = Blit_RGB888_index8_map;
  1495. } else {
  1496. #ifdef USE_ASMBLIT
  1497. sdata->aux_data = ConvertX86p32_8RGB332;
  1498. blitfun = ConvertX86;
  1499. #else
  1500. blitfun = Blit_RGB888_index8;
  1501. #endif
  1502. }
  1503. } else {
  1504. blitfun = BlitNto1;
  1505. }
  1506. } else {
  1507. /* Now the meat, choose the blitter we want */
  1508.         int a_need = 0;
  1509. if(dstfmt->Amask)
  1510.     a_need = srcfmt->Amask ? COPY_ALPHA : SET_ALPHA;
  1511. table = normal_blit[srcfmt->BytesPerPixel-1];
  1512. for ( which=0; table[which].srcR; ++which ) {
  1513. if ( srcfmt->Rmask == table[which].srcR &&
  1514.      srcfmt->Gmask == table[which].srcG &&
  1515.      srcfmt->Bmask == table[which].srcB &&
  1516.      dstfmt->BytesPerPixel == table[which].dstbpp &&
  1517.      dstfmt->Rmask == table[which].dstR &&
  1518.      dstfmt->Gmask == table[which].dstG &&
  1519.      dstfmt->Bmask == table[which].dstB &&
  1520.      (a_need & table[which].alpha) == a_need &&
  1521.      (CPU_Flags()&table[which].cpu_flags) ==
  1522.      table[which].cpu_flags )
  1523. break;
  1524. }
  1525. sdata->aux_data = table[which].aux_data;
  1526. blitfun = table[which].blitfunc;
  1527. if(a_need == COPY_ALPHA && blitfun == BlitNtoN)
  1528.     blitfun = BlitNtoNCopyAlpha;
  1529. }
  1530. #ifdef DEBUG_ASM
  1531. #ifdef USE_ASMBLIT
  1532. if ( blitfun == ConvertMMX )
  1533. fprintf(stderr, "Using mmx blitn");
  1534. else
  1535. if ( blitfun == ConvertX86 )
  1536. fprintf(stderr, "Using asm blitn");
  1537. else
  1538. #endif
  1539. if ( (blitfun == SDL_BlitNtoN) || (blitfun == SDL_BlitNto1) )
  1540. fprintf(stderr, "Using C blitn");
  1541. else
  1542. fprintf(stderr, "Using optimized C blitn");
  1543. #endif /* DEBUG_ASM */
  1544. return(blitfun);
  1545. }