feat: add stroke thickness

This commit is contained in:
2026-03-05 00:51:20 +05:30
parent 8ac783e6e0
commit eefd95e4d2
15 changed files with 379 additions and 356 deletions

View File

@@ -6,15 +6,15 @@
#include "uicontroller.h"
typedef struct VektorCanvas {
GtkPicture *canvasWidget;
GtkPicture *canvasWidget;
// texture related stuff
guchar *canvasPixels;
GdkTexture *canvasTexture;
GBytes *canvasPixelBytes;
// texture related stuff
guchar *canvasPixels;
GdkTexture *canvasTexture;
GBytes *canvasPixelBytes;
int width;
int height;
int width;
int height;
} VektorCanvas;
void vektor_canvas_init(VektorWidgetState *state, VektorCanvas *canvasOut);