GPUComputationRenderer: Added check to make it work on iOS. (#9644)
* Added check to GPUComputationRenderer to make it work on iOS.
It checks if FloatType is supported by trying to render in a temporary render target.
If the check fails, it switches to HalfFloatType which works on iOS.
* Changed the detection method per mrdoob indication.