MCPcopy Create free account
hub / github.com/Tencent/tgfx / plotDimensions

Method plotDimensions

src/core/Atlas.cpp:297–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

295}
296
297ISize AtlasConfig::plotDimensions(MaskFormat maskFormat) const {
298 auto atlasDimensions = this->atlasDimensions(maskFormat);
299 auto plotWidth = atlasDimensions.width >= MaxTextureSize ? 512 : 256;
300 auto plotHeight = atlasDimensions.height >= MaxTextureSize ? 512 : 256;
301 return {plotWidth, plotHeight};
302}
303} // namespace tgfx

Callers 1

initAtlasMethod · 0.80

Calls 1

atlasDimensionsMethod · 0.95

Tested by

no test coverage detected