FabGL
ESP32 Display Controller and Graphics Library
|
|
inherited |
Moves screen by specified horizontal and vertical offset.
Screen moving is performed moving horizontal and vertical Front and Back porchs.
offsetX | Horizontal offset in pixels. < 0 goes left, > 0 goes right. |
offsetY | Vertical offset in pixels. < 0 goes up, > 0 goes down. |
Example:
// Move screen 4 pixels right, 1 pixel left VGAController.moveScreen(4, -1);
Definition at line 722 of file vgabasecontroller.cpp.