diff options
author | Treeki <treeki@gmail.com> | 2010-10-07 23:48:57 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2010-10-07 23:48:57 +0200 |
commit | 532859713aaf0fdf482ee7d68676f6927a800eeb (patch) | |
tree | 304c7d60b76c0a91296087927d52360a627478c0 /lyt/materials/material.h | |
parent | 5f6dad55d75cbe146ff7fefc899a02ccd39078ba (diff) | |
download | LayoutStudio-532859713aaf0fdf482ee7d68676f6927a800eeb.tar.gz LayoutStudio-532859713aaf0fdf482ee7d68676f6927a800eeb.zip |
implemented some more material stuff; added readme
Diffstat (limited to '')
-rw-r--r-- | lyt/materials/material.h | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/lyt/materials/material.h b/lyt/materials/material.h index 73a0e57..643f656 100644 --- a/lyt/materials/material.h +++ b/lyt/materials/material.h @@ -8,6 +8,8 @@ #include "../common.h" #include "texmap.h" +#include "texsrt.h" +#include "texcoordgen.h" class LYTLayout; @@ -31,18 +33,6 @@ public: -class LYTTexCoordGen { -public: - void writeToDataStream(QDataStream &out); - void readFromDataStream(QDataStream &in); - - void dumpToDebug(); - - quint8 genType; - quint8 src; - quint8 mtx; -}; - class LYTChanCtrl { public: void writeToDataStream(QDataStream &out); @@ -67,20 +57,6 @@ public: int alpha; }; -class LYTTexSRT { -public: - void writeToDataStream(QDataStream &out); - void readFromDataStream(QDataStream &in); - - void dumpToDebug(); - - float xTrans; - float yTrans; - float rotate; - float xScale; - float yScale; -}; - class LYTIndirectStage { public: void writeToDataStream(QDataStream &out); |