Updated README and TODO.

This commit is contained in:
Angelo Papenhoff 2014-12-24 23:56:40 +01:00
parent b014856a97
commit 755bfffccf
3 changed files with 2 additions and 4 deletions

View File

@ -2,4 +2,4 @@ librw
=====
This still very much work in progress.
The basics of DFFs are implemented, no plugins yet.
The basics of DFFs are implemented and some plugins.

3
TODO
View File

@ -20,8 +20,7 @@ Clump & related:
Mat FX
Pipeline Set
Geometry
Native Data
Breakable
-Native Data
Extra Vertex Colors
(Morph)
Skin

View File

@ -65,7 +65,6 @@ ReadNativeData(istream &stream, int32, void *object, int32, int32)
header->attribs = new AttribDesc[header->numAttribs];
stream.read((char*)header->attribs,
header->numAttribs*sizeof(AttribDesc));
printAttribInfo(header->attribs, header->numAttribs);
header->dataSize = header->attribs[0].stride*geometry->numVertices;
header->data = new uint8[header->dataSize];
stream.read((char*)header->data, header->dataSize);