1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-20 04:09:16 +00:00

Fix Endian functions names in hsTypes and hsStream.

Function and macro names for endianness were previously vague,
and on big-endian systems entirely misleading.  The names are
now properly descriptive of what they actually do.
This commit is contained in:
2011-10-23 14:01:54 -07:00
committed by Darryl Pogue
parent ab37a4a486
commit e462ef04b3
255 changed files with 2676 additions and 2676 deletions

View File

@ -108,9 +108,9 @@ void plSpanTemplate::DeAlloc()
void plSpanTemplate::Read(hsStream* stream)
{
fNumVerts = stream->ReadSwap16();
fFormat = stream->ReadSwap16();
fNumTris = stream->ReadSwap16();
fNumVerts = stream->ReadLE16();
fFormat = stream->ReadLE16();
fNumTris = stream->ReadLE16();
Alloc(fFormat, fNumVerts, fNumTris);
@ -120,9 +120,9 @@ void plSpanTemplate::Read(hsStream* stream)
void plSpanTemplate::Write(hsStream* stream) const
{
stream->WriteSwap16(fNumVerts);
stream->WriteSwap16(fFormat);
stream->WriteSwap16(fNumTris);
stream->WriteLE16(fNumVerts);
stream->WriteLE16(fFormat);
stream->WriteLE16(fNumTris);
stream->Write(VertSize(), fData);
stream->Write(IndexSize(), fIndices);