Hi
I want to know how eye adaption images effect can find screen is dark and how can find screen is bright?
And is it possible to implement eye adaption on mobile targets? (with simply control brightness of a white texture)
Hi
I want to know how eye adaption images effect can find screen is dark and how can find screen is bright?
And is it possible to implement eye adaption on mobile targets? (with simply control brightness of a white texture)
float GetLuminance(float3 color) {
return dot(color, float3(0.299, 0.587, 0.114));
}
Uses fairly standard values (taken from TV brightness values) for the conversion.