MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / stbi__get32le

Function stbi__get32le

Source/Utils/stb_image.h:1721–1726  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1719
1720#ifndef STBI_NO_BMP
1721static stbi__uint32 stbi__get32le(stbi__context *s)
1722{
1723 stbi__uint32 z = stbi__get16le(s);
1724 z += (stbi__uint32)stbi__get16le(s) << 16;
1725 return z;
1726}
1727#endif
1728
1729#define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings

Callers 3

stbi__bmp_test_rawFunction · 0.85
stbi__bmp_parse_headerFunction · 0.85
stbi__bmp_loadFunction · 0.85

Calls 1

stbi__get16leFunction · 0.85

Tested by

no test coverage detected