MCPcopy Create free account
hub / github.com/axmolengine/axmol / create

Method create

core/platform/android/RenderViewImpl-android.cpp:63–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63RenderViewImpl* RenderViewImpl::create(std::string_view viewName)
64{
65 auto ret = new RenderViewImpl;
66 if (ret && ret->initWithFullScreen(viewName))
67 {
68 ret->autorelease();
69 return ret;
70 }
71 AX_SAFE_DELETE(ret);
72 return nullptr;
73}
74
75RenderViewImpl* RenderViewImpl::createWithFullScreen(std::string_view viewName)
76{

Callers 5

runMethod · 0.45
supportsFormatMethod · 0.45
newPaintMethod · 0.45
showDialogMethod · 0.45

Calls 2

autoreleaseMethod · 0.80
initWithFullScreenMethod · 0.45

Tested by

no test coverage detected