1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Update github URL references (#15705)

This commit is contained in:
sfan5 2025-01-24 16:50:39 +01:00 committed by GitHub
parent f592b57dc6
commit b5e084c9a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 66 additions and 68 deletions

View file

@ -61,7 +61,7 @@ vec4 applyBloom(vec4 color, vec2 uv)
equation used: ((x * (A * x + C * B) + D * E) / (x * (A * x + B) + D * F)) - E / F
*/
// see https://github.com/minetest/minetest/pull/14688
// highp for GLES, see <https://github.com/luanti-org/luanti/pull/14688>
highp vec3 uncharted2Tonemap(highp vec3 x)
{
return ((x * (0.22 * x + 0.03) + 0.002) / (x * (0.22 * x + 0.3) + 0.06)) - 0.03333;