Move the limit of gamma to not be zero from shader to lower property bound

This commit is contained in:
Ylva Selling
2022-06-22 02:51:37 -04:00
parent d23969b8d3
commit a78c4f7d28
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -295,7 +295,7 @@ ScreenSpaceRenderable::ScreenSpaceRenderable(const ghoul::Dictionary& dictionary
, _opacity(OpacityInfo, 1.f, 0.f, 1.f)
, _fade(FadeInfo, 1.f, 0.f, 1.f)
, _delete(DeleteInfo)
, _gamma(GammaInfo, 1.f, 0.f, 10.f)
, _gamma(GammaInfo, 1.f, 0.000001f, 10.f)
{
const Parameters p = codegen::bake<Parameters>(dictionary);