[XCX] Balance lights pt1

Balances lightsources to match previous commit.
This commit is contained in:
getdls 2017-11-23 01:09:34 +01:00
parent d226a06fa1
commit 85a879011f

View File

@ -135,11 +135,11 @@ void main()
PV1f.w = R127f.w; PV1f.w = R127f.w;
// 6 // 6
PV0f.x = PV1f.z + -(PV1f.w); PV0f.x = PV1f.z + -(PV1f.w);
R5f.y = (PV1f.y * 0.30 + R127f.x);//degree of bloom R5f.y = (PV1f.y * 0.35 + R127f.x);//degree of bloom
R5f.x = (PV1f.x * 0.30 + R127f.z); R5f.x = (PV1f.x * 0.35 + R127f.z);
PS0f = R5f.x; PS0f = R5f.x;
// 7 // 7
R5f.z = (PV0f.x * 0.30 + R127f.w); R5f.z = (PV0f.x * 0.35 + R127f.w);
// export // export
passPixelColor0 = vec4(R5f.x, R5f.y, R5f.z, R5f.w); passPixelColor0 = vec4(R5f.x, R5f.y, R5f.z, R5f.w);
} }