apps/drivertest: Fix run cmocka_driver_framebuffer No display on the screen

Signed-off-by: liuhongchao <liuhongchao@xiaomi.com>
This commit is contained in:
liuhongchao 2024-04-16 19:29:26 +08:00 committed by Xiang Xiao
parent 0d9b8a8fbf
commit 7efa80aa51

View File

@ -433,7 +433,7 @@ static void test_case_fb_2(FAR void **state)
int step_num = 0;
uint32_t colors_to_show[] =
{
0x00000000, 0x00ff0000, 0x0000ff00, 0x000000ff, 0x00ffffff
0xff000000, 0xffff0000, 0xff00ff00, 0xff0000ff, 0xffffffff
};
const uint32_t xres = fb_state->fb_info.video_info.xres;
@ -480,8 +480,9 @@ static void test_case_fb_3(FAR void **state)
}
gray_color = (0xff / step_num) * i;
draw_rect(fb_state, 0, start_y, xres, step_height,
gray_color << 16 | gray_color << 8 | gray_color);
draw_rect(
fb_state, 0, start_y, xres, step_height,
0xff000000 | gray_color << 16 | gray_color << 8 | gray_color);
}
}