fix(sdl): remove extraneous function declarations (#10079)
Arduino Lint / lint (push) Waiting to run
Build Examples with C++ Compiler / build-examples (push) Waiting to run
MicroPython CI / Build esp32 port (push) Waiting to run
MicroPython CI / Build rp2 port (push) Waiting to run
MicroPython CI / Build stm32 port (push) Waiting to run
MicroPython CI / Build unix port (push) Waiting to run
C/C++ CI / Build OPTIONS_16BIT - Ubuntu (push) Waiting to run
C/C++ CI / Build OPTIONS_24BIT - Ubuntu (push) Waiting to run
C/C++ CI / Build OPTIONS_FULL_32BIT - Ubuntu (push) Waiting to run
C/C++ CI / Build OPTIONS_NORMAL_8BIT - Ubuntu (push) Waiting to run
C/C++ CI / Build OPTIONS_SDL - Ubuntu (push) Waiting to run
C/C++ CI / Build OPTIONS_16BIT - cl - Windows (push) Waiting to run
C/C++ CI / Build OPTIONS_16BIT - gcc - Windows (push) Waiting to run
C/C++ CI / Build OPTIONS_24BIT - cl - Windows (push) Waiting to run
C/C++ CI / Build OPTIONS_24BIT - gcc - Windows (push) Waiting to run
C/C++ CI / Build OPTIONS_FULL_32BIT - cl - Windows (push) Waiting to run
C/C++ CI / Build OPTIONS_FULL_32BIT - gcc - Windows (push) Waiting to run
C/C++ CI / Build ESP IDF ESP32S3 (push) Waiting to run
C/C++ CI / Run tests with 32bit build (push) Waiting to run
C/C++ CI / Run tests with 64bit build (push) Waiting to run
BOM Check / bom-check (push) Waiting to run
Verify that lv_conf_internal.h matches repository state / verify-conf-internal (push) Waiting to run
Verify GDB constants are up-to-date / verify-gdb-consts (push) Waiting to run
Verify the widget property name / verify-property-name (push) Waiting to run
Verify code formatting / verify-formatting (push) Waiting to run
Compare file templates with file names / template-check (push) Waiting to run
Build Docs / build-and-deploy (push) Waiting to run
Test API JSON generator / Test API JSON (push) Waiting to run
Install LVGL using CMake / build-examples (push) Waiting to run
Check Makefile / Build using Makefile (push) Waiting to run
Check Makefile for UEFI / Build using Makefile for UEFI (push) Waiting to run
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/benchmark_results_comment/test.sh) (push) Waiting to run
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/filter_docker_logs/test.sh) (push) Waiting to run
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/serialize_results/test.sh) (push) Waiting to run
Emulated Performance Test / ARM Emulated Benchmark 32b - lv_conf_perf32b (push) Blocked by required conditions
Emulated Performance Test / ARM Emulated Benchmark 64b - lv_conf_perf64b (push) Blocked by required conditions
Emulated Performance Test / ARM Emulated Benchmark - Save PR Number (push) Blocked by required conditions
Hardware Performance Test / Hardware Performance Benchmark (push) Waiting to run
Hardware Performance Test / HW Benchmark - Save PR Number (push) Waiting to run
Performance Tests CI / Perf Tests OPTIONS_TEST_PERF_32B - Ubuntu (push) Waiting to run
Performance Tests CI / Perf Tests OPTIONS_TEST_PERF_64B - Ubuntu (push) Waiting to run
Port repo release update / run-release-branch-updater (push) Waiting to run
Verify Font License / verify-font-license (push) Waiting to run
Verify Kconfig / verify-kconfig (push) Waiting to run

This commit is contained in:
André Costa
2026-05-08 20:44:20 +02:00
committed by GitHub
parent 5debd9f0f1
commit 1219d2b75b
-15
View File
@@ -69,21 +69,6 @@ void lv_sdl_mouse_handler(SDL_Event * event);
void lv_sdl_mousewheel_handler(SDL_Event * event);
lv_display_t * lv_sdl_get_disp_from_win_id(uint32_t win_id);
#if LV_SDL_USE_EGL
lv_result_t lv_sdl_egl_init(lv_display_t * disp);
lv_result_t lv_sdl_egl_resize(lv_display_t * disp);
void lv_sdl_egl_deinit(lv_display_t * disp);
#elif LV_USE_DRAW_SDL
lv_result_t lv_sdl_texture_init(lv_display_t * disp);
lv_result_t lv_sdl_texture_resize(lv_display_t * disp);
void lv_sdl_texture_deinit(lv_display_t * disp);
#else
lv_result_t lv_sdl_sw_init(lv_display_t * disp);
lv_result_t lv_sdl_sw_resize(lv_display_t * disp);
void lv_sdl_sw_deinit(lv_display_t * disp);
#endif
/**********************
* MACROS
**********************/