vglite_util.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifdef CONFIG_VG_LITE
  7. /*********************
  8. * INCLUDES
  9. *********************/
  10. #include <errno.h>
  11. #include <math.h>
  12. #include <string.h>
  13. #include <display/display_hal.h>
  14. #include "vglite_util.h"
  15. /*********************
  16. * DEFINES
  17. *********************/
  18. #ifdef _WIN32
  19. # define VGLITE_MEM_ALIGNMENT 1
  20. #else
  21. # define VGLITE_MEM_ALIGNMENT 64
  22. #endif
  23. /**********************
  24. * TYPEDEFS
  25. **********************/
  26. typedef void (*matrix_rotate_fn_t)(float, float, float, vg_lite_matrix_t *);
  27. /**********************
  28. * STATIC PROTOTYPES
  29. **********************/
  30. static bool vglite_buf_format_is_opaque(vg_lite_buffer_format_t format);
  31. static void matrix_rotate_zyx(float rx, float ry, float rz, vg_lite_matrix_t *matrix);
  32. static void matrix_rotate_zxy(float rx, float ry, float rz, vg_lite_matrix_t *matrix);
  33. static void matrix_rotate_yzx(float rx, float ry, float rz, vg_lite_matrix_t *matrix);
  34. static void matrix_rotate_yxz(float rx, float ry, float rz, vg_lite_matrix_t *matrix);
  35. static void matrix_rotate_xyz(float rx, float ry, float rz, vg_lite_matrix_t *matrix);
  36. static void matrix_rotate_xzy(float rx, float ry, float rz, vg_lite_matrix_t *matrix);
  37. /**********************
  38. * GLOBAL FUNCTIONS
  39. **********************/
  40. /**********************
  41. * Buffer functions
  42. **********************/
  43. int vglite_buf_format_from_hal(uint32_t hal_format, uint8_t *bits_per_pixel)
  44. {
  45. int format = -1;
  46. uint8_t bpp = 0;
  47. switch(hal_format) {
  48. case HAL_PIXEL_FORMAT_RGB_565:
  49. format = VG_LITE_BGR565;
  50. bpp = 16;
  51. break;
  52. case HAL_PIXEL_FORMAT_ARGB_8888:
  53. format = VG_LITE_BGRA8888;
  54. bpp = 32;
  55. break;
  56. case HAL_PIXEL_FORMAT_XRGB_8888:
  57. format = VG_LITE_BGRX8888;
  58. bpp = 32;
  59. break;
  60. case HAL_PIXEL_FORMAT_RGB_888:
  61. format = VG_LITE_BGR888;
  62. bpp = 24;
  63. break;
  64. case HAL_PIXEL_FORMAT_BGR_888:
  65. format = VG_LITE_RGB888;
  66. bpp = 24;
  67. break;
  68. case HAL_PIXEL_FORMAT_ARGB_8565:
  69. format = VG_LITE_BGRA5658;
  70. bpp = 24;
  71. break;
  72. case HAL_PIXEL_FORMAT_ARGB_1555:
  73. format = VG_LITE_BGRA5551;
  74. bpp = 16;
  75. break;
  76. case HAL_PIXEL_FORMAT_A8:
  77. format = VG_LITE_A8;
  78. bpp = 8;
  79. break;
  80. case HAL_PIXEL_FORMAT_A4_LE:
  81. format = VG_LITE_A4;
  82. bpp = 4;
  83. break;
  84. case HAL_PIXEL_FORMAT_I8:
  85. format = VG_LITE_INDEX_8;
  86. bpp = 8;
  87. break;
  88. default:
  89. break;
  90. }
  91. if (bits_per_pixel) {
  92. *bits_per_pixel = bpp;
  93. }
  94. return format;
  95. }
  96. uint32_t vglite_buf_format_to_hal(vg_lite_buffer_format_t format, uint8_t *bits_per_pixel)
  97. {
  98. uint32_t hal_format = 0;
  99. uint8_t bpp = 0;
  100. switch (format) {
  101. case VG_LITE_BGR565:
  102. hal_format = HAL_PIXEL_FORMAT_RGB_565;
  103. bpp = 16;
  104. break;
  105. case VG_LITE_BGRA8888:
  106. hal_format = HAL_PIXEL_FORMAT_ARGB_8888;
  107. bpp = 32;
  108. break;
  109. case VG_LITE_BGRX8888:
  110. hal_format = HAL_PIXEL_FORMAT_XRGB_8888;
  111. bpp = 32;
  112. break;
  113. case VG_LITE_RGB888:
  114. hal_format = HAL_PIXEL_FORMAT_BGR_888;
  115. bpp = 24;
  116. break;
  117. case VG_LITE_BGR888:
  118. hal_format = HAL_PIXEL_FORMAT_RGB_888;
  119. bpp = 24;
  120. break;
  121. case VG_LITE_BGRA5658:
  122. hal_format = HAL_PIXEL_FORMAT_ARGB_8565;
  123. bpp = 24;
  124. break;
  125. case VG_LITE_BGRA5551:
  126. hal_format = HAL_PIXEL_FORMAT_ARGB_1555;
  127. bpp = 16;
  128. break;
  129. case VG_LITE_A8:
  130. hal_format = HAL_PIXEL_FORMAT_A8;
  131. bpp = 8;
  132. break;
  133. case VG_LITE_A4:
  134. hal_format = HAL_PIXEL_FORMAT_A4_LE;
  135. bpp = 4;
  136. break;
  137. case VG_LITE_INDEX_8:
  138. hal_format = HAL_PIXEL_FORMAT_I8;
  139. bpp = 8;
  140. break;
  141. case VG_LITE_INDEX_4:
  142. case VG_LITE_INDEX_2:
  143. case VG_LITE_INDEX_1:
  144. default:
  145. break;
  146. }
  147. if (bits_per_pixel) {
  148. *bits_per_pixel = bpp;
  149. }
  150. return hal_format;
  151. }
  152. bool vglite_buf_is_valid(vg_lite_buffer_t *vgbuf)
  153. {
  154. return (vgbuf == NULL || vgbuf->handle == NULL || vgbuf->memory == NULL) ? false : true;
  155. }
  156. int vglite_buf_map(vg_lite_buffer_t *vgbuf, void *data, uint16_t width, uint16_t height,
  157. uint16_t stride, vg_lite_buffer_format_t format)
  158. {
  159. if ((uintptr_t)data & (VGLITE_MEM_ALIGNMENT - 1))
  160. return -EINVAL;
  161. if (format == VG_LITE_RGBA8888_ETC2_EAC && (stride & 0x3))
  162. return -EINVAL;
  163. memset(vgbuf, 0, sizeof(*vgbuf));
  164. vgbuf->format = format;
  165. vgbuf->memory = data;
  166. vgbuf->image_mode = VG_LITE_NORMAL_IMAGE_MODE;
  167. vgbuf->transparency_mode = vglite_buf_format_is_opaque(format) ?
  168. VG_LITE_IMAGE_OPAQUE : VG_LITE_IMAGE_TRANSPARENT;
  169. vgbuf->width = width;
  170. vgbuf->height = height;
  171. vgbuf->stride = stride;
  172. vgbuf->tiled = (format == VG_LITE_RGBA8888_ETC2_EAC) ?
  173. VG_LITE_TILED : VG_LITE_LINEAR;
  174. if (vg_lite_map(vgbuf, VG_LITE_MAP_USER_MEMORY, -1) != VG_LITE_SUCCESS)
  175. return -EINVAL;
  176. return 0;
  177. }
  178. int vglite_buf_map_graphic(vg_lite_buffer_t *vgbuf, const graphic_buffer_t *gbuf)
  179. {
  180. int format = vglite_buf_format_from_hal(graphic_buffer_get_pixel_format(gbuf), NULL);
  181. if (format < 0)
  182. return -EINVAL;
  183. return vglite_buf_map(vgbuf, (void *)gbuf->data,
  184. graphic_buffer_get_width(gbuf), graphic_buffer_get_height(gbuf),
  185. graphic_buffer_get_bytes_per_line(gbuf), format);
  186. }
  187. int vglite_buf_unmap(vg_lite_buffer_t *vgbuf)
  188. {
  189. if (!vglite_buf_is_valid(vgbuf))
  190. return -EINVAL;
  191. return (vg_lite_unmap(vgbuf) == VG_LITE_SUCCESS) ? 0 : -EINVAL;
  192. }
  193. /**********************
  194. * Matrix functions
  195. **********************/
  196. void matrix_rotate_x(float rx, vg_lite_matrix_t *matrix)
  197. {
  198. matrix->m[0][0] = 1;
  199. matrix->m[0][1] = 0;
  200. matrix->m[0][2] = 0;
  201. matrix->m[1][0] = 0;
  202. matrix->m[1][1] = cos(rx);
  203. matrix->m[1][2] = -sin(rx);
  204. matrix->m[2][0] = 0;
  205. matrix->m[2][1] = sin(rx);
  206. matrix->m[2][2] = cos(rx);
  207. }
  208. void matrix_rotate_y(float ry, vg_lite_matrix_t *matrix)
  209. {
  210. matrix->m[0][0] = cos(ry);
  211. matrix->m[0][1] = 0;
  212. matrix->m[0][2] = sin(ry);
  213. matrix->m[1][0] = 0;
  214. matrix->m[1][1] = 1;
  215. matrix->m[1][2] = 0;
  216. matrix->m[2][0] = -sin(ry);
  217. matrix->m[2][1] = 0;
  218. matrix->m[2][2] = cos(ry);
  219. }
  220. void matrix_rotate_z(float rz, vg_lite_matrix_t *matrix)
  221. {
  222. matrix->m[0][0] = cos(rz);
  223. matrix->m[0][1] = -sin(rz);
  224. matrix->m[0][2] = 0;
  225. matrix->m[1][0] = sin(rz);
  226. matrix->m[1][1] = cos(rz);
  227. matrix->m[1][2] = 0;
  228. matrix->m[2][0] = 0;
  229. matrix->m[2][1] = 0;
  230. matrix->m[2][2] = 1;
  231. }
  232. void matrix_rotate(float rx, float ry, float rz, uint8_t order, vg_lite_matrix_t *matrix)
  233. {
  234. /**
  235. * Euler angles rx, ry, rz in ZYX order.
  236. *
  237. * Point rotate matrix (Rx) around X axis:
  238. * [ 1 0 0 ]
  239. * [ 0 cos(rx) -sin(rx) ]
  240. * [ 0 sin(rx) cos(rx) ]
  241. *
  242. * Point rotate matrix (Ry) around Y axis:
  243. * [ cos(ry) 0 sin(ry) ]
  244. * [ 0 1 0 ]
  245. * [ -sin(ry) 0 cos(ry) ]
  246. *
  247. * Point rotate matrix (Rz) around Z axis:
  248. * [ cos(rz) -sin(rz) 0 ]
  249. * [ sin(rz) cos(rz) 0 ]
  250. * [ 0 0 1 ]
  251. *
  252. */
  253. static const matrix_rotate_fn_t rotate_vtbl[] = {
  254. matrix_rotate_zyx,
  255. matrix_rotate_zxy,
  256. matrix_rotate_yzx,
  257. matrix_rotate_yxz,
  258. matrix_rotate_xyz,
  259. matrix_rotate_xzy,
  260. };
  261. if (order < NUM_ROT_ORDERS)
  262. rotate_vtbl[order](rx, ry, rz, matrix);
  263. }
  264. void matrix_multiply(const vg_lite_matrix_t *matrix_left, const vg_lite_matrix_t *matrix_right, vg_lite_matrix_t *result)
  265. {
  266. int row, col;
  267. /* Process all rows. */
  268. for (row = 0; row < 3; row++) {
  269. /* Process all columns. */
  270. for (col = 0; col < 3; col++) {
  271. result->m[row][col] = (matrix_left->m[row][0] * matrix_right->m[0][col])
  272. + (matrix_left->m[row][1] * matrix_right->m[1][col])
  273. + (matrix_left->m[row][2] * matrix_right->m[2][col]);
  274. }
  275. }
  276. }
  277. void matrix_translate_left(float tx, float ty,
  278. const vg_lite_matrix_t *matrix_right, vg_lite_matrix_t *matrix)
  279. {
  280. matrix->m[0][0] = matrix_right->m[0][0] + tx * matrix_right->m[2][0];
  281. matrix->m[0][1] = matrix_right->m[0][1] + tx * matrix_right->m[2][1];
  282. matrix->m[0][2] = matrix_right->m[0][2] + tx * matrix_right->m[2][2];
  283. matrix->m[1][0] = matrix_right->m[1][0] + ty * matrix_right->m[2][0];
  284. matrix->m[1][1] = matrix_right->m[1][1] + ty * matrix_right->m[2][1];
  285. matrix->m[1][2] = matrix_right->m[1][2] + ty * matrix_right->m[2][2];
  286. matrix->m[2][0] = matrix_right->m[2][0];
  287. matrix->m[2][1] = matrix_right->m[2][1];
  288. matrix->m[2][2] = matrix_right->m[2][2];
  289. }
  290. void transfrom_rotate(vertex_t *result, vg_lite_matrix_t *rotate, const vertex_t *vertex, const vertex_t *scale, const vertex_t *translate)
  291. {
  292. float x = rotate->m[0][0] * vertex->x + rotate->m[0][1] * vertex->y + rotate->m[0][2] * vertex->z;
  293. float y = rotate->m[1][0] * vertex->x + rotate->m[1][1] * vertex->y + rotate->m[1][2] * vertex->z;
  294. float z = rotate->m[2][0] * vertex->x + rotate->m[2][1] * vertex->y + rotate->m[2][2] * vertex->z;
  295. if (scale) {
  296. x *= scale->x;
  297. y *= scale->y;
  298. z *= scale->z;
  299. }
  300. if (translate) {
  301. x += translate->x;
  302. y += translate->y;
  303. z += translate->z;
  304. }
  305. result->x = x;
  306. result->y = y;
  307. result->z = z;
  308. }
  309. void transfrom_perspective(vertex_t *vertex, float camera_x, float camera_y, float camera_distance)
  310. {
  311. vertex->x = camera_x + (vertex->x - camera_x) * camera_distance / (camera_distance + vertex->z);
  312. vertex->y = camera_y + (vertex->y - camera_y) * camera_distance / (camera_distance + vertex->z);
  313. }
  314. float transfrom_normal_z(vg_lite_matrix_t *rotate, const normal_t *normal)
  315. {
  316. /* Compute the new normal Z coordinate transformed by the rotation matrix. */
  317. return rotate->m[2][0] * normal->x + rotate->m[2][1] * normal->y + rotate->m[2][2] * normal->z;
  318. }
  319. /*
  320. From 6.5.2 of OpenVG1.1 Spec: An affine transformation maps a point (x, y) into the point
  321. (x*sx + y*shx + tx, x*shy + y*sy + ty) using homogeneous matrix multiplication.
  322. To map a rectangle image (0,0),(w,0),(w,h),(0,h) to a parallelogram (x0,y0),(x1,y1),(x2,y2),(x3,y3).
  323. We get the following equations:
  324. x0 = tx;
  325. y0 = ty;
  326. x1 = w*sx + tx;
  327. y1 = w*shy + ty;
  328. x3 = h*shx + tx;
  329. y3 = h*sy + ty;
  330. So the homogeneous matrix sx, sy, shx, shy, tx, ty can be easily solved from above equations.
  331. */
  332. void matrix_affine_blit(int w, int h, vertex_t *v0, vertex_t *v1, vertex_t *v2, vertex_t *v3, vg_lite_matrix_t *matrix)
  333. {
  334. float sx, sy, shx, shy, tx, ty;
  335. /* Compute 3x3 image transform matrix to map a rectangle image (w,h) to
  336. a parallelogram (x0,y0), (x1,y1), (x2,y2), (x3,y3) counterclock wise. */
  337. sx = (v1->x - v0->x) / w;
  338. sy = (v3->y - v0->y) / h;
  339. shx = (v3->x - v0->x) / h;
  340. shy = (v1->y - v0->y) / w;
  341. tx = v0->x;
  342. ty = v0->y;
  343. /* Set the Blit transformation matrix. */
  344. matrix->m[0][0] = sx;
  345. matrix->m[0][1] = shx;
  346. matrix->m[0][2] = tx;
  347. matrix->m[1][0] = shy;
  348. matrix->m[1][1] = sy;
  349. matrix->m[1][2] = ty;
  350. matrix->m[2][0] = 0.0;
  351. matrix->m[2][1] = 0.0;
  352. matrix->m[2][2] = 1.0;
  353. }
  354. void matrix_perspective_blit(int w, int h, vertex_t *v0, vertex_t *v1, vertex_t *v2, vertex_t *v3, vg_lite_matrix_t *matrix)
  355. {
  356. vg_lite_float_point4_t src = { { 0, 0 }, { w, 0 }, { w, h ,}, { 0, h }, };
  357. vg_lite_float_point4_t dst = {
  358. { v0->x, v0->y }, { v1->x, v1->y },
  359. { v2->x, v2->y }, { v3->x, v3->y },
  360. };
  361. vg_lite_get_transform_matrix(src, dst, matrix);
  362. }
  363. void matrix_transform_rect(vg_lite_rectangle_t *rect,
  364. float pivots[3], float angles[3], float scale, float camera[3],
  365. vertex_t result[4], vg_lite_matrix_t *matrix)
  366. {
  367. matrix_transform_rect2(rect, pivots, angles, ROT_ZYX, scale, camera, result, matrix);
  368. }
  369. void matrix_transform_rect2(vg_lite_rectangle_t *rect,
  370. float pivots[3], float angles[3], uint8_t rotate_order,
  371. float scale, float camera[3],
  372. vertex_t result[4], vg_lite_matrix_t *matrix)
  373. {
  374. const float camera_dist = camera ? camera[2] : 0.0f;
  375. const float pivot_x = pivots ? pivots[0] : (rect->width / 2.0f);
  376. const float pivot_y = pivots ? pivots[1] : (rect->height / 2.0f);
  377. const float pivot_z = pivots ? pivots[2] : 0.0f;
  378. vertex_t verts[4] = {
  379. [0] = { -pivot_x, -pivot_y, -pivot_z },
  380. [1] = { rect->width - pivot_x, -pivot_y, -pivot_z },
  381. [2] = { rect->width - pivot_x, rect->height - pivot_y, -pivot_z },
  382. [3] = { -pivot_x, rect->height - pivot_y, -pivot_z },
  383. };
  384. vertex_t scale_xyz = { scale, scale, scale };
  385. vertex_t translate_zyz = { pivot_x, pivot_y, pivot_z };
  386. /* Perspective transformation requires absolute coordinates */
  387. if (camera_dist > 0.0f) {
  388. translate_zyz.x += rect->x;
  389. translate_zyz.y += rect->y;
  390. }
  391. vg_lite_matrix_t rotate_m;
  392. if (angles) {
  393. matrix_rotate(angles[0], angles[1], angles[2], rotate_order, &rotate_m);
  394. } else {
  395. vg_lite_identity(&rotate_m);
  396. }
  397. transfrom_rotate(&verts[0], &rotate_m, &verts[0], &scale_xyz, &translate_zyz);
  398. transfrom_rotate(&verts[1], &rotate_m, &verts[1], &scale_xyz, &translate_zyz);
  399. transfrom_rotate(&verts[2], &rotate_m, &verts[2], &scale_xyz, &translate_zyz);
  400. transfrom_rotate(&verts[3], &rotate_m, &verts[3], &scale_xyz, &translate_zyz);
  401. if (camera && camera_dist > 0.0f) {
  402. transfrom_perspective(&verts[0], camera[0], camera[1], camera_dist);
  403. transfrom_perspective(&verts[1], camera[0], camera[1], camera_dist);
  404. transfrom_perspective(&verts[2], camera[0], camera[1], camera_dist);
  405. transfrom_perspective(&verts[3], camera[0], camera[1], camera_dist);
  406. matrix_perspective_blit(rect->width, rect->height, &verts[0], &verts[1], &verts[2], &verts[3], matrix);
  407. } else {
  408. matrix_affine_blit(rect->width, rect->height, &verts[0], &verts[1], &verts[2], &verts[3], matrix);
  409. }
  410. if (result) {
  411. memcpy(result, verts, sizeof(verts));
  412. }
  413. }
  414. /**********************
  415. * STATIC FUNCTIONS
  416. **********************/
  417. static bool vglite_buf_format_is_opaque(vg_lite_buffer_format_t format)
  418. {
  419. switch (format) {
  420. case VG_LITE_RGB565:
  421. case VG_LITE_BGR565:
  422. case VG_LITE_RGB888:
  423. case VG_LITE_BGR888:
  424. return true;
  425. default:
  426. return false;
  427. }
  428. }
  429. static void matrix_rotate_zyx(float rx, float ry, float rz, vg_lite_matrix_t *matrix)
  430. {
  431. /**
  432. * Euler angles rx, ry, rz in ZYX order.
  433. *
  434. * matrix = Rz * Ry * Rx
  435. */
  436. matrix->m[0][0] = cos(rz) * cos(ry);
  437. matrix->m[0][1] = cos(rz) * sin(ry) * sin(rx) - sin(rz) * cos(rx);
  438. matrix->m[0][2] = cos(rz) * sin(ry) * cos(rx) + sin(rz) * sin(rx);
  439. matrix->m[1][0] = sin(rz) * cos(ry);
  440. matrix->m[1][1] = sin(rz) * sin(ry) * sin(rx) + cos(rz) * cos(rx);
  441. matrix->m[1][2] = sin(rz) * sin(ry) * cos(rx) - cos(rz) * sin(rx);
  442. matrix->m[2][0] = -sin(ry);
  443. matrix->m[2][1] = cos(ry) * sin(rx);
  444. matrix->m[2][2] = cos(ry) * cos(rx);
  445. }
  446. static void matrix_rotate_zxy(float rx, float ry, float rz, vg_lite_matrix_t *matrix)
  447. {
  448. /**
  449. * Euler angles rx, ry, rz in ZXY order.
  450. *
  451. * matrix = Rz * Rx * Ry
  452. */
  453. matrix->m[0][0] = cos(rz) * cos(ry) - sin(rz) * sin(rx) * sin(ry);
  454. matrix->m[0][1] = -sin(rz) * cos(rx);
  455. matrix->m[0][2] = cos(rz) * sin(ry) + sin(rz) * sin(rx) * cos(ry);
  456. matrix->m[1][0] = sin(rz) * cos(ry) + cos(rz) * sin(rx) * sin(ry);
  457. matrix->m[1][1] = cos(rz) * cos(rx);
  458. matrix->m[1][2] = sin(rz) * sin(ry) - cos(rz) * sin(rx) * cos(ry);
  459. matrix->m[2][0] = -cos(rx) * sin(ry);
  460. matrix->m[2][1] = sin(rx);
  461. matrix->m[2][2] = cos(rx) * cos(ry);
  462. }
  463. static void matrix_rotate_yzx(float rx, float ry, float rz, vg_lite_matrix_t *matrix)
  464. {
  465. /**
  466. * Euler angles rx, ry, rz in YZX order.
  467. *
  468. * matrix = Ry * Rz * Rx
  469. */
  470. matrix->m[0][0] = cos(ry) * cos(rz);
  471. matrix->m[0][1] = -cos(ry) * sin(rz) * cos(rx) + sin(ry) * sin(rx);
  472. matrix->m[0][2] = cos(ry) * sin(rz) * sin(rx) + sin(ry) * cos(rx);
  473. matrix->m[1][0] = sin(rz);
  474. matrix->m[1][1] = cos(rz) * cos(rx);
  475. matrix->m[1][2] = -cos(rz) * sin(rx);
  476. matrix->m[2][0] = -sin(ry) * cos(rz);
  477. matrix->m[2][1] = sin(ry) * sin(rz) * cos(rx) + cos(ry) * sin(rx);
  478. matrix->m[2][2] = -sin(ry) * sin(rz) * sin(rx) + cos(ry) * cos(rx);
  479. }
  480. static void matrix_rotate_yxz(float rx, float ry, float rz, vg_lite_matrix_t *matrix)
  481. {
  482. /**
  483. * Euler angles rx, ry, rz in YXZ order.
  484. *
  485. * matrix = Ry * Rx * Rz
  486. */
  487. matrix->m[0][0] = cos(ry) * cos(rz) + sin(ry) * sin(rx) * sin(rz);
  488. matrix->m[0][1] = -cos(ry) * sin(rz) + sin(ry) * sin(rx) * cos(rz);
  489. matrix->m[0][2] = sin(ry) * cos(rx);
  490. matrix->m[1][0] = cos(rx) * sin(rz);
  491. matrix->m[1][1] = cos(rx) * cos(rz);
  492. matrix->m[1][2] = -sin(rx);
  493. matrix->m[2][0] = -sin(ry) * cos(rz) + cos(ry) * sin(rx) * sin(rz);
  494. matrix->m[2][1] = sin(ry) * sin(rz) + cos(ry) * sin(rx) * cos(rz);
  495. matrix->m[2][2] = cos(ry) * cos(rx);
  496. }
  497. static void matrix_rotate_xyz(float rx, float ry, float rz, vg_lite_matrix_t *matrix)
  498. {
  499. /**
  500. * Euler angles rx, ry, rz in XYZ order.
  501. *
  502. * matrix = Rx * Ry * Rz
  503. */
  504. matrix->m[0][0] = cos(ry) * cos(rz);
  505. matrix->m[0][1] = -cos(ry) * sin(rz);
  506. matrix->m[0][2] = sin(ry);
  507. matrix->m[1][0] = cos(rx) * sin(rz) + sin(rx) * sin(ry) * cos(rz);
  508. matrix->m[1][1] = cos(rx) * cos(rz) - sin(rx) * sin(ry) * sin(rz);
  509. matrix->m[1][2] = -sin(rx) * cos(ry);
  510. matrix->m[2][0] = sin(rx) * sin(rz) - cos(rx) * sin(ry) * cos(rz);
  511. matrix->m[2][1] = sin(rx) * cos(rz) + cos(rx) * sin(ry) * sin(rz);
  512. matrix->m[2][2] = cos(rx) * cos(ry);
  513. }
  514. static void matrix_rotate_xzy(float rx, float ry, float rz, vg_lite_matrix_t *matrix)
  515. {
  516. /**
  517. * Euler angles rx, ry, rz in XZY order.
  518. *
  519. * matrix = Rx * Rz * Ry
  520. */
  521. matrix->m[0][0] = cos(rz) * cos(ry);
  522. matrix->m[0][1] = -sin(rz);
  523. matrix->m[0][2] = cos(rz) * sin(ry);
  524. matrix->m[1][0] = cos(rx) * sin(rz) * cos(ry) + sin(rx) * sin(ry);
  525. matrix->m[1][1] = cos(rx) * cos(rz);
  526. matrix->m[1][2] = cos(rx) * sin(rz) * sin(ry) - sin(rx) * cos(ry);
  527. matrix->m[2][0] = sin(rx) * sin(rz) * cos(ry) - cos(rx) * sin(ry);
  528. matrix->m[2][1] = sin(rx) * cos(rz);
  529. matrix->m[2][2] = sin(rx) * sin(rz) * sin(ry) + cos(rx) * cos(ry);
  530. }
  531. #endif /* CONFIG_VG_LITE*/