zephyr/drivers/display/Kconfig.sdl
Jan Van Winkel 6cb629c35b driver: SDL based display emulation driver
This driver introduces an emulated LCD display for the native POSIX
board. The emulated display driver makes use of SDL2 to render the
displays frame buffer into a dedicated desktop window.

Signed-off-by: Jan Van Winkel <jan.van_winkel@dxplore.eu>
2018-12-10 20:37:29 -05:00

31 lines
626 B
Plaintext

# Kconfig - SDL based emulated display configuration options
#
# Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu>
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig SDL_DISPLAY
bool "SDL based emulated display"
depends on BOARD_NATIVE_POSIX
select HAS_SDL
help
Enable SDL based emulated display compliant with display driver API.
if SDL_DISPLAY
config SDL_DISPLAY_DEV_NAME
string "SDL display device name"
default "SDL_DISPLAY"
config SDL_DISPLAY_X_RES
int "X resolution for SDL display"
default 320
config SDL_DISPLAY_Y_RES
int "Y resolution for SDL display"
default 240
endif #SDL_DISPLAY