MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / stbi__get_chunk_header

Function stbi__get_chunk_header

include/stb/stb_image.h:4613–4619  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4611} stbi__pngchunk;
4612
4613static stbi__pngchunk stbi__get_chunk_header(stbi__context *s)
4614{
4615 stbi__pngchunk c;
4616 c.length = stbi__get32be(s);
4617 c.type = stbi__get32be(s);
4618 return c;
4619}
4620
4621static int stbi__check_png_header(stbi__context *s)
4622{

Callers 1

stbi__parse_png_fileFunction · 0.85

Calls 1

stbi__get32beFunction · 0.85

Tested by

no test coverage detected