aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-07-17 04:05:20 -0500
committerepoch <epoch@hacking.allowed.org>2020-07-17 04:05:20 -0500
commit0e60854be6ca99e7db9f2dfc49e4fe329da92628 (patch)
tree5e615bd8b2e21d9ed3f81a00b30d9a2656f8b469
parent07e163349f9251a5e9c10aba6e080c73da0481f3 (diff)
downloadhackvr-0e60854be6ca99e7db9f2dfc49e4fe329da92628.tar.gz
hackvr-0e60854be6ca99e7db9f2dfc49e4fe329da92628.zip
experimental svg output
-rw-r--r--src/graphics_svg.h15
1 files changed, 15 insertions, 0 deletions
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