summaryrefslogtreecommitdiff
path: root/lyt/materials/texcoordgen.h
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2010-10-07 23:48:57 +0200
committerTreeki <treeki@gmail.com>2010-10-07 23:48:57 +0200
commit532859713aaf0fdf482ee7d68676f6927a800eeb (patch)
tree304c7d60b76c0a91296087927d52360a627478c0 /lyt/materials/texcoordgen.h
parent5f6dad55d75cbe146ff7fefc899a02ccd39078ba (diff)
downloadLayoutStudio-532859713aaf0fdf482ee7d68676f6927a800eeb.tar.gz
LayoutStudio-532859713aaf0fdf482ee7d68676f6927a800eeb.zip
implemented some more material stuff; added readme
Diffstat (limited to 'lyt/materials/texcoordgen.h')
-rw-r--r--lyt/materials/texcoordgen.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/lyt/materials/texcoordgen.h b/lyt/materials/texcoordgen.h
new file mode 100644
index 0000000..5e66b8e
--- /dev/null
+++ b/lyt/materials/texcoordgen.h
@@ -0,0 +1,21 @@
+#ifndef LYTTEXCOORDGEN_H
+#define LYTTEXCOORDGEN_H
+
+#include "../common.h"
+#include <QtCore/QDataStream>
+
+class LYTTexCoordGen {
+public:
+ LYTTexCoordGen();
+
+ void writeToDataStream(QDataStream &out);
+ void readFromDataStream(QDataStream &in);
+
+ void dumpToDebug();
+
+ quint8 genType;
+ quint8 src;
+ quint8 mtx;
+};
+
+#endif // LYTTEXCOORDGEN_H