Remove const
This commit is contained in:
@ -77,7 +77,7 @@ public:
|
|||||||
uint16_t decodeUTF8(uint8_t c) override { return m_tft.decodeUTF8(c); }
|
uint16_t decodeUTF8(uint8_t c) override { return m_tft.decodeUTF8(c); }
|
||||||
|
|
||||||
void setSwapBytes(bool swap) override { m_tft.setSwapBytes(swap); }
|
void setSwapBytes(bool swap) override { m_tft.setSwapBytes(swap); }
|
||||||
bool getSwapBytes(void) const override { return m_tft.getSwapBytes(); }
|
bool getSwapBytes(void) override { return m_tft.getSwapBytes(); }
|
||||||
|
|
||||||
void startWrite(void) override { m_tft.startWrite(); }
|
void startWrite(void) override { m_tft.startWrite(); }
|
||||||
void writeColor(uint16_t color, uint32_t len) override { m_tft.writeColor(color, len); }
|
void writeColor(uint16_t color, uint32_t len) override { m_tft.writeColor(color, len); }
|
||||||
|
@ -91,7 +91,7 @@ public:
|
|||||||
|
|
||||||
// Swap the byte order for pushImage() and pushPixels() - corrects endianness
|
// Swap the byte order for pushImage() and pushPixels() - corrects endianness
|
||||||
virtual void setSwapBytes(bool swap) = 0;
|
virtual void setSwapBytes(bool swap) = 0;
|
||||||
virtual bool getSwapBytes(void) const = 0;
|
virtual bool getSwapBytes(void) = 0;
|
||||||
|
|
||||||
// Bare metal functions
|
// Bare metal functions
|
||||||
virtual void startWrite(void) = 0;
|
virtual void startWrite(void) = 0;
|
||||||
|
Reference in New Issue
Block a user