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.
|
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
|
Mat FX
|
||||||
Pipeline Set
|
Pipeline Set
|
||||||
Geometry
|
Geometry
|
||||||
Native Data
|
-Native Data
|
||||||
Breakable
|
|
||||||
Extra Vertex Colors
|
Extra Vertex Colors
|
||||||
(Morph)
|
(Morph)
|
||||||
Skin
|
Skin
|
||||||
|
|
|
@ -65,7 +65,6 @@ ReadNativeData(istream &stream, int32, void *object, int32, int32)
|
||||||
header->attribs = new AttribDesc[header->numAttribs];
|
header->attribs = new AttribDesc[header->numAttribs];
|
||||||
stream.read((char*)header->attribs,
|
stream.read((char*)header->attribs,
|
||||||
header->numAttribs*sizeof(AttribDesc));
|
header->numAttribs*sizeof(AttribDesc));
|
||||||
printAttribInfo(header->attribs, header->numAttribs);
|
|
||||||
header->dataSize = header->attribs[0].stride*geometry->numVertices;
|
header->dataSize = header->attribs[0].stride*geometry->numVertices;
|
||||||
header->data = new uint8[header->dataSize];
|
header->data = new uint8[header->dataSize];
|
||||||
stream.read((char*)header->data, header->dataSize);
|
stream.read((char*)header->data, header->dataSize);
|
||||||
|
|
Loading…
Reference in New Issue