mirror of
https://github.com/X0nk/Bliss-Shader.git
synced 2025-01-05 17:13:28 +08:00
25a2284a60
FIXED AND IMPROVED translucent rendering. FIXED random stuff from rendering over the hand. FIXED hand shading. FIXED blue horses. FIXED translucent lighting on the hand. FIXED translucent lighting on entities. IMPROVED colored shadows. IMPROVED SSAO application to the scene. IMPROVED subsurface scattering and give it more settings. IMPROVED bloom. ADD AgX tonemap and make it default.
29 lines
663 B
GLSL
29 lines
663 B
GLSL
struct LpvBlockData { // 12 x2000 =?
|
|
uint MaskWeight; // 4
|
|
uint ColorRange; // 4
|
|
uint Tint; // 4
|
|
};
|
|
|
|
#ifdef RENDER_SETUP
|
|
layout(binding = 0) writeonly buffer lpvBlockData
|
|
#else
|
|
layout(binding = 0) readonly buffer lpvBlockData
|
|
#endif
|
|
{
|
|
LpvBlockData LpvBlockMap[];
|
|
};
|
|
|
|
|
|
uint BuildBlockLpvData(uint mixMask, float mixWeight) {
|
|
uint data = uint(saturate(mixWeight) * 255.0);
|
|
|
|
data = data | (mixMask << 8);
|
|
|
|
return data;
|
|
}
|
|
|
|
void ParseBlockLpvData(const in uint data, out uint mixMask, out float mixWeight) {
|
|
mixWeight = (data & 0xFF) / 255.0;
|
|
mixMask = (data >> 8) & 0xFF;
|
|
}
|