|
FabGL
ESP32 Display Controller and Graphics Library
|
Represents the base abstract class for bitmapped display controllers. More...
#include <displaycontroller.h>

Public Member Functions | |
| virtual int | colorsCount ()=0 |
| Determines number of colors this display can provide. More... | |
| DisplayControllerType | controllerType () |
| Determines the display controller type. More... | |
| void | enableBackgroundPrimitiveExecution (bool value) |
| Enables or disables drawings inside vertical retracing time. More... | |
| void | enableBackgroundPrimitiveTimeout (bool value) |
| Enables or disables execution time limitation inside vertical retracing interrupt. More... | |
| int | getScreenHeight () |
| Determines the screen height in pixels. More... | |
| int | getScreenWidth () |
| Determines the screen width in pixels. More... | |
| int | getViewPortHeight () |
| Determines vertical size of the viewport. More... | |
| int | getViewPortWidth () |
| Determines horizontal size of the viewport. More... | |
| bool | isDoubleBuffered () |
| Determines whether BitmappedDisplayController is on double buffered mode. More... | |
| virtual NativePixelFormat | nativePixelFormat ()=0 |
| Represents the native pixel format used by this display. More... | |
| void | processPrimitives () |
| Draws immediately all primitives in the queue. More... | |
| void | refreshSprites () |
| Forces the sprites to be updated. More... | |
| void | removeSprites () |
| Empties the list of active sprites. More... | |
| virtual void | resumeBackgroundPrimitiveExecution ()=0 |
| Resumes drawings after suspendBackgroundPrimitiveExecution(). More... | |
| void | setMouseCursor (Cursor *cursor) |
| Sets mouse cursor and make it visible. More... | |
| void | setMouseCursor (CursorName cursorName) |
| Sets mouse cursor from a set of predefined cursors. More... | |
| void | setMouseCursorPos (int X, int Y) |
| Sets mouse cursor position. More... | |
| template<typename T > | |
| void | setSprites (T *sprites, int count) |
| Sets the list of active sprites. More... | |
| virtual void | suspendBackgroundPrimitiveExecution ()=0 |
| Suspends drawings. More... | |
Static Public Attributes | |
| static int | queueSize = 1024 |
| Size of display controller primitives queue. More... | |
Represents the base abstract class for bitmapped display controllers.
Definition at line 751 of file displaycontroller.h.