MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / HIPLReadFloats

Function HIPLReadFloats

src/SB/Core/x/xhipio.cpp:452–468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

450}
451
452static S32 HIPLReadFloats(st_HIPLOADDATA* lddata, F32* data, S32 cnt)
453{
454 S32 got;
455
456 if (lddata->bypass)
457 {
458 got = HIPLBypassRead(lddata, data, cnt, sizeof(F32));
459 }
460 else
461 {
462 got = HIPLBlockRead(lddata, data, cnt, sizeof(F32));
463 }
464
465 got /= sizeof(F32);
466
467 return got;
468}
469
470static S32 HIPLReadString(st_HIPLOADDATA* lddata, char* buf)
471{

Callers

nothing calls this directly

Calls 2

HIPLBypassReadFunction · 0.70
HIPLBlockReadFunction · 0.70

Tested by

no test coverage detected