MCPcopy Create free account
hub / github.com/crownengine/crown / dump

Method dump

3rdparty/bimg/tools/texturec/texturec.cpp:33–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31struct Options
32{
33 void dump()
34 {
35 DBG("Options:\n"
36 "\t maxSize: %d\n"
37 "\t mipSkip: %d\n"
38 "\t edge: %f\n"
39 "\t format: %s\n"
40 "\t mips: %s\n"
41 "\tnormalMap: %s\n"
42 "\t iqa: %s\n"
43 "\t pma: %s\n"
44 "\t sdf: %s\n"
45 "\t radiance: %s\n"
46 "\t equirect: %s\n"
47 "\t strip: %s\n"
48 "\t linear: %s\n"
49 , maxSize
50 , mipSkip
51 , edge
52 , bimg::getName(format)
53 , mips ? "true" : "false"
54 , normalMap ? "true" : "false"
55 , iqa ? "true" : "false"
56 , pma ? "true" : "false"
57 , sdf ? "true" : "false"
58 , radiance ? "true" : "false"
59 , equirect ? "true" : "false"
60 , strip ? "true" : "false"
61 , linear ? "true" : "false"
62 );
63 }
64
65 uint32_t maxSize = UINT32_MAX;
66 uint32_t mipSkip = 0;

Callers

nothing calls this directly

Calls 1

getNameFunction · 0.50

Tested by

no test coverage detected