| 50 | TextAtlas::~TextAtlas() {} |
| 51 | |
| 52 | TextAtlas* TextAtlas::create() |
| 53 | { |
| 54 | TextAtlas* widget = new TextAtlas(); |
| 55 | if (widget->init()) |
| 56 | { |
| 57 | widget->autorelease(); |
| 58 | return widget; |
| 59 | } |
| 60 | AX_SAFE_DELETE(widget); |
| 61 | return nullptr; |
| 62 | } |
| 63 | |
| 64 | void TextAtlas::initRenderer() |
| 65 | { |
nothing calls this directly
no test coverage detected