aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/LittleVgl.h
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2023-02-23 23:33:09 +0200
committerRiku Isokoski <riksu9000@gmail.com>2023-02-23 23:43:24 +0200
commit0d494136c982c3e00026b247935266d557027bb0 (patch)
tree0d8efc57c37147f6f43824c2abef2b18071ed283 /src/displayapp/LittleVgl.h
parent05f404950afeef26393b3e385bdb6d77df423e86 (diff)
LittleVgl: Remove unused Cst816S reference
Diffstat (limited to 'src/displayapp/LittleVgl.h')
-rw-r--r--src/displayapp/LittleVgl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/displayapp/LittleVgl.h b/src/displayapp/LittleVgl.h
index 7bd0198c..0a45b438 100644
--- a/src/displayapp/LittleVgl.h
+++ b/src/displayapp/LittleVgl.h
@@ -4,7 +4,6 @@
namespace Pinetime {
namespace Drivers {
- class Cst816S;
class St7789;
}
@@ -12,7 +11,7 @@ namespace Pinetime {
class LittleVgl {
public:
enum class FullRefreshDirections { None, Up, Down, Left, Right, LeftAnim, RightAnim };
- LittleVgl(Pinetime::Drivers::St7789& lcd, Pinetime::Drivers::Cst816S& touchPanel);
+ LittleVgl(Pinetime::Drivers::St7789& lcd);
LittleVgl(const LittleVgl&) = delete;
LittleVgl& operator=(const LittleVgl&) = delete;
@@ -39,7 +38,6 @@ namespace Pinetime {
void InitTouchpad();
Pinetime::Drivers::St7789& lcd;
- Pinetime::Drivers::Cst816S& touchPanel;
lv_disp_buf_t disp_buf_2;
lv_color_t buf2_1[LV_HOR_RES_MAX * 4];