42#include "driver/gpio.h"
44#include "freertos/FreeRTOS.h"
45#include "freertos/queue.h"
55#define VGA16_LinesCount 4
100 void readScreen(
Rect const & rect,
RGB888 * destBuf);
118 void setupDefaultPalette();
125 void setPixelAt(PixelDesc
const & pixelDesc,
Rect & updateRect);
128 void drawEllipse(
Size const & size,
Rect & updateRect);
131 void clear(
Rect & updateRect);
134 void VScroll(
int scroll,
Rect & updateRect);
137 void HScroll(
int scroll,
Rect & updateRect);
143 void invertRect(
Rect const & rect,
Rect & updateRect);
146 void copyRect(
Rect const & source,
Rect & updateRect);
149 void swapFGBG(
Rect const & rect,
Rect & updateRect);
152 void rawDrawBitmap_Native(
int destX,
int destY,
Bitmap const * bitmap,
int X1,
int Y1,
int XCount,
int YCount);
155 void rawDrawBitmap_Mask(
int destX,
int destY,
Bitmap const * bitmap,
void * saveBackground,
int X1,
int Y1,
int XCount,
int YCount);
158 void rawDrawBitmap_RGBA2222(
int destX,
int destY,
Bitmap const * bitmap,
void * saveBackground,
int X1,
int Y1,
int XCount,
int YCount);
161 void rawDrawBitmap_RGBA8888(
int destX,
int destY,
Bitmap const * bitmap,
void * saveBackground,
int X1,
int Y1,
int XCount,
int YCount);
164 void rawFillRow(
int y,
int x1,
int x2,
RGB888 color);
165 void rawFillRow(
int y,
int x1,
int x2, uint8_t colorIndex);
167 void rawInvertRow(
int y,
int x1,
int x2);
169 void rawCopyRow(
int x1,
int x2,
int srcY,
int dstY);
171 void swapRows(
int yA,
int yB,
int x1,
int x2);
177 int getBitmapSavePixelSize() {
return 1; }
179 static void ISRHandler(
void * arg);
182 static VGA16Controller * s_instance;
184 volatile uint16_t m_packedPaletteIndexPair_to_signals[256];
void setPaletteItem(int index, RGB888 const &color)
Determines color of specified palette item.
static VGA16Controller * instance()
Returns the singleton instance of VGA16Controller class.
Represents the VGA 16 colors bitmapped controller.
Represents the base class for paletted bitmapped controllers like VGA16Controller,...
This file contains fabgl::BitmappedDisplayController definition.
This file contains FabGL library configuration settings, like number of supported colors,...
This file contains some utility classes and functions.
Represents a glyph position, size and binary data.
Represents a 24 bit RGB color.
Represents a bidimensional size.
This file contains fabgl::GPIOStream definition.
Specifies various glyph painting options.
This file contains fabgl::VGAPalettedController definition.