Home
last modified time | relevance | path

Searched refs:bpp (Results 1 – 4 of 4) sorted by relevance

/Zephyr-Core-3.7.0/tests/drivers/display/display_read_write/src/
Dmain.c20 static uint8_t bpp; variable
48 .buf_size = height * width * bpp, in verify_bytes_of_area()
58 zassert_mem_equal(data, disp_buffer, width * height * bpp, NULL); in verify_bytes_of_area()
64 size_t buf_size = is_tiled ? (height * width / 8) : (height * width * bpp); in verify_background_color()
80 switch (bpp) { in verify_background_color()
111 bpp = bytes_per_pixel(cfg.current_pixel_format); in display_before()
112 is_tiled = ((bpp == 1) && (cfg.screen_info & SCREEN_INFO_MONO_VTILED)); in display_before()
118 .buf_size = display_height * display_width * bpp, in display_before()
142 uint16_t width = sizeof(data) / bpp; in ZTEST()
143 uint16_t buf_size = width * bpp; in ZTEST()
[all …]
/Zephyr-Core-3.7.0/drivers/video/
Dvideo_mcux_csi.c154 unsigned int bpp = video_pix_fmt_bpp(fmt->pixelformat); in video_mcux_csi_set_fmt() local
158 if (!bpp || ep != VIDEO_EP_OUT) { in video_mcux_csi_set_fmt()
162 data->csi_config.bytesPerPixel = bpp; in video_mcux_csi_set_fmt()
Dvideo_stm32_dcmi.c216 unsigned int bpp = video_pix_fmt_bpp(fmt->pixelformat); in video_stm32_dcmi_set_fmt() local
218 if (!bpp || ep != VIDEO_EP_OUT) { in video_stm32_dcmi_set_fmt()
/Zephyr-Core-3.7.0/drivers/display/
DKconfig.mcux_elcdif40 The framebuffer size is computed as : panel_width * panel_height * bpp.