diff options
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); |