calculate light volume radius from intensity

江枫思渺然 提交于 2019-12-25 09:42:08

问题


i am currently having a problem with calculating the light volume radius for a deferred renderer. On low light intensities the volume size looks correct but when the light intensity (and therefore the radius) increases, the light volume seems to be more and more too small.

I am calculating the light volume radius (in world space) like this:

const float LIGHT_CUTOFF_DEFAULT = 50;
mRadius = sqrt(color.length() * LIGHT_CUTOFF_DEFAULT);

I then use this value to scale a box.

In my shader i then calculate the attenuation like this:

float falloff = 5;
float attenuation = max(0, 1.0 / (1+falloff*(distance*distance)));

So obviously I am messing around with the math. The attenuation should be linear, right? But how do I now correctly calculate the world scale value for the light volume?

P.S. the light color can go beyond (1,1,1) since I am planning to use HDR rendering.


回答1:


Not using that equation, light goes on forever.

plot 1.0 / (1+5*(x*x)) at wolframalpha.com:

[EDIT] Since your light colour values can go above one, the following 1/255 will need to be divided by the largest RGB component.

You'll need a threshold. Assuming your monitor can't display anything dimmer than 1/255 before black,

solve 1.0 / (1+f*(x*x)) = 1/255, x

Where f is your falloff. For f = 5, the effective radius is ~7.

You could probably increase 1/255 a little depending on your application and you might not notice anything badly wrong. Alternatively, fudge an artificial falloff function which isn't infinite :)

This issue is also discussed here: https://gamedev.stackexchange.com/questions/51291/deferred-rendering-and-point-light-radius, where the function is adjusted to reach zero at the threshold.



来源:https://stackoverflow.com/questions/27096101/calculate-light-volume-radius-from-intensity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!