Searched refs:invalid_chunk (Results 1 – 2 of 2) sorted by relevance
4954 static char invalid_chunk[] = "XXXX PNG chunk not known"; in stbi__parse_png_file() local4955 invalid_chunk[0] = STBI__BYTECAST(c.type >> 24); in stbi__parse_png_file()4956 invalid_chunk[1] = STBI__BYTECAST(c.type >> 16); in stbi__parse_png_file()4957 invalid_chunk[2] = STBI__BYTECAST(c.type >> 8); in stbi__parse_png_file()4958 invalid_chunk[3] = STBI__BYTECAST(c.type >> 0); in stbi__parse_png_file()4960 return stbi__err(invalid_chunk, "PNG not supported: unknown PNG chunk type"); in stbi__parse_png_file()