42#include "driver/gpio.h"
44#include "freertos/FreeRTOS.h"
45#include "freertos/queue.h"
55#define VGA4_LinesCount 4
99 void readScreen(
Rect const & rect,
RGB888 * destBuf);
117 void setupDefaultPalette();
123 void setPixelAt(PixelDesc
const & pixelDesc,
Rect & updateRect);
126 void drawEllipse(
Size const & size,
Rect & updateRect);
129 void clear(
Rect & updateRect);
132 void VScroll(
int scroll,
Rect & updateRect);
135 void HScroll(
int scroll,
Rect & updateRect);
141 void invertRect(
Rect const & rect,
Rect & updateRect);
144 void copyRect(
Rect const & source,
Rect & updateRect);
147 void swapFGBG(
Rect const & rect,
Rect & updateRect);
150 void rawDrawBitmap_Native(
int destX,
int destY,
Bitmap const * bitmap,
int X1,
int Y1,
int XCount,
int YCount);
153 void rawDrawBitmap_Mask(
int destX,
int destY,
Bitmap const * bitmap,
void * saveBackground,
int X1,
int Y1,
int XCount,
int YCount);
156 void rawDrawBitmap_RGBA2222(
int destX,
int destY,
Bitmap const * bitmap,
void * saveBackground,
int X1,
int Y1,
int XCount,
int YCount);
159 void rawDrawBitmap_RGBA8888(
int destX,
int destY,
Bitmap const * bitmap,
void * saveBackground,
int X1,
int Y1,
int XCount,
int YCount);
162 void rawFillRow(
int y,
int x1,
int x2,
RGB888 color);
163 void rawFillRow(
int y,
int x1,
int x2, uint8_t colorIndex);
165 void rawInvertRow(
int y,
int x1,
int x2);
167 void rawCopyRow(
int x1,
int x2,
int srcY,
int dstY);
169 void swapRows(
int yA,
int yB,
int x1,
int x2);
175 int getBitmapSavePixelSize() {
return 1; }
177 static void ISRHandler(
void * arg);
181 static VGA4Controller * s_instance;
183 volatile uint32_t * m_packedPaletteIndexQuad_to_signals;
void setPaletteItem(int index, RGB888 const &color)
Determines color of specified palette item.
static VGA4Controller * instance()
Returns the singleton instance of VGA4Controller class.
Represents the VGA 4 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.