| 295 | } |
| 296 | |
| 297 | ISize 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 |
no test coverage detected