MCPcopy Create free account
hub / github.com/Tencent/libpag / ToString

Function ToString

test/src/utils/TestUtils.cpp:32–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30using namespace tgfx;
31
32std::string ToString(Frame frame) {
33 auto result = std::to_string(frame);
34 while (result.size() < 4) {
35 result = "0" + result;
36 }
37 return result;
38}
39
40BackendTexture ToBackendTexture(const tgfx::GLTextureInfo& texture, int width, int height) {
41 GLTextureInfo glInfo = {};

Callers 5

PAG_TESTFunction · 0.85
PAG_TESTFunction · 0.85
TimeStretchTestFunction · 0.85
CompareFileFramesFunction · 0.85
TimeStretchModeToStringFunction · 0.85

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected