FabGL
ESP32 Display Controller and Graphics Library
|
|
inline |
Sets a raw pixel prepared using VGAController.createRawPixel.
A raw pixel (or raw color) is a byte (uint8_t) that contains color information and synchronization signals.
x | Horizontal pixel position |
y | Vertical pixel position |
rgb | Raw pixel color |
Example:
// Set color of pixel at 100, 100 VGAController.setRawPixel(100, 100, VGAController.createRawPixel(RGB222(3, 0, 0));
Definition at line 193 of file vgacontroller.h.