Add test cases for testing basic CFB functions. These tests cannot run in CI because the CI environment has no display. Mark these tests as `build_only`. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
24 lines
720 B
C
24 lines
720 B
C
/*
|
|
* Copyright (c) 2024 TOKITA Hiroshi
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef TESTS_SUBSYS_DISPLAY_CFB_DRAW_TEXT_AND_PRINT_SRC_TESTDATA_H__
|
|
#define TESTS_SUBSYS_DISPLAY_CFB_DRAW_TEXT_AND_PRINT_SRC_TESTDATA_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint32_t diagonal3224[];
|
|
extern uint32_t kerning_3_12rectspace1016[];
|
|
extern uint32_t kerning_3_2rectspace1016[];
|
|
extern uint32_t kerning_3_rightclip_1_2rectspace1016[];
|
|
extern uint32_t outside_bottom_left[];
|
|
extern uint32_t outside_bottom_right[];
|
|
extern uint32_t outside_top_left[];
|
|
extern uint32_t outside_top_right[];
|
|
extern uint32_t rectspace1016[];
|
|
extern uint32_t rectspace1123[];
|
|
|
|
#endif /* TESTS_SUBSYS_DISPLAY_CFB_DRAW_TEXT_AND_PRINT_SRC_TESTDATA_H__ */
|