Lines Matching refs:thickness
1304 IM_STATUS imrectangle(rga_buffer_t dst, im_rect rect, uint32_t color, int thickness, int sync, int … in imrectangle() argument
1305 if (thickness < 0) in imrectangle()
1309 int v_length = rect.height - 2 * thickness; in imrectangle()
1312 fill_rect[0] = {rect.x, rect.y, h_length, thickness}; in imrectangle()
1313 fill_rect[1] = {rect.x, rect.y + (rect.height - thickness), h_length, thickness}; in imrectangle()
1314 fill_rect[2] = {rect.x, rect.y + thickness, thickness, v_length}; in imrectangle()
1315 fill_rect[3] = {rect.x + (rect.width - thickness), rect.y + thickness, thickness, v_length}; in imrectangle()
1320 …_buffer_t dst, im_rect *rect_array, int array_size, uint32_t color, int thickness, int sync, int *… in imrectangleArray() argument
1325 ret = imrectangle(dst, rect_array[i], color, thickness, sync, release_fence_fd); in imrectangleArray()
1834 …leTask(im_job_handle_t job_handle, rga_buffer_t dst, im_rect rect, uint32_t color, int thickness) { in imrectangleTask() argument
1835 if (thickness < 0) in imrectangleTask()
1839 int v_length = rect.height - 2 * thickness; in imrectangleTask()
1842 fill_rect[0] = {rect.x, rect.y, h_length, thickness}; in imrectangleTask()
1843 fill_rect[1] = {rect.x, rect.y + (rect.height - thickness), h_length, thickness}; in imrectangleTask()
1844 fill_rect[2] = {rect.x, rect.y + thickness, thickness, v_length}; in imrectangleTask()
1845 fill_rect[3] = {rect.x + (rect.width - thickness), rect.y + thickness, thickness, v_length}; in imrectangleTask()
1850 …job_handle, rga_buffer_t dst, im_rect *rect_array, int array_size, uint32_t color, int thickness) { in imrectangleTaskArray() argument
1854 ret = imrectangleTask(job_handle, dst, rect_array[i], color, thickness); in imrectangleTaskArray()