Searched refs:PXP_ID (Results 1 – 6 of 6) sorted by relevance
/lvgl-latest/src/draw/nxp/pxp/ |
D | lv_pxp_cfg.c | 52 PXP_Init(PXP_ID); in lv_pxp_init() 54 PXP_EnableCsc1(PXP_ID, false); /*Disable CSC1, it is enabled by default.*/ in lv_pxp_init() 55 PXP_SetProcessBlockSize(PXP_ID, kPXP_BlockSize16); /*Block size 16x16 for higher performance*/ in lv_pxp_init() 57 PXP_EnableInterrupts(PXP_ID, kPXP_CompleteInterruptEnable); in lv_pxp_init() 65 PXP_DisableInterrupts(PXP_ID, kPXP_CompleteInterruptEnable); in lv_pxp_deinit() 66 PXP_Deinit(PXP_ID); in lv_pxp_deinit() 71 PXP_ResetControl(PXP_ID); in lv_pxp_reset() 73 PXP_EnableCsc1(PXP_ID, false); /*Disable CSC1, it is enabled by default.*/ in lv_pxp_reset() 74 PXP_SetProcessBlockSize(PXP_ID, kPXP_BlockSize16); /*Block size 16x16 for higher performance*/ in lv_pxp_reset()
|
D | lv_draw_pxp_img.c | 141 PXP_SetAlphaSurfaceBufferConfig(PXP_ID, &asBufferConfig); in _pxp_blit_recolor() 142 PXP_SetAlphaSurfacePosition(PXP_ID, 0U, 0U, src_w - 1U, src_h - 1U); in _pxp_blit_recolor() 145 PXP_SetProcessSurfacePosition(PXP_ID, 0xFFFFU, 0xFFFFU, 0U, 0U); in _pxp_blit_recolor() 146 PXP_SetProcessSurfaceBackGroundColor(PXP_ID, lv_color_to_u32(dsc->recolor)); in _pxp_blit_recolor() 158 PXP_SetOutputBufferConfig(PXP_ID, &outputBufferConfig); in _pxp_blit_recolor() 180 PXP_SetPorterDuffConfig(PXP_ID, &pdConfig); in _pxp_blit_recolor() 239 PXP_SetRotateConfig(PXP_ID, kPXP_RotateOutputBuffer, pxp_angle, kPXP_FlipDisable); in _pxp_blit_transform() 269 PXP_SetProcessSurfaceBufferConfig(PXP_ID, &psBufferConfig); in _pxp_blit_transform() 270 PXP_SetProcessSurfacePosition(PXP_ID, 0U, 0U, dest_w - trim_x - 1U, dest_h - trim_y - 1U); in _pxp_blit_transform() 273 PXP_SetProcessSurfaceScaler(PXP_ID, src_w, src_h, dest_w, dest_h); in _pxp_blit_transform() [all …]
|
D | lv_draw_pxp_fill.c | 99 PXP_SetOutputBufferConfig(PXP_ID, &outputConfig); in _pxp_fill() 103 PXP_SetAlphaSurfacePosition(PXP_ID, 0xFFFFU, 0xFFFFU, 0U, 0U); in _pxp_fill() 114 PXP_SetAlphaSurfaceBufferConfig(PXP_ID, &asBufferConfig); in _pxp_fill() 115 PXP_SetAlphaSurfacePosition(PXP_ID, 0U, 0U, dest_w - 1U, dest_h - 1U); in _pxp_fill() 119 PXP_SetProcessSurfacePosition(PXP_ID, 0xFFFFU, 0xFFFFU, 0U, 0U); in _pxp_fill() 120 PXP_SetProcessSurfaceBackGroundColor(PXP_ID, lv_color_to_u32(dsc->color)); in _pxp_fill() 143 PXP_SetPorterDuffConfig(PXP_ID, &pdConfig); in _pxp_fill()
|
D | lv_pxp_osa.c | 99 if(kPXP_CompleteFlag & PXP_GetStatusFlags(PXP_ID)) { in PXP_IRQHandler() 100 PXP_ClearStatusFlags(PXP_ID, kPXP_CompleteFlag); in PXP_IRQHandler() 167 PXP_EnableInterrupts(PXP_ID, kPXP_CompleteInterruptEnable); in _pxp_run() 168 PXP_Start(PXP_ID); in _pxp_run()
|
D | lv_draw_pxp.c | 133 PXP_SetRotateConfig(PXP_ID, kPXP_RotateOutputBuffer, pxp_rotation, kPXP_FlipDisable); in lv_draw_pxp_rotate() 136 PXP_SetProcessSurfacePosition(PXP_ID, 0xFFFFU, 0xFFFFU, 0U, 0U); in lv_draw_pxp_rotate() 144 PXP_SetAlphaSurfaceBufferConfig(PXP_ID, &asBufferConfig); in lv_draw_pxp_rotate() 145 PXP_SetAlphaSurfacePosition(PXP_ID, 0U, 0U, src_width - 1U, src_height - 1U); in lv_draw_pxp_rotate() 146 PXP_EnableAlphaSurfaceOverlayColorKey(PXP_ID, false); in lv_draw_pxp_rotate() 158 PXP_SetOutputBufferConfig(PXP_ID, &outputBufferConfig); in lv_draw_pxp_rotate()
|
D | lv_pxp_cfg.h | 37 #define PXP_ID PXP macro
|