2025-07-05 13:17:12 +02:00

33 lines
626 B
C

#ifndef NN_SCREEN_H
#define NN_SCREEN_H
#include "../neonucleus.h"
typedef struct nn_screen {
nn_Alloc alloc;
nn_scrchr_t *buffer;
nn_guard *lock;
nn_refc refc;
int width;
int height;
int viewportWidth;
int viewportHeight;
int maxWidth;
int maxHeight;
int maxDepth;
int depth;
int editableColors;
int paletteColors;
int *palette;
int aspectRatioWidth;
int aspectRatioHeight;
bool isOn;
bool isTouchModeInverted;
bool isPrecise;
bool isDirty;
nn_address keyboards[NN_MAX_SCREEN_KEYBOARDS];
size_t keyboardCount;
} nn_screen;
#endif