Completed GLSL support in .ive

This commit is contained in:
Robert Osfield
2005-05-11 13:37:38 +00:00
parent 8d31e75364
commit aa6ea8c047
10 changed files with 268 additions and 36 deletions

View File

@@ -31,7 +31,7 @@ void TexMat::write(DataOutputStream* out){
// Write TexMat's properties.
// Write mode
out->writeMatrix(getMatrix());
out->writeMatrixf(getMatrix());
}
void TexMat::read(DataInputStream* in){
@@ -50,7 +50,7 @@ void TexMat::read(DataInputStream* in){
// Read TexMat's properties
// Read matrix
setMatrix(in->readMatrix());
setMatrix(in->readMatrixf());
}
else{