mirror of https://github.com/aap/librw.git
Updated README and TODO.
This commit is contained in:
parent
b014856a97
commit
755bfffccf
|
@ -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
3
TODO
|
@ -20,8 +20,7 @@ Clump & related:
|
|||
Mat FX
|
||||
Pipeline Set
|
||||
Geometry
|
||||
Native Data
|
||||
Breakable
|
||||
-Native Data
|
||||
Extra Vertex Colors
|
||||
(Morph)
|
||||
Skin
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue