| 73 | } |
| 74 | |
| 75 | RenderViewImpl* RenderViewImpl::createWithFullScreen(std::string_view viewName) |
| 76 | { |
| 77 | auto ret = new RenderViewImpl(); |
| 78 | if (ret && ret->initWithFullScreen(viewName)) |
| 79 | { |
| 80 | ret->autorelease(); |
| 81 | return ret; |
| 82 | } |
| 83 | AX_SAFE_DELETE(ret); |
| 84 | return nullptr; |
| 85 | } |
| 86 | |
| 87 | RenderViewImpl::RenderViewImpl() |
| 88 | { |
nothing calls this directly
no test coverage detected