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
context = mixer.videoIO.context = nil, so this will cause context always be null.
open var context:CIContext? { get { return mixer.videoIO.context } set { mixer.videoIO.context = context } }
use newValue instead context in Setter.
open var context:CIContext? { get { return mixer.videoIO.context } set { mixer.videoIO.context = newValue } }
The text was updated successfully, but these errors were encountered:
refs #344
95824b1
Certainly.
Sorry, something went wrong.
22a5ffd
refs shogo4405#344
2199414
No branches or pull requests
context = mixer.videoIO.context = nil, so this will cause context always be null.
use newValue instead context in Setter.
The text was updated successfully, but these errors were encountered: