/** * MIT License * * ----------------------------------------------------------------------------- * Copyright (c) 2008-24 Think Silicon Single Member PC * ----------------------------------------------------------------------------- * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice (including the next paragraph) * shall be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ /** * @file lv_draw_nema_gfx_fill.c * */ /********************* * INCLUDES *********************/ #include "lv_draw_nema_gfx.h" #if LV_USE_NEMA_GFX /********************** * GLOBAL FUNCTIONS **********************/ void lv_draw_nema_gfx_line(lv_draw_unit_t * draw_unit, const lv_draw_line_dsc_t * dsc) { if(dsc->width == 0) return; if(dsc->opa <= (lv_opa_t)LV_OPA_MIN) return; if(dsc->p1.x == dsc->p2.x && dsc->p1.y == dsc->p2.y) return; lv_draw_nema_gfx_unit_t * draw_nema_gfx_unit = (lv_draw_nema_gfx_unit_t *)draw_unit; lv_layer_t * layer = draw_unit->target_layer; lv_area_t clip_area; clip_area.x1 = LV_MIN(dsc->p1.x, dsc->p2.x) - dsc->width / 2; clip_area.x2 = LV_MAX(dsc->p1.x, dsc->p2.x) + dsc->width / 2; clip_area.y1 = LV_MIN(dsc->p1.y, dsc->p2.y) - dsc->width / 2; clip_area.y2 = LV_MAX(dsc->p1.y, dsc->p2.y) + dsc->width / 2; if(!lv_area_intersect(&clip_area, &clip_area, draw_unit->clip_area)) return; /*Fully clipped, nothing to do*/ lv_area_move(&clip_area, -layer->buf_area.x1, -layer->buf_area.y1); lv_point_t point1 = {dsc->p1.x - layer->buf_area.x1, dsc->p1.y - layer->buf_area.y1}; lv_point_t point2 = {dsc->p2.x - layer->buf_area.x1, dsc->p2.y - layer->buf_area.y1}; nema_set_clip(clip_area.x1, clip_area.y1, lv_area_get_width(&clip_area), lv_area_get_height(&clip_area)); lv_color32_t col32 = lv_color_to_32(dsc->color, dsc->opa); uint32_t bg_color = nema_rgba(col32.red, col32.green, col32.blue, col32.alpha); lv_color_format_t dst_cf = layer->draw_buf->header.cf; uint32_t dst_nema_cf = lv_nemagfx_cf_to_nema(dst_cf); nema_bind_dst_tex((uintptr_t)NEMA_VIRT2PHYS(layer->draw_buf->data), lv_area_get_width(&(layer->buf_area)), lv_area_get_height(&(layer->buf_area)), dst_nema_cf, lv_area_get_width(&(layer->buf_area))*lv_color_format_get_size(dst_cf)); if(col32.alpha < 255U) { nema_set_blend_fill(NEMA_BL_SIMPLE); } else { nema_set_blend_fill(NEMA_BL_SRC); } nema_draw_line_aa(point1.x, point1.y, point2.x, point2.y, dsc->width, bg_color); nema_cl_submit(&(draw_nema_gfx_unit->cl)); } #endif