2025-09-24 15:47:56 +10:00
|
|
|
#ifndef _CURSETREE_SURFACE_H
|
|
|
|
|
#define _CURSETREE_SURFACE_H
|
|
|
|
|
|
2025-09-28 00:04:36 +10:00
|
|
|
#include "ct_shared.h"
|
2025-09-24 15:47:56 +10:00
|
|
|
|
|
|
|
|
typedef struct ct_surface {
|
|
|
|
|
pos x, y, w, h;
|
2025-09-27 20:46:05 +10:00
|
|
|
glyph **buf;
|
2025-09-24 15:47:56 +10:00
|
|
|
pos vcx, vcy; /* virtual cursor position */
|
|
|
|
|
} surface;
|
|
|
|
|
|
|
|
|
|
#endif /* _CURSETREE_SURFACE_H */
|