From 0e60854be6ca99e7db9f2dfc49e4fe329da92628 Mon Sep 17 00:00:00 2001 From: epoch Date: Fri, 17 Jul 2020 04:05:20 -0500 Subject: experimental svg output --- src/graphics_svg.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/graphics_svg.h diff --git a/src/graphics_svg.h b/src/graphics_svg.h new file mode 100644 index 0000000..3ad1cae --- /dev/null +++ b/src/graphics_svg.h @@ -0,0 +1,15 @@ +#ifndef _HACKVR_GRAPHICS_SVG_H_ +#define _HACKVR_GRAPHICS_SVG_H_ + +struct svg_global {//stores global variables for the x11 *specific* shit. + char backbuffer[1024 * 1024 * 1024];//1 meg should be fine? + char *colors[256]; + char *ansi_color[16]; + char *foreground_color; + char *filename; + char *red; + char *green; + char *blue; +}; + +#endif -- cgit v1.2.3