mirror of https://github.com/axmolengine/axmol.git
Uncomment eaglview release CCEAGLViewImpl-ios
This is leaking the eaglview when the Director is purged. In our case, we are leaving the cocos environment on some views which are implemented with cocoa, and because this eaglview is not being released, it is getting notifications for keyboard events, and trying to access stuff on the NULL eaglview, crashing our app. Uncommnenting this line seems to fix the problem for us, and we haven't been able to find any nasty side effects.
This commit is contained in:
parent
e99ea7a9fe
commit
a2eb8977e0
|
@ -128,7 +128,7 @@ bool GLViewImpl::initWithRect(const std::string& viewName, Rect rect, float fram
|
|||
sharegroup: nil
|
||||
multiSampling: NO
|
||||
numberOfSamples: 0];
|
||||
|
||||
|
||||
[eaglview setMultipleTouchEnabled:YES];
|
||||
|
||||
_screenSize.width = _designResolutionSize.width = [eaglview getWidth];
|
||||
|
@ -182,12 +182,12 @@ float GLViewImpl::getContentScaleFactor() const
|
|||
void GLViewImpl::end()
|
||||
{
|
||||
[CCDirectorCaller destroy];
|
||||
|
||||
|
||||
// destroy EAGLView
|
||||
CCEAGLView *eaglview = (CCEAGLView*) _eaglview;
|
||||
|
||||
[eaglview removeFromSuperview];
|
||||
//[eaglview release];
|
||||
[eaglview release];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue