BradLarson / GPUImage3

GPUImage 3 is a BSD-licensed Swift framework for GPU-accelerated video and image processing using Metal.
BSD 3-Clause "New" or "Revised" License
2.68k stars 330 forks source link

WhiteBalance issue #95

Closed Whitelotuscorp closed 3 years ago

Whitelotuscorp commented 3 years ago

GPUImage2 example here:

let whiteBalance = WhiteBalance() whiteBalance.temperature = Float(self.layerSelected.temperature) whiteBalance.tint = Float(self.layerSelected.tint)

it's working.

GPUImage3 example here:

let whiteBalance = WhiteBalance() whiteBalance.temperature = Float(self.layerSelected.temperature) whiteBalance.tint = Float(self.layerSelected.tint)

Error: Use of unresolved identifier 'WhiteBalance'

WhiteBalance is not working.