mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-08 16:29:29 +02:00
Adjusted bloom size range
This commit is contained in:
parent
544ec63a08
commit
d3add89b3c
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ float BloomConfig::getIntensity() const {
|
||||||
|
|
||||||
void BloomConfig::setSize(float value) {
|
void BloomConfig::setSize(float value) {
|
||||||
std::string blurName{ "BloomBlurN" };
|
std::string blurName{ "BloomBlurN" };
|
||||||
auto sigma = value*3.0f;
|
auto sigma = 0.5f+value*3.5f;
|
||||||
|
|
||||||
for (auto i = 0; i < BLOOM_BLUR_LEVEL_COUNT; i++) {
|
for (auto i = 0; i < BLOOM_BLUR_LEVEL_COUNT; i++) {
|
||||||
blurName.back() = '0' + i;
|
blurName.back() = '0' + i;
|
||||||
|
|
Loading…
Reference in a new issue