]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
writing a GLSL caching feature, will create a file for each compiled shader, and...
authorAxel Isouard <axel.isouard@epitech.eu>
Wed, 25 Jul 2012 10:47:24 +0000 (12:47 +0200)
committerAxel Isouard <axel.isouard@epitech.eu>
Wed, 25 Jul 2012 10:47:24 +0000 (12:47 +0200)
shadermodeinfo.h [new file with mode: 0644]

diff --git a/shadermodeinfo.h b/shadermodeinfo.h
new file mode 100644 (file)
index 0000000..5b9a264
--- /dev/null
@@ -0,0 +1,8 @@
+typedef struct shadermodeinfo_s
+{
+  const char *vertexfilename;
+  const char *geometryfilename;
+  const char *fragmentfilename;
+  const char *pretext;
+  const char *name;
+} shadermodeinfo_t;