We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I find a memory leak when MacawView.doFindNode is invoked. It should invoke MGraphicsEndImageContext() before return doFindNode.
private func doFindNode(location: CGPoint) -> NodePath? { MGraphicsBeginImageContextWithOptions(self.bounds.size, false, 1.0) if let ctx = MGraphicsGetCurrentContext() { return doFindNode(location: location, ctx: ctx) // here should invoke MGraphicsEndImageContext() before return doFindNode } MGraphicsEndImageContext() return .none }
The text was updated successfully, but these errors were encountered:
Hi, @kunwang, this issue already fixed in the master branch
Sorry, something went wrong.
Ok, thanks.
amarunko
No branches or pull requests
Hi,
I find a memory leak when MacawView.doFindNode is invoked. It should invoke MGraphicsEndImageContext() before return doFindNode.
The text was updated successfully, but these errors were encountered: