Archive 17/01/2023.

Bug in the bloomhdr shader post 1.7 release

PsychoCircuitry

I had noticed that sometime after the 1.7 release the bloomhdr shader started looking awful, pixelated and not very “bloomy”. I spent some time looking into it today and discovered the cause.

The bloom shader uses the passed in uniform variables for inverse size and offset. Documentation for renderpath says these uniforms are case sensitive to the render target name. Well apparently the cases don’t match between the render targets and uniforms, so what was happening was just stacking pixelated textures with no blur.

The fix is simple, either capitalize the render target names in the render path xml or change the uniform definitions to lowercase.

I’m not sure what the preferred approach is as render targets seem to always be defined with lowercase names and uniforms always start c-uppercase.

This issue only occurred post 1.7 release.

Hope this is helpful to someone.

weitjong

Could you raise this as a bug in our issue tracker. Thanks.

PsychoCircuitry

Ok, posted to the issue tracker on GitHub.

Also, the ldr bloom shader is affected by this same issue.

Modanung