sw_blend.c 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <display/sw_draw.h>
  7. #ifdef CONFIG_GUI_API_BROM
  8. # include <brom_interface.h>
  9. #endif
  10. #ifndef ARRAY_SIZE
  11. # define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
  12. #endif
  13. /*Opacity mapping with bpp = 2*/
  14. static const uint8_t g_bpp2_opa_table[4] = {
  15. 0, 85, 170, 255
  16. };
  17. /*Opacity mapping with bpp = 4*/
  18. static const uint8_t g_bpp4_opa_table[16] = {
  19. 0, 17, 34, 51, 68, 85, 102, 119,
  20. 136, 153, 170, 187, 204, 221, 238, 255
  21. };
  22. void sw_blend_color_over_rgb565(void *dst, uint32_t src_color,
  23. uint16_t dst_pitch, uint16_t w, uint16_t h)
  24. {
  25. uint8_t *dst8 = dst;
  26. for (int j = h; j > 0; j--) {
  27. uint16_t *tmp_dst = (uint16_t *)dst8;
  28. for (int i = w; i > 0; i--) {
  29. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, src_color);
  30. tmp_dst++;
  31. }
  32. dst8 += dst_pitch;
  33. }
  34. }
  35. void sw_blend_color_over_rgb888(void *dst, uint32_t src_color,
  36. uint16_t dst_pitch, uint16_t w, uint16_t h)
  37. {
  38. uint8_t *dst8 = dst;
  39. for (int j = h; j > 0; j--) {
  40. uint8_t *tmp_dst = (uint8_t *)dst8;
  41. for (int i = w; i > 0; i--) {
  42. sw_color32_t col32 = {
  43. .a = 255,
  44. .r = tmp_dst[2],
  45. .g = tmp_dst[1],
  46. .b = tmp_dst[0],
  47. };
  48. col32.full = blend_argb8888_over_argb8888(col32.full, src_color);
  49. *tmp_dst++ = col32.b;
  50. *tmp_dst++ = col32.g;
  51. *tmp_dst++ = col32.r;
  52. }
  53. dst8 += dst_pitch;
  54. }
  55. }
  56. void sw_blend_color_over_argb8888(void *dst, uint32_t src_color,
  57. uint16_t dst_pitch, uint16_t w, uint16_t h)
  58. {
  59. uint8_t *dst8 = dst;
  60. for (int j = h; j > 0; j--) {
  61. uint32_t *tmp_dst = (uint32_t *)dst8;
  62. for (int i = w; i > 0; i--) {
  63. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, src_color);
  64. tmp_dst++;
  65. }
  66. dst8 += dst_pitch;
  67. }
  68. }
  69. void sw_blend_a8_over_rgb565(void *dst, const void *src, uint32_t src_color,
  70. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  71. {
  72. uint8_t src_opa = (src_color >> 24);
  73. #ifdef CONFIG_GUI_API_BROM_LEOPARD
  74. if (src_opa == 255) {
  75. p_brom_libgui_api->p_sw_blend_a8_over_rgb565(
  76. dst, src, src_color, dst_pitch, src_pitch, w, h);
  77. return;
  78. }
  79. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  80. const uint8_t *src8 = src;
  81. uint8_t *dst8 = dst;
  82. src_color &= ~0xFF000000;
  83. if (src_opa == 255) {
  84. for (int j = h; j > 0; j--) {
  85. const uint8_t *tmp_src = src8;
  86. uint16_t *tmp_dst = (uint16_t *)dst8;
  87. for (int i = w; i > 0; i--) {
  88. uint32_t color32 = src_color | ((uint32_t)*tmp_src << 24);
  89. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, color32);
  90. tmp_dst++;
  91. tmp_src++;
  92. }
  93. dst8 += dst_pitch;
  94. src8 += src_pitch;
  95. }
  96. } else {
  97. for (int j = h; j > 0; j--) {
  98. const uint8_t *tmp_src = src8;
  99. uint16_t *tmp_dst = (uint16_t *)dst8;
  100. for (int i = w; i > 0; i--) {
  101. uint8_t opa = (*tmp_src * src_opa) >> 8;
  102. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  103. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, color32);
  104. tmp_dst++;
  105. tmp_src++;
  106. }
  107. dst8 += dst_pitch;
  108. src8 += src_pitch;
  109. }
  110. }
  111. }
  112. void sw_blend_a8_over_rgb888(void *dst, const void *src, uint32_t src_color,
  113. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  114. {
  115. uint8_t src_opa = (src_color >> 24);
  116. const uint8_t *src8 = src;
  117. uint8_t *dst8 = dst;
  118. src_color &= ~0xFF000000;
  119. if (src_opa == 255) {
  120. for (int j = h; j > 0; j--) {
  121. const uint8_t *tmp_src = src8;
  122. uint8_t *tmp_dst = (uint8_t *)dst8;
  123. for (int i = w; i > 0; i--) {
  124. uint32_t color32 = src_color | ((uint32_t)*tmp_src << 24);
  125. sw_color32_t col32 = {
  126. .a = 255,
  127. .r = tmp_dst[2],
  128. .g = tmp_dst[1],
  129. .b = tmp_dst[0],
  130. };
  131. col32.full = blend_argb8888_over_argb8888(col32.full, color32);
  132. *tmp_dst++ = col32.b;
  133. *tmp_dst++ = col32.g;
  134. *tmp_dst++ = col32.r;
  135. tmp_src++;
  136. }
  137. dst8 += dst_pitch;
  138. src8 += src_pitch;
  139. }
  140. } else {
  141. for (int j = h; j > 0; j--) {
  142. const uint8_t *tmp_src = src8;
  143. uint8_t *tmp_dst = (uint8_t *)dst8;
  144. for (int i = w; i > 0; i--) {
  145. uint8_t opa = (*tmp_src * src_opa) >> 8;
  146. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  147. sw_color32_t col32 = {
  148. .a = 255,
  149. .r = tmp_dst[2],
  150. .g = tmp_dst[1],
  151. .b = tmp_dst[0],
  152. };
  153. col32.full = blend_argb8888_over_argb8888(col32.full, color32);
  154. *tmp_dst++ = col32.b;
  155. *tmp_dst++ = col32.g;
  156. *tmp_dst++ = col32.r;
  157. tmp_src++;
  158. }
  159. dst8 += dst_pitch;
  160. src8 += src_pitch;
  161. }
  162. }
  163. }
  164. void sw_blend_a8_over_argb8888(void *dst, const void *src, uint32_t src_color,
  165. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  166. {
  167. uint8_t src_opa = (src_color >> 24);
  168. #ifdef CONFIG_GUI_API_BROM_LEOPARD
  169. if (src_opa == 255) {
  170. p_brom_libgui_api->p_sw_blend_a8_over_argb8888(
  171. dst, src, src_color, dst_pitch, src_pitch, w, h);
  172. return;
  173. }
  174. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  175. const uint8_t *src8 = src;
  176. uint8_t *dst8 = dst;
  177. src_color &= ~0xFF000000;
  178. if (src_opa == 255) {
  179. for (int j = h; j > 0; j--) {
  180. const uint8_t *tmp_src = src8;
  181. uint32_t *tmp_dst = (uint32_t *)dst8;
  182. for (int i = w; i > 0; i--) {
  183. uint32_t color32 = src_color | ((uint32_t)*tmp_src << 24);
  184. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, color32);
  185. tmp_dst++;
  186. tmp_src++;
  187. }
  188. dst8 += dst_pitch;
  189. src8 += src_pitch;
  190. }
  191. } else {
  192. for (int j = h; j > 0; j--) {
  193. const uint8_t *tmp_src = src8;
  194. uint32_t *tmp_dst = (uint32_t *)dst8;
  195. for (int i = w; i > 0; i--) {
  196. uint8_t opa = (*tmp_src * src_opa) >> 8;
  197. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  198. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, color32);
  199. tmp_dst++;
  200. tmp_src++;
  201. }
  202. dst8 += dst_pitch;
  203. src8 += src_pitch;
  204. }
  205. }
  206. }
  207. void sw_blend_a4_over_rgb565(void *dst, const void *src, uint32_t src_color,
  208. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  209. uint16_t w, uint16_t h)
  210. {
  211. uint8_t src_opa = (src_color >> 24);
  212. const uint8_t *opa_table = g_bpp4_opa_table;
  213. uint8_t tmp_opa_table[ARRAY_SIZE(g_bpp4_opa_table)];
  214. if (src_opa < 255) {
  215. for (int i = 0; i < ARRAY_SIZE(g_bpp4_opa_table); i++)
  216. tmp_opa_table[i] = (g_bpp4_opa_table[i] * src_opa) >> 8;
  217. opa_table = tmp_opa_table;
  218. }
  219. const uint8_t *src8 = src;
  220. const uint8_t src_bpp = 4;
  221. const uint8_t src_bmask = (1 << src_bpp) - 1;
  222. const uint8_t src_bofs_max = 8 - src_bpp;
  223. uint8_t *dst8 = dst;
  224. src_color &= ~0xFF000000;
  225. for (int j = h; j > 0; j--) {
  226. const uint8_t *tmp_src = src8;
  227. uint16_t *tmp_dst = (uint16_t *)dst8;
  228. uint8_t bpos = src_bofs_max - src_bofs;
  229. for (int i = w; i > 0; i--) {
  230. uint8_t opa = opa_table[(*tmp_src >> bpos) & src_bmask];
  231. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  232. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, color32);
  233. tmp_dst++;
  234. if (bpos == 0) {
  235. bpos = src_bofs_max;
  236. tmp_src++;
  237. } else {
  238. bpos -= src_bpp;
  239. }
  240. }
  241. dst8 += dst_pitch;
  242. src8 += src_pitch;
  243. }
  244. }
  245. void sw_blend_a4_over_rgb888(void *dst, const void *src, uint32_t src_color,
  246. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  247. uint16_t w, uint16_t h)
  248. {
  249. uint8_t src_opa = (src_color >> 24);
  250. const uint8_t *opa_table = g_bpp4_opa_table;
  251. uint8_t tmp_opa_table[ARRAY_SIZE(g_bpp4_opa_table)];
  252. if (src_opa < 255) {
  253. for (int i = 0; i < ARRAY_SIZE(g_bpp4_opa_table); i++)
  254. tmp_opa_table[i] = (g_bpp4_opa_table[i] * src_opa) >> 8;
  255. opa_table = tmp_opa_table;
  256. }
  257. const uint8_t *src8 = src;
  258. const uint8_t src_bpp = 4;
  259. const uint8_t src_bmask = (1 << src_bpp) - 1;
  260. const uint8_t src_bofs_max = 8 - src_bpp;
  261. uint8_t *dst8 = dst;
  262. src_color &= ~0xFF000000;
  263. for (int j = h; j > 0; j--) {
  264. const uint8_t *tmp_src = src8;
  265. uint8_t *tmp_dst = (uint8_t *)dst8;
  266. uint8_t bpos = src_bofs_max - src_bofs;
  267. for (int i = w; i > 0; i--) {
  268. uint8_t opa = opa_table[(*tmp_src >> bpos) & src_bmask];
  269. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  270. sw_color32_t col32 = {
  271. .a = 255,
  272. .r = tmp_dst[2],
  273. .g = tmp_dst[1],
  274. .b = tmp_dst[0],
  275. };
  276. col32.full = blend_argb8888_over_argb8888(col32.full, color32);
  277. *tmp_dst++ = col32.b;
  278. *tmp_dst++ = col32.g;
  279. *tmp_dst++ = col32.r;
  280. if (bpos == 0) {
  281. bpos = src_bofs_max;
  282. tmp_src++;
  283. } else {
  284. bpos -= src_bpp;
  285. }
  286. }
  287. dst8 += dst_pitch;
  288. src8 += src_pitch;
  289. }
  290. }
  291. void sw_blend_a4_over_argb8888(void *dst, const void *src, uint32_t src_color,
  292. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  293. uint16_t w, uint16_t h)
  294. {
  295. uint8_t src_opa = (src_color >> 24);
  296. const uint8_t *opa_table = g_bpp4_opa_table;
  297. uint8_t tmp_opa_table[ARRAY_SIZE(g_bpp4_opa_table)];
  298. if (src_opa < 255) {
  299. for (int i = 0; i < ARRAY_SIZE(g_bpp4_opa_table); i++)
  300. tmp_opa_table[i] = (g_bpp4_opa_table[i] * src_opa) >> 8;
  301. opa_table = tmp_opa_table;
  302. }
  303. const uint8_t *src8 = src;
  304. const uint8_t src_bpp = 4;
  305. const uint8_t src_bmask = (1 << src_bpp) - 1;
  306. const uint8_t src_bofs_max = 8 - src_bpp;
  307. uint8_t *dst8 = dst;
  308. src_color &= ~0xFF000000;
  309. for (int j = h; j > 0; j--) {
  310. const uint8_t *tmp_src = src8;
  311. uint32_t *tmp_dst = (uint32_t *)dst8;
  312. uint8_t bpos = src_bofs_max - src_bofs;
  313. for (int i = w; i > 0; i--) {
  314. uint8_t opa = opa_table[(*tmp_src >> bpos) & src_bmask];
  315. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  316. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, color32);
  317. tmp_dst++;
  318. if (bpos == 0) {
  319. bpos = src_bofs_max;
  320. tmp_src++;
  321. } else {
  322. bpos -= src_bpp;
  323. }
  324. }
  325. dst8 += dst_pitch;
  326. src8 += src_pitch;
  327. }
  328. }
  329. void sw_blend_a2_over_rgb565(void *dst, const void *src, uint32_t src_color,
  330. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  331. uint16_t w, uint16_t h)
  332. {
  333. uint8_t src_opa = (src_color >> 24);
  334. const uint8_t *opa_table = g_bpp2_opa_table;
  335. uint8_t tmp_opa_table[ARRAY_SIZE(g_bpp2_opa_table)];
  336. if (src_opa < 255) {
  337. for (int i = 0; i < ARRAY_SIZE(g_bpp2_opa_table); i++)
  338. tmp_opa_table[i] = (g_bpp2_opa_table[i] * src_opa) >> 8;
  339. opa_table = tmp_opa_table;
  340. }
  341. const uint8_t *src8 = src;
  342. const uint8_t src_bpp = 2;
  343. const uint8_t src_bmask = (1 << src_bpp) - 1;
  344. const uint8_t src_bofs_max = 8 - src_bpp;
  345. uint8_t *dst8 = dst;
  346. src_color &= ~0xFF000000;
  347. for (int j = h; j > 0; j--) {
  348. const uint8_t *tmp_src = src8;
  349. uint16_t *tmp_dst = (uint16_t *)dst8;
  350. uint8_t bpos = src_bofs_max - src_bofs;
  351. for (int i = w; i > 0; i--) {
  352. uint8_t opa = opa_table[(*tmp_src >> bpos) & src_bmask];
  353. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  354. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, color32);
  355. tmp_dst++;
  356. if (bpos == 0) {
  357. bpos = src_bofs_max;
  358. tmp_src++;
  359. } else {
  360. bpos -= src_bpp;
  361. }
  362. }
  363. dst8 += dst_pitch;
  364. src8 += src_pitch;
  365. }
  366. }
  367. void sw_blend_a2_over_rgb888(void *dst, const void *src, uint32_t src_color,
  368. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  369. uint16_t w, uint16_t h)
  370. {
  371. uint8_t src_opa = (src_color >> 24);
  372. const uint8_t *opa_table = g_bpp2_opa_table;
  373. uint8_t tmp_opa_table[ARRAY_SIZE(g_bpp2_opa_table)];
  374. if (src_opa < 255) {
  375. for (int i = 0; i < ARRAY_SIZE(g_bpp2_opa_table); i++)
  376. tmp_opa_table[i] = (g_bpp2_opa_table[i] * src_opa) >> 8;
  377. opa_table = tmp_opa_table;
  378. }
  379. const uint8_t *src8 = src;
  380. const uint8_t src_bpp = 2;
  381. const uint8_t src_bmask = (1 << src_bpp) - 1;
  382. const uint8_t src_bofs_max = 8 - src_bpp;
  383. uint8_t *dst8 = dst;
  384. src_color &= ~0xFF000000;
  385. for (int j = h; j > 0; j--) {
  386. const uint8_t *tmp_src = src8;
  387. uint8_t *tmp_dst = (uint8_t *)dst8;
  388. uint8_t bpos = src_bofs_max - src_bofs;
  389. for (int i = w; i > 0; i--) {
  390. uint8_t opa = opa_table[(*tmp_src >> bpos) & src_bmask];
  391. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  392. sw_color32_t col32 = {
  393. .a = 255,
  394. .r = tmp_dst[2],
  395. .g = tmp_dst[1],
  396. .b = tmp_dst[0],
  397. };
  398. col32.full = blend_argb8888_over_argb8888(col32.full, color32);
  399. *tmp_dst++ = col32.b;
  400. *tmp_dst++ = col32.g;
  401. *tmp_dst++ = col32.r;
  402. if (bpos == 0) {
  403. bpos = src_bofs_max;
  404. tmp_src++;
  405. } else {
  406. bpos -= src_bpp;
  407. }
  408. }
  409. dst8 += dst_pitch;
  410. src8 += src_pitch;
  411. }
  412. }
  413. void sw_blend_a2_over_argb8888(void *dst, const void *src, uint32_t src_color,
  414. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  415. uint16_t w, uint16_t h)
  416. {
  417. uint8_t src_opa = (src_color >> 24);
  418. const uint8_t *opa_table = g_bpp2_opa_table;
  419. uint8_t tmp_opa_table[ARRAY_SIZE(g_bpp2_opa_table)];
  420. if (src_opa < 255) {
  421. for (int i = 0; i < ARRAY_SIZE(g_bpp2_opa_table); i++)
  422. tmp_opa_table[i] = (g_bpp2_opa_table[i] * src_opa) >> 8;
  423. opa_table = tmp_opa_table;
  424. }
  425. const uint8_t *src8 = src;
  426. const uint8_t src_bpp = 2;
  427. const uint8_t src_bmask = (1 << src_bpp) - 1;
  428. const uint8_t src_bofs_max = 8 - src_bpp;
  429. uint8_t *dst8 = dst;
  430. src_color &= ~0xFF000000;
  431. for (int j = h; j > 0; j--) {
  432. const uint8_t *tmp_src = src8;
  433. uint32_t *tmp_dst = (uint32_t *)dst8;
  434. uint8_t bpos = src_bofs_max - src_bofs;
  435. for (int i = w; i > 0; i--) {
  436. uint8_t opa = opa_table[(*tmp_src >> bpos) & src_bmask];
  437. uint32_t color32 = src_color | ((uint32_t)opa << 24);
  438. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, color32);
  439. tmp_dst++;
  440. if (bpos == 0) {
  441. bpos = src_bofs_max;
  442. tmp_src++;
  443. } else {
  444. bpos -= src_bpp;
  445. }
  446. }
  447. dst8 += dst_pitch;
  448. src8 += src_pitch;
  449. }
  450. }
  451. void sw_blend_a1_over_rgb565(void *dst, const void *src, uint32_t src_color,
  452. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  453. uint16_t w, uint16_t h)
  454. {
  455. const uint8_t *src8 = src;
  456. uint8_t *dst8 = dst;
  457. for (int j = h; j > 0; j--) {
  458. const uint8_t *tmp_src = src8;
  459. uint16_t *tmp_dst = (uint16_t *)dst8;
  460. uint8_t bmask = 0x80 >> src_bofs;
  461. for (int i = w; i > 0; i--) {
  462. uint8_t opa = *tmp_src & bmask;
  463. if (opa > 0) {
  464. uint32_t color32 = src_color;
  465. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, color32);
  466. }
  467. tmp_dst++;
  468. bmask >>= 1;
  469. if (bmask == 0) {
  470. bmask = 0x80;
  471. tmp_src++;
  472. }
  473. }
  474. dst8 += dst_pitch;
  475. src8 += src_pitch;
  476. }
  477. }
  478. void sw_blend_a1_over_rgb888(void *dst, const void *src, uint32_t src_color,
  479. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  480. uint16_t w, uint16_t h)
  481. {
  482. const uint8_t *src8 = src;
  483. uint8_t *dst8 = dst;
  484. for (int j = h; j > 0; j--) {
  485. const uint8_t *tmp_src = src8;
  486. uint8_t *tmp_dst = (uint8_t *)dst8;
  487. uint8_t bmask = 0x80 >> src_bofs;
  488. for (int i = w; i > 0; i--) {
  489. uint8_t opa = *tmp_src & bmask;
  490. if (opa > 0) {
  491. uint32_t color32 = src_color;
  492. sw_color32_t col32 = {
  493. .a = 255,
  494. .r = tmp_dst[2],
  495. .g = tmp_dst[1],
  496. .b = tmp_dst[0],
  497. };
  498. col32.full = blend_argb8888_over_argb8888(col32.full, color32);
  499. tmp_dst[0] = col32.b;
  500. tmp_dst[1] = col32.g;
  501. tmp_dst[2] = col32.r;
  502. }
  503. tmp_dst += 3;
  504. bmask >>= 1;
  505. if (bmask == 0) {
  506. bmask = 0x80;
  507. tmp_src++;
  508. }
  509. }
  510. dst8 += dst_pitch;
  511. src8 += src_pitch;
  512. }
  513. }
  514. void sw_blend_a1_over_argb8888(void *dst, const void *src, uint32_t src_color,
  515. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  516. uint16_t w, uint16_t h)
  517. {
  518. const uint8_t *src8 = src;
  519. uint8_t *dst8 = dst;
  520. for (int j = h; j > 0; j--) {
  521. const uint8_t *tmp_src = src8;
  522. uint32_t *tmp_dst = (uint32_t *)dst8;
  523. uint8_t bmask = 0x80 >> src_bofs;
  524. for (int i = w; i > 0; i--) {
  525. uint8_t opa = *tmp_src & bmask;
  526. if (opa > 0) {
  527. uint32_t color32 = src_color;
  528. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, color32);
  529. }
  530. tmp_dst++;
  531. bmask >>= 1;
  532. if (bmask == 0) {
  533. bmask = 0x80;
  534. tmp_src++;
  535. }
  536. }
  537. dst8 += dst_pitch;
  538. src8 += src_pitch;
  539. }
  540. }
  541. void sw_blend_index8_over_rgb565(void *dst, const void *src, const uint32_t *src_clut,
  542. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  543. {
  544. const uint8_t *src8 = (uint8_t *)src;
  545. uint8_t *dst8 = dst;
  546. for (int j = h; j > 0; j--) {
  547. const uint8_t *tmp_src = (uint8_t *)src8;
  548. uint16_t *tmp_dst = (uint16_t *)dst8;
  549. for (int i = w; i > 0; i--) {
  550. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, src_clut[*tmp_src]);
  551. tmp_dst++;
  552. tmp_src++;
  553. }
  554. src8 += src_pitch;
  555. dst8 += dst_pitch;
  556. }
  557. }
  558. void sw_blend_index8_over_rgb888(void *dst, const void *src, const uint32_t *src_clut,
  559. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  560. {
  561. const uint8_t *src8 = (uint8_t *)src;
  562. uint8_t *dst8 = dst;
  563. for (int j = h; j > 0; j--) {
  564. const uint8_t *tmp_src = (uint8_t *)src8;
  565. uint8_t *tmp_dst = (uint8_t *)dst8;
  566. for (int i = w; i > 0; i--) {
  567. sw_color32_t col32 = {
  568. .a = 255,
  569. .r = tmp_dst[2],
  570. .g = tmp_dst[1],
  571. .b = tmp_dst[0],
  572. };
  573. col32.full = blend_argb8888_over_argb8888(col32.full, src_clut[*tmp_src]);
  574. *tmp_dst++ = col32.b;
  575. *tmp_dst++ = col32.g;
  576. *tmp_dst++ = col32.r;
  577. tmp_src++;
  578. }
  579. src8 += src_pitch;
  580. dst8 += dst_pitch;
  581. }
  582. }
  583. void sw_blend_index8_over_argb8888(void *dst, const void *src, const uint32_t *src_clut,
  584. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  585. {
  586. const uint8_t *src8 = (uint8_t *)src;
  587. uint8_t *dst8 = dst;
  588. for (int j = h; j > 0; j--) {
  589. const uint8_t *tmp_src = (uint8_t *)src8;
  590. uint32_t *tmp_dst = (uint32_t *)dst8;
  591. for (int i = w; i > 0; i--) {
  592. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, src_clut[*tmp_src]);
  593. tmp_dst++;
  594. tmp_src++;
  595. }
  596. src8 += src_pitch;
  597. dst8 += dst_pitch;
  598. }
  599. }
  600. static void sw_blend_index124_over_rgb565(
  601. void *dst, const void *src, const uint32_t *src_clut,
  602. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  603. uint8_t src_bpp, uint16_t w, uint16_t h)
  604. {
  605. const uint8_t *src8 = (uint8_t *)src;
  606. const uint8_t src_bmask = (1 << src_bpp) - 1;
  607. const uint8_t src_bofs_max = 8 - src_bpp;
  608. uint8_t *dst8 = dst;
  609. for (int j = h; j > 0; j--) {
  610. const uint8_t *tmp_src = (uint8_t *)src8;
  611. uint16_t *tmp_dst = (uint16_t *)dst8;
  612. uint8_t src_bpos = src_bofs_max - src_bofs;
  613. for (int i = w; i > 0; i--) {
  614. uint8_t idx = (*tmp_src >> src_bpos) & src_bmask;
  615. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, src_clut[idx]);
  616. tmp_dst++;
  617. if (src_bpos == 0) {
  618. src_bpos = src_bofs_max;
  619. tmp_src++;
  620. } else {
  621. src_bpos -= src_bpp;
  622. }
  623. }
  624. src8 += src_pitch;
  625. dst8 += dst_pitch;
  626. }
  627. }
  628. static void sw_blend_index124_over_rgb888(
  629. void *dst, const void *src, const uint32_t *src_clut,
  630. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  631. uint8_t src_bpp, uint16_t w, uint16_t h)
  632. {
  633. const uint8_t *src8 = (uint8_t *)src;
  634. const uint8_t src_bmask = (1 << src_bpp) - 1;
  635. const uint8_t src_bofs_max = 8 - src_bpp;
  636. uint8_t *dst8 = dst;
  637. for (int j = h; j > 0; j--) {
  638. const uint8_t *tmp_src = (uint8_t *)src8;
  639. uint8_t *tmp_dst = (uint8_t *)dst8;
  640. uint8_t src_bpos = src_bofs_max - src_bofs;
  641. for (int i = w; i > 0; i--) {
  642. uint8_t idx = (*tmp_src >> src_bpos) & src_bmask;
  643. sw_color32_t col32 = {
  644. .a = 255,
  645. .r = tmp_dst[2],
  646. .g = tmp_dst[1],
  647. .b = tmp_dst[0],
  648. };
  649. col32.full = blend_argb8888_over_argb8888(col32.full, src_clut[idx]);
  650. *tmp_dst++ = col32.b;
  651. *tmp_dst++ = col32.g;
  652. *tmp_dst++ = col32.r;
  653. if (src_bpos == 0) {
  654. src_bpos = src_bofs_max;
  655. tmp_src++;
  656. } else {
  657. src_bpos -= src_bpp;
  658. }
  659. }
  660. src8 += src_pitch;
  661. dst8 += dst_pitch;
  662. }
  663. }
  664. static void sw_blend_index124_over_argb8888(
  665. void *dst, const void *src, const uint32_t *src_clut,
  666. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  667. uint8_t src_bpp, uint16_t w, uint16_t h)
  668. {
  669. const uint8_t *src8 = (uint8_t *)src;
  670. const uint8_t src_bmask = (1 << src_bpp) - 1;
  671. const uint8_t src_bofs_max = 8 - src_bpp;
  672. uint8_t *dst8 = dst;
  673. for (int j = h; j > 0; j--) {
  674. const uint8_t *tmp_src = (uint8_t *)src8;
  675. uint32_t *tmp_dst = (uint32_t *)dst8;
  676. uint8_t src_bpos = src_bofs_max - src_bofs;
  677. for (int i = w; i > 0; i--) {
  678. uint8_t idx = (*tmp_src >> src_bpos) & src_bmask;
  679. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, src_clut[idx]);
  680. tmp_dst++;
  681. if (src_bpos == 0) {
  682. src_bpos = src_bofs_max;
  683. tmp_src++;
  684. } else {
  685. src_bpos -= src_bpp;
  686. }
  687. }
  688. src8 += src_pitch;
  689. dst8 += dst_pitch;
  690. }
  691. }
  692. void sw_blend_index4_over_rgb565(
  693. void *dst, const void *src, const uint32_t *src_clut,
  694. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  695. uint16_t w, uint16_t h)
  696. {
  697. sw_blend_index124_over_rgb565(dst, src, src_clut, dst_pitch, src_pitch,
  698. src_bofs, 4, w, h);
  699. }
  700. void sw_blend_index4_over_rgb888(
  701. void *dst, const void *src, const uint32_t *src_clut,
  702. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  703. uint16_t w, uint16_t h)
  704. {
  705. sw_blend_index124_over_rgb888(dst, src, src_clut, dst_pitch, src_pitch,
  706. src_bofs, 4, w, h);
  707. }
  708. void sw_blend_index4_over_argb8888(
  709. void *dst, const void *src, const uint32_t *src_clut,
  710. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  711. uint16_t w, uint16_t h)
  712. {
  713. sw_blend_index124_over_argb8888(dst, src, src_clut, dst_pitch, src_pitch,
  714. src_bofs, 4, w, h);
  715. }
  716. void sw_blend_index2_over_rgb565(
  717. void *dst, const void *src, const uint32_t *src_clut,
  718. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  719. uint16_t w, uint16_t h)
  720. {
  721. sw_blend_index124_over_rgb565(dst, src, src_clut, dst_pitch, src_pitch,
  722. src_bofs, 2, w, h);
  723. }
  724. void sw_blend_index2_over_rgb888(
  725. void *dst, const void *src, const uint32_t *src_clut,
  726. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  727. uint16_t w, uint16_t h)
  728. {
  729. sw_blend_index124_over_rgb888(dst, src, src_clut, dst_pitch, src_pitch,
  730. src_bofs, 2, w, h);
  731. }
  732. void sw_blend_index2_over_argb8888(
  733. void *dst, const void *src, const uint32_t *src_clut,
  734. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  735. uint16_t w, uint16_t h)
  736. {
  737. sw_blend_index124_over_argb8888(dst, src, src_clut, dst_pitch, src_pitch,
  738. src_bofs, 2, w, h);
  739. }
  740. void sw_blend_index1_over_rgb565(
  741. void *dst, const void *src, const uint32_t *src_clut,
  742. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  743. uint16_t w, uint16_t h)
  744. {
  745. sw_blend_index124_over_rgb565(dst, src, src_clut, dst_pitch, src_pitch,
  746. src_bofs, 1, w, h);
  747. }
  748. void sw_blend_index1_over_rgb888(
  749. void *dst, const void *src, const uint32_t *src_clut,
  750. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  751. uint16_t w, uint16_t h)
  752. {
  753. sw_blend_index124_over_rgb888(dst, src, src_clut, dst_pitch, src_pitch,
  754. src_bofs, 1, w, h);
  755. }
  756. void sw_blend_index1_over_argb8888(
  757. void *dst, const void *src, const uint32_t *src_clut,
  758. uint16_t dst_pitch, uint16_t src_pitch, uint8_t src_bofs,
  759. uint16_t w, uint16_t h)
  760. {
  761. sw_blend_index124_over_argb8888(dst, src, src_clut, dst_pitch, src_pitch,
  762. src_bofs, 1, w, h);
  763. }
  764. void sw_blend_rgb565a8_over_rgb565(void *dst, const void *src, const void *src_opa,
  765. uint16_t dst_pitch, uint16_t src_pitch, uint16_t src_opa_pitch, uint16_t w, uint16_t h)
  766. {
  767. const uint8_t *src8 = src;
  768. const uint8_t *src_opa8 = src_opa;
  769. uint8_t *dst8 = dst;
  770. for (int j = h; j > 0; j--) {
  771. const uint16_t *tmp_src = (uint16_t *)src8;
  772. const uint8_t *tmp_src_opa = src_opa8;
  773. uint16_t *tmp_dst = (uint16_t *)dst8;
  774. for (int i = w; i > 0; i--) {
  775. sw_color16a8_t col24 = {
  776. .rgb = *tmp_src,
  777. .a = *tmp_src_opa,
  778. };
  779. *tmp_dst = blend_argb8565_over_rgb565(*tmp_dst, (uint8_t *)&col24);
  780. tmp_dst++;
  781. tmp_src++;
  782. tmp_src_opa++;
  783. }
  784. dst8 += dst_pitch;
  785. src8 += src_pitch;
  786. src_opa8 += src_opa_pitch;
  787. }
  788. }
  789. void sw_blend_rgb565a8_over_rgb888(void *dst, const void *src, const void *src_opa,
  790. uint16_t dst_pitch, uint16_t src_pitch, uint16_t src_opa_pitch, uint16_t w, uint16_t h)
  791. {
  792. const uint8_t *src8 = src;
  793. const uint8_t *src_opa8 = src_opa;
  794. uint8_t *dst8 = dst;
  795. for (int j = h; j > 0; j--) {
  796. const uint16_t *tmp_src = (uint16_t *)src8;
  797. const uint8_t *tmp_src_opa = src_opa8;
  798. uint8_t *tmp_dst = (uint8_t *)dst8;
  799. for (int i = w; i > 0; i--) {
  800. sw_color16a8_t col24 = {
  801. .rgb = *tmp_src,
  802. .a = *tmp_src_opa,
  803. };
  804. sw_color32_t col32 = {
  805. .a = 255,
  806. .r = tmp_dst[2],
  807. .g = tmp_dst[1],
  808. .b = tmp_dst[0],
  809. };
  810. col32.full = blend_argb8565_over_argb8888(col32.full, (uint8_t *)&col24);
  811. *tmp_dst++ = col32.b;
  812. *tmp_dst++ = col32.g;
  813. *tmp_dst++ = col32.r;
  814. tmp_src++;
  815. tmp_src_opa++;
  816. }
  817. dst8 += dst_pitch;
  818. src8 += src_pitch;
  819. src_opa8 += src_opa_pitch;
  820. }
  821. }
  822. void sw_blend_rgb565a8_over_argb8888(void *dst, const void *src, const void *src_opa,
  823. uint16_t dst_pitch, uint16_t src_pitch, uint16_t src_opa_pitch, uint16_t w, uint16_t h)
  824. {
  825. const uint8_t *src8 = src;
  826. const uint8_t *src_opa8 = src_opa;
  827. uint8_t *dst8 = dst;
  828. for (int j = h; j > 0; j--) {
  829. const uint16_t *tmp_src = (uint16_t *)src8;
  830. const uint8_t *tmp_src_opa = src_opa8;
  831. uint32_t *tmp_dst = (uint32_t *)dst8;
  832. for (int i = w; i > 0; i--) {
  833. sw_color16a8_t col24 = {
  834. .rgb = *tmp_src,
  835. .a = *tmp_src_opa,
  836. };
  837. *tmp_dst = blend_argb8565_over_argb8888(*tmp_dst, (uint8_t *)&col24);
  838. tmp_dst++;
  839. tmp_src++;
  840. tmp_src_opa++;
  841. }
  842. dst8 += dst_pitch;
  843. src8 += src_pitch;
  844. src_opa8 += src_opa_pitch;
  845. }
  846. }
  847. void sw_blend_argb8565_over_rgb565(void *dst, const void *src,
  848. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  849. {
  850. #ifdef CONFIG_GUI_API_BROM_LARK
  851. if (src_pitch % 3 == 0) {
  852. p_brom_libgui_api->p_sw_blend_argb8565_over_rgb565(
  853. dst, src, dst_pitch / 2, src_pitch / 3, w, h);
  854. return;
  855. }
  856. #endif
  857. #ifdef CONFIG_GUI_API_BROM_LEOPARD
  858. p_brom_libgui_api->p_sw_blend_argb8565_over_rgb565(
  859. dst, src, dst_pitch, src_pitch, w, h);
  860. #else
  861. const uint8_t *src8 = src;
  862. uint8_t *dst8 = dst;
  863. uint8_t src_x_step = 3;
  864. for (int j = h; j > 0; j--) {
  865. const uint8_t *tmp_src = src8;
  866. uint16_t *tmp_dst = (uint16_t *)dst8;
  867. for (int i = w; i > 0; i--) {
  868. *tmp_dst = blend_argb8565_over_rgb565(*tmp_dst, tmp_src);
  869. tmp_dst++;
  870. tmp_src += src_x_step;
  871. }
  872. dst8 += dst_pitch;
  873. src8 += src_pitch;
  874. }
  875. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  876. }
  877. void sw_blend_argb8565_over_rgb888(void *dst, const void *src,
  878. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  879. {
  880. const uint8_t *src8 = src;
  881. uint8_t *dst8 = dst;
  882. uint8_t src_x_step = 3;
  883. for (int j = h; j > 0; j--) {
  884. const uint8_t *tmp_src = src8;
  885. uint8_t *tmp_dst = (uint8_t *)dst8;
  886. for (int i = w; i > 0; i--) {
  887. sw_color32_t col32 = {
  888. .a = 255,
  889. .r = tmp_dst[2],
  890. .g = tmp_dst[1],
  891. .b = tmp_dst[0],
  892. };
  893. col32.full = blend_argb8565_over_argb8888(col32.full, tmp_src);
  894. *tmp_dst++ = col32.b;
  895. *tmp_dst++ = col32.g;
  896. *tmp_dst++ = col32.r;
  897. tmp_src += src_x_step;
  898. }
  899. dst8 += dst_pitch;
  900. src8 += src_pitch;
  901. }
  902. }
  903. void sw_blend_argb8565_over_argb8888(void *dst, const void *src,
  904. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  905. {
  906. #ifdef CONFIG_GUI_API_BROM_LEOPARD
  907. p_brom_libgui_api->p_sw_blend_argb8565_over_argb8888(
  908. dst, src, dst_pitch, src_pitch, w, h);
  909. #else
  910. const uint8_t *src8 = src;
  911. uint8_t *dst8 = dst;
  912. uint8_t src_x_step = 3;
  913. for (int j = h; j > 0; j--) {
  914. const uint8_t *tmp_src = src8;
  915. uint32_t *tmp_dst = (uint32_t *)dst8;
  916. for (int i = w; i > 0; i--) {
  917. *tmp_dst = blend_argb8565_over_argb8888(*tmp_dst, tmp_src);
  918. tmp_dst++;
  919. tmp_src += src_x_step;
  920. }
  921. dst8 += dst_pitch;
  922. src8 += src_pitch;
  923. }
  924. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  925. }
  926. void sw_blend_argb6666_over_rgb565(void *dst, const void *src,
  927. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  928. {
  929. #ifdef CONFIG_GUI_API_BROM_LEOPARD
  930. p_brom_libgui_api->p_sw_blend_argb6666_over_rgb565(
  931. dst, src, dst_pitch, src_pitch, w, h);
  932. #else
  933. const uint8_t *src8 = src;
  934. uint8_t *dst8 = dst;
  935. uint8_t src_x_step = 3;
  936. for (int j = h; j > 0; j--) {
  937. const uint8_t *tmp_src = src8;
  938. uint16_t *tmp_dst = (uint16_t *)dst8;
  939. for (int i = w; i > 0; i--) {
  940. *tmp_dst = blend_argb6666_over_rgb565(*tmp_dst, tmp_src);
  941. tmp_dst++;
  942. tmp_src += src_x_step;
  943. }
  944. dst8 += dst_pitch;
  945. src8 += src_pitch;
  946. }
  947. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  948. }
  949. void sw_blend_argb6666_over_rgb888(void *dst, const void *src,
  950. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  951. {
  952. const uint8_t *src8 = src;
  953. uint8_t *dst8 = dst;
  954. uint8_t src_x_step = 3;
  955. for (int j = h; j > 0; j--) {
  956. const uint8_t *tmp_src = src8;
  957. uint8_t *tmp_dst = (uint8_t *)dst8;
  958. for (int i = w; i > 0; i--) {
  959. sw_color32_t col32 = {
  960. .a = 255,
  961. .r = tmp_dst[2],
  962. .g = tmp_dst[1],
  963. .b = tmp_dst[0],
  964. };
  965. col32.full = blend_argb6666_over_argb8888(col32.full, tmp_src);
  966. *tmp_dst++ = col32.b;
  967. *tmp_dst++ = col32.g;
  968. *tmp_dst++ = col32.r;
  969. tmp_src += src_x_step;
  970. }
  971. dst8 += dst_pitch;
  972. src8 += src_pitch;
  973. }
  974. }
  975. void sw_blend_argb6666_over_argb8888(void *dst, const void *src,
  976. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  977. {
  978. #ifdef CONFIG_GUI_API_BROM_LEOPARD
  979. p_brom_libgui_api->p_sw_blend_argb6666_over_argb8888(
  980. dst, src, dst_pitch, src_pitch, w, h);
  981. #else
  982. const uint8_t *src8 = src;
  983. uint8_t *dst8 = dst;
  984. uint8_t src_x_step = 3;
  985. for (int j = h; j > 0; j--) {
  986. const uint8_t *tmp_src = src8;
  987. uint32_t *tmp_dst = (uint32_t *)dst8;
  988. for (int i = w; i > 0; i--) {
  989. *tmp_dst = blend_argb6666_over_argb8888(*tmp_dst, tmp_src);
  990. tmp_dst++;
  991. tmp_src += src_x_step;
  992. }
  993. dst8 += dst_pitch;
  994. src8 += src_pitch;
  995. }
  996. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  997. }
  998. void sw_blend_argb1555_over_rgb565(void *dst, const void *src,
  999. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  1000. {
  1001. const uint8_t *src8 = src;
  1002. uint8_t *dst8 = dst;
  1003. for (int j = h; j > 0; j--) {
  1004. const uint16_t *tmp_src = (uint16_t *)src8;
  1005. uint16_t *tmp_dst = (uint16_t *)dst8;
  1006. for (int i = w; i > 0; i--) {
  1007. *tmp_dst = blend_argb1555_over_rgb565(*tmp_dst, *tmp_src);
  1008. tmp_dst++;
  1009. tmp_src++;
  1010. }
  1011. dst8 += dst_pitch;
  1012. src8 += src_pitch;
  1013. }
  1014. }
  1015. void sw_blend_argb1555_over_rgb888(void *dst, const void *src,
  1016. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  1017. {
  1018. const uint8_t *src8 = src;
  1019. uint8_t *dst8 = dst;
  1020. for (int j = h; j > 0; j--) {
  1021. const uint16_t *tmp_src = (uint16_t *)src8;
  1022. uint8_t *tmp_dst = (uint8_t *)dst8;
  1023. for (int i = w; i > 0; i--) {
  1024. sw_color32_t col32 = {
  1025. .a = 255,
  1026. .r = tmp_dst[2],
  1027. .g = tmp_dst[1],
  1028. .b = tmp_dst[0],
  1029. };
  1030. col32.full = blend_argb1555_over_argb8888(col32.full, *tmp_src);
  1031. *tmp_dst++ = col32.b;
  1032. *tmp_dst++ = col32.g;
  1033. *tmp_dst++ = col32.r;
  1034. tmp_src++;
  1035. }
  1036. dst8 += dst_pitch;
  1037. src8 += src_pitch;
  1038. }
  1039. }
  1040. void sw_blend_argb1555_over_argb8888(void *dst, const void *src,
  1041. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  1042. {
  1043. const uint8_t *src8 = src;
  1044. uint8_t *dst8 = dst;
  1045. for (int j = h; j > 0; j--) {
  1046. const uint16_t *tmp_src = (uint16_t *)src8;
  1047. uint32_t *tmp_dst = (uint32_t *)dst8;
  1048. for (int i = w; i > 0; i--) {
  1049. *tmp_dst = blend_argb1555_over_argb8888(*tmp_dst, *tmp_src);
  1050. tmp_dst++;
  1051. tmp_src++;
  1052. }
  1053. dst8 += dst_pitch;
  1054. src8 += src_pitch;
  1055. }
  1056. }
  1057. void sw_blend_argb8888_over_rgb565(void *dst, const void *src,
  1058. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  1059. {
  1060. #ifdef CONFIG_GUI_API_BROM_LARK
  1061. p_brom_libgui_api->p_sw_blend_argb8888_over_rgb565(
  1062. dst, src, dst_pitch / 2, src_pitch / 4, w, h);
  1063. #elif defined(CONFIG_GUI_API_BROM_LEOPARD)
  1064. p_brom_libgui_api->p_sw_blend_argb8888_over_rgb565(
  1065. dst, src, dst_pitch, src_pitch, w, h);
  1066. #else
  1067. const uint8_t *src8 = src;
  1068. uint8_t *dst8 = dst;
  1069. for (int j = h; j > 0; j--) {
  1070. const uint32_t *tmp_src = (uint32_t *)src8;
  1071. uint16_t *tmp_dst = (uint16_t *)dst8;
  1072. for (int i = w; i > 0; i--) {
  1073. *tmp_dst = blend_argb8888_over_rgb565(*tmp_dst, *tmp_src);
  1074. tmp_dst++;
  1075. tmp_src++;
  1076. }
  1077. src8 += src_pitch;
  1078. dst8 += dst_pitch;
  1079. }
  1080. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  1081. }
  1082. void sw_blend_argb8888_over_rgb888(void *dst, const void *src,
  1083. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  1084. {
  1085. const uint8_t *src8 = src;
  1086. uint8_t *dst8 = dst;
  1087. for (int j = h; j > 0; j--) {
  1088. const uint32_t *tmp_src = (uint32_t *)src8;
  1089. uint8_t *tmp_dst = (uint8_t *)dst8;
  1090. for (int i = w; i > 0; i--) {
  1091. sw_color32_t col32 = {
  1092. .a = 255,
  1093. .r = tmp_dst[2],
  1094. .g = tmp_dst[1],
  1095. .b = tmp_dst[0],
  1096. };
  1097. col32.full = blend_argb8888_over_argb8888(col32.full, *tmp_src);
  1098. *tmp_dst++ = col32.b;
  1099. *tmp_dst++ = col32.g;
  1100. *tmp_dst++ = col32.r;
  1101. tmp_src++;
  1102. }
  1103. src8 += src_pitch;
  1104. dst8 += dst_pitch;
  1105. }
  1106. }
  1107. void sw_blend_argb8888_over_argb8888(void *dst, const void *src,
  1108. uint16_t dst_pitch, uint16_t src_pitch, uint16_t w, uint16_t h)
  1109. {
  1110. #ifdef CONFIG_GUI_API_BROM_LARK
  1111. p_brom_libgui_api->p_sw_blend_argb8888_over_argb8888(
  1112. dst, src, dst_pitch / 4, src_pitch / 4, w, h);
  1113. #elif defined(CONFIG_GUI_API_BROM_LEOPARD)
  1114. p_brom_libgui_api->p_sw_blend_argb8888_over_argb8888(
  1115. dst, src, dst_pitch, src_pitch, w, h);
  1116. #else
  1117. const uint8_t *src8 = src;
  1118. uint8_t *dst8 = dst;
  1119. for (int j = h; j > 0; j--) {
  1120. const uint32_t *tmp_src = (uint32_t *)src8;
  1121. uint32_t *tmp_dst = (uint32_t *)dst8;
  1122. for (int i = w; i > 0; i--) {
  1123. *tmp_dst = blend_argb8888_over_argb8888(*tmp_dst, *tmp_src);
  1124. tmp_dst++;
  1125. tmp_src++;
  1126. }
  1127. src8 += src_pitch;
  1128. dst8 += dst_pitch;
  1129. }
  1130. #endif /* CONFIG_GUI_API_BROM_LEOPARD */
  1131. }