mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 02:43:15 +00:00
- Support larger ROM sizes - Add storage status to SystemInfo app - Made DisplayDevice more robust (drivers must specify LVGL/DisplayDriver support explicitly)
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "SdlTouch.h"
|
|
#include <Tactility/hal/display/DisplayDevice.h>
|
|
|
|
/** Hack: variable comes from LvglTask.cpp */
|
|
extern lv_disp_t* displayHandle;
|
|
|
|
class SdlDisplay final : public tt::hal::display::DisplayDevice {
|
|
|
|
public:
|
|
|
|
std::string getName() const override { return "SDL Display"; }
|
|
std::string getDescription() const override { return ""; }
|
|
|
|
bool start() override { return true; }
|
|
bool stop() override { tt_crash("Not supported"); }
|
|
|
|
bool supportsLvgl() const override { return true; }
|
|
bool startLvgl() override { return displayHandle != nullptr; }
|
|
bool stopLvgl() override { tt_crash("Not supported"); }
|
|
lv_display_t* _Nullable getLvglDisplay() const override { return displayHandle; }
|
|
|
|
std::shared_ptr<tt::hal::touch::TouchDevice> _Nullable getTouchDevice() override { return std::make_shared<SdlTouch>(); }
|
|
|
|
bool supportsDisplayDriver() const override { return false; }
|
|
std::shared_ptr<tt::hal::display::DisplayDriver> _Nullable getDisplayDriver() override { return nullptr; }
|
|
};
|
|
|
|
std::shared_ptr<tt::hal::display::DisplayDevice> createDisplay() {
|
|
return std::make_shared<SdlDisplay>();
|
|
}
|
|
|