2017-12-10 22:57:29 +01:00
|
|
|
#version 420
|
|
|
|
#extension GL_ARB_texture_gather : enable
|
Update BotW packs for Vulkan (#411)
But now done properly! Basically, a bunch of improvements were made to the script. The previous attempt at this conversion was quickly followed by a rollback since I realized that the script was overlooking certain things that made most of the packs hit or miss whether they would work. A few things missing were:
- It only tested the values from 1 preset. Now, each shader gets compiled per each preset, like what Cemu would do. It also merges the changes done for each preset into one. This should solve cases where one shader would define things separately or repeatedly from preset to preset.
- All* of the shaders are tested to see if they use the converter used the right values for the locations for Vulkan.
Both of these *should* mean that they should both compile and be linkable in Vulkan, which means that I don't have to test each individual shader to see if they work. I will release the two scripts (one used for converting, one used for checking the right values for the locations) tomorrow so that other people might be able to help, if they want. It's fairly straightforward now at least.
* Organize workaround graphic packs
Pretty hard to organize these correctly, but according to our discord discussion, this was the best layout from a bunch I proposed, together with some suggestions.
* Add V4 converter script and instructions on how to use it
Now everyone BotW is done and all of the bugs have been kinked out using it (hopefully...), here's the release of the converter script in all of it's very badly coded glory. I hope I didn't leave too much debug glory in there...
Also, I hope that I didn't make too many grammatical mistakes in the instructions, but hopefully it's easy enough to follow.
2019-12-28 05:55:52 +01:00
|
|
|
#ifdef VULKAN
|
|
|
|
#define ATTR_LAYOUT(__vkSet, __location) layout(set = __vkSet, location = __location)
|
|
|
|
#define UNIFORM_BUFFER_LAYOUT(__glLocation, __vkSet, __vkLocation) layout(set = __vkSet, binding = __vkLocation, std140)
|
|
|
|
#define TEXTURE_LAYOUT(__glLocation, __vkSet, __vkLocation) layout(set = __vkSet, binding = __vkLocation)
|
|
|
|
#define SET_POSITION(_v) gl_Position = _v; gl_Position.z = (gl_Position.z + gl_Position.w) / 2.0
|
|
|
|
#define GET_FRAGCOORD() vec4(gl_FragCoord.xy*uf_fragCoordScale.xy,gl_FragCoord.zw)
|
|
|
|
#define gl_VertexID gl_VertexIndex
|
|
|
|
#define gl_InstanceID gl_InstanceIndex
|
|
|
|
#else
|
|
|
|
#define ATTR_LAYOUT(__vkSet, __location) layout(location = __location)
|
|
|
|
#define UNIFORM_BUFFER_LAYOUT(__glLocation, __vkSet, __vkLocation) layout(binding = __glLocation, std140)
|
|
|
|
#define TEXTURE_LAYOUT(__glLocation, __vkSet, __vkLocation) layout(binding = __glLocation)
|
|
|
|
#define SET_POSITION(_v) gl_Position = _v
|
|
|
|
#define GET_FRAGCOORD() vec4(gl_FragCoord.xy*uf_fragCoordScale,gl_FragCoord.zw)
|
|
|
|
#endif
|
2020-01-05 04:16:42 +01:00
|
|
|
// This shader was automatically converted to be cross-compatible with Vulkan and OpenGL.
|
Update BotW packs for Vulkan (#411)
But now done properly! Basically, a bunch of improvements were made to the script. The previous attempt at this conversion was quickly followed by a rollback since I realized that the script was overlooking certain things that made most of the packs hit or miss whether they would work. A few things missing were:
- It only tested the values from 1 preset. Now, each shader gets compiled per each preset, like what Cemu would do. It also merges the changes done for each preset into one. This should solve cases where one shader would define things separately or repeatedly from preset to preset.
- All* of the shaders are tested to see if they use the converter used the right values for the locations for Vulkan.
Both of these *should* mean that they should both compile and be linkable in Vulkan, which means that I don't have to test each individual shader to see if they work. I will release the two scripts (one used for converting, one used for checking the right values for the locations) tomorrow so that other people might be able to help, if they want. It's fairly straightforward now at least.
* Organize workaround graphic packs
Pretty hard to organize these correctly, but according to our discord discussion, this was the best layout from a bunch I proposed, together with some suggestions.
* Add V4 converter script and instructions on how to use it
Now everyone BotW is done and all of the bugs have been kinked out using it (hopefully...), here's the release of the converter script in all of it's very badly coded glory. I hope I didn't leave too much debug glory in there...
Also, I hope that I didn't make too many grammatical mistakes in the instructions, but hopefully it's easy enough to follow.
2019-12-28 05:55:52 +01:00
|
|
|
|
2017-12-10 22:57:29 +01:00
|
|
|
// shader ab0a485b9ae1bb1e
|
|
|
|
// Square Shadows Fix - Workaround for the square shadows seen around torches in Kakariko Village
|
|
|
|
// shader dumped from BotW v1.4.0, using Cemu 1.11.1
|
Update BotW packs for Vulkan (#411)
But now done properly! Basically, a bunch of improvements were made to the script. The previous attempt at this conversion was quickly followed by a rollback since I realized that the script was overlooking certain things that made most of the packs hit or miss whether they would work. A few things missing were:
- It only tested the values from 1 preset. Now, each shader gets compiled per each preset, like what Cemu would do. It also merges the changes done for each preset into one. This should solve cases where one shader would define things separately or repeatedly from preset to preset.
- All* of the shaders are tested to see if they use the converter used the right values for the locations for Vulkan.
Both of these *should* mean that they should both compile and be linkable in Vulkan, which means that I don't have to test each individual shader to see if they work. I will release the two scripts (one used for converting, one used for checking the right values for the locations) tomorrow so that other people might be able to help, if they want. It's fairly straightforward now at least.
* Organize workaround graphic packs
Pretty hard to organize these correctly, but according to our discord discussion, this was the best layout from a bunch I proposed, together with some suggestions.
* Add V4 converter script and instructions on how to use it
Now everyone BotW is done and all of the bugs have been kinked out using it (hopefully...), here's the release of the converter script in all of it's very badly coded glory. I hope I didn't leave too much debug glory in there...
Also, I hope that I didn't make too many grammatical mistakes in the instructions, but hopefully it's easy enough to follow.
2019-12-28 05:55:52 +01:00
|
|
|
#ifdef VULKAN
|
|
|
|
layout(set = 1, binding = 4) uniform ufBlock
|
|
|
|
{
|
|
|
|
uniform ivec4 uf_remappedPS[13];
|
|
|
|
uniform vec4 uf_fragCoordScale;
|
|
|
|
};
|
|
|
|
#else
|
2017-12-10 22:57:29 +01:00
|
|
|
uniform ivec4 uf_remappedPS[13];
|
Update BotW packs for Vulkan (#411)
But now done properly! Basically, a bunch of improvements were made to the script. The previous attempt at this conversion was quickly followed by a rollback since I realized that the script was overlooking certain things that made most of the packs hit or miss whether they would work. A few things missing were:
- It only tested the values from 1 preset. Now, each shader gets compiled per each preset, like what Cemu would do. It also merges the changes done for each preset into one. This should solve cases where one shader would define things separately or repeatedly from preset to preset.
- All* of the shaders are tested to see if they use the converter used the right values for the locations for Vulkan.
Both of these *should* mean that they should both compile and be linkable in Vulkan, which means that I don't have to test each individual shader to see if they work. I will release the two scripts (one used for converting, one used for checking the right values for the locations) tomorrow so that other people might be able to help, if they want. It's fairly straightforward now at least.
* Organize workaround graphic packs
Pretty hard to organize these correctly, but according to our discord discussion, this was the best layout from a bunch I proposed, together with some suggestions.
* Add V4 converter script and instructions on how to use it
Now everyone BotW is done and all of the bugs have been kinked out using it (hopefully...), here's the release of the converter script in all of it's very badly coded glory. I hope I didn't leave too much debug glory in there...
Also, I hope that I didn't make too many grammatical mistakes in the instructions, but hopefully it's easy enough to follow.
2019-12-28 05:55:52 +01:00
|
|
|
uniform vec2 uf_fragCoordScale;
|
|
|
|
#endif
|
|
|
|
TEXTURE_LAYOUT(0, 1, 0) uniform sampler2D textureUnitPS0;
|
|
|
|
TEXTURE_LAYOUT(1, 1, 1) uniform sampler2D textureUnitPS1;
|
|
|
|
TEXTURE_LAYOUT(2, 1, 2) uniform samplerCubeArray textureUnitPS2;
|
|
|
|
TEXTURE_LAYOUT(3, 1, 3) uniform sampler2D textureUnitPS3;
|
2017-12-10 22:57:29 +01:00
|
|
|
layout(location = 1) noperspective in vec4 passParameterSem0;
|
|
|
|
layout(location = 0) out vec4 passPixelColor0;
|
|
|
|
layout(location = 1) out vec4 passPixelColor1;
|
Update BotW packs for Vulkan (#411)
But now done properly! Basically, a bunch of improvements were made to the script. The previous attempt at this conversion was quickly followed by a rollback since I realized that the script was overlooking certain things that made most of the packs hit or miss whether they would work. A few things missing were:
- It only tested the values from 1 preset. Now, each shader gets compiled per each preset, like what Cemu would do. It also merges the changes done for each preset into one. This should solve cases where one shader would define things separately or repeatedly from preset to preset.
- All* of the shaders are tested to see if they use the converter used the right values for the locations for Vulkan.
Both of these *should* mean that they should both compile and be linkable in Vulkan, which means that I don't have to test each individual shader to see if they work. I will release the two scripts (one used for converting, one used for checking the right values for the locations) tomorrow so that other people might be able to help, if they want. It's fairly straightforward now at least.
* Organize workaround graphic packs
Pretty hard to organize these correctly, but according to our discord discussion, this was the best layout from a bunch I proposed, together with some suggestions.
* Add V4 converter script and instructions on how to use it
Now everyone BotW is done and all of the bugs have been kinked out using it (hopefully...), here's the release of the converter script in all of it's very badly coded glory. I hope I didn't leave too much debug glory in there...
Also, I hope that I didn't make too many grammatical mistakes in the instructions, but hopefully it's easy enough to follow.
2019-12-28 05:55:52 +01:00
|
|
|
// uf_fragCoordScale was moved to the ufBlock
|
2017-12-10 22:57:29 +01:00
|
|
|
void redcCUBE(vec4 src0, vec4 src1, out vec3 stm, out int faceId)
|
|
|
|
{
|
|
|
|
// stm -> x .. s, y .. t, z .. MajorAxis*2.0
|
|
|
|
vec3 inputCoord = normalize(vec3(src1.y, src1.x, src0.x));
|
|
|
|
float rx = inputCoord.x;
|
|
|
|
float ry = inputCoord.y;
|
|
|
|
float rz = inputCoord.z;
|
|
|
|
if( abs(rx) > abs(ry) && abs(rx) > abs(rz) )
|
|
|
|
{
|
|
|
|
stm.z = rx*2.0;
|
|
|
|
stm.xy = vec2(ry,rz);
|
|
|
|
if( rx >= 0.0 )
|
|
|
|
{
|
|
|
|
faceId = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
faceId = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( abs(ry) > abs(rx) && abs(ry) > abs(rz) )
|
|
|
|
{
|
|
|
|
stm.z = ry*2.0;
|
|
|
|
stm.xy = vec2(rx,rz);
|
|
|
|
if( ry >= 0.0 )
|
|
|
|
{
|
|
|
|
faceId = 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
faceId = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else //if( abs(rz) > abs(ry) && abs(rz) > abs(rx) )
|
|
|
|
{
|
|
|
|
stm.z = rz*2.0;
|
|
|
|
stm.xy = vec2(rx,ry);
|
|
|
|
if( rz >= 0.0 )
|
|
|
|
{
|
|
|
|
faceId = 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
faceId = 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vec3 redcCUBEReverse(vec2 st, int faceId)
|
|
|
|
{
|
|
|
|
st.yx = st.xy;
|
|
|
|
vec3 v;
|
|
|
|
float majorAxis = 1.0;
|
|
|
|
if( faceId == 0 )
|
|
|
|
{
|
|
|
|
v.yz = (st-vec2(1.5))*(majorAxis*2.0);
|
|
|
|
v.x = 1.0;
|
|
|
|
}
|
|
|
|
else if( faceId == 1 )
|
|
|
|
{
|
|
|
|
v.yz = (st-vec2(1.5))*(majorAxis*2.0);
|
|
|
|
v.x = -1.0;
|
|
|
|
}
|
|
|
|
else if( faceId == 2 )
|
|
|
|
{
|
|
|
|
v.xz = (st-vec2(1.5))*(majorAxis*2.0);
|
|
|
|
v.y = 1.0;
|
|
|
|
}
|
|
|
|
else if( faceId == 3 )
|
|
|
|
{
|
|
|
|
v.xz = (st-vec2(1.5))*(majorAxis*2.0);
|
|
|
|
v.y = -1.0;
|
|
|
|
}
|
|
|
|
else if( faceId == 4 )
|
|
|
|
{
|
|
|
|
v.xy = (st-vec2(1.5))*(majorAxis*2.0);
|
|
|
|
v.z = 1.0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
v.xy = (st-vec2(1.5))*(majorAxis*2.0);
|
|
|
|
v.z = -1.0;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
int clampFI32(int v)
|
|
|
|
{
|
|
|
|
if( v == 0x7FFFFFFF )
|
|
|
|
return floatBitsToInt(1.0);
|
|
|
|
else if( v == 0xFFFFFFFF )
|
|
|
|
return floatBitsToInt(0.0);
|
|
|
|
return floatBitsToInt(clamp(intBitsToFloat(v), 0.0, 1.0));
|
|
|
|
}
|
|
|
|
float mul_nonIEEE(float a, float b){ if( a == 0.0 || b == 0.0 ) return 0.0; return a*b; }
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
ivec4 R0i = ivec4(0);
|
|
|
|
ivec4 R1i = ivec4(0);
|
|
|
|
ivec4 R2i = ivec4(0);
|
|
|
|
ivec4 R3i = ivec4(0);
|
|
|
|
ivec4 R4i = ivec4(0);
|
|
|
|
ivec4 R5i = ivec4(0);
|
|
|
|
ivec4 R6i = ivec4(0);
|
|
|
|
ivec4 R7i = ivec4(0);
|
|
|
|
ivec4 R8i = ivec4(0);
|
|
|
|
ivec4 R9i = ivec4(0);
|
|
|
|
ivec4 R10i = ivec4(0);
|
|
|
|
ivec4 R123i = ivec4(0);
|
|
|
|
ivec4 R124i = ivec4(0);
|
|
|
|
ivec4 R125i = ivec4(0);
|
|
|
|
ivec4 R126i = ivec4(0);
|
|
|
|
ivec4 R127i = ivec4(0);
|
|
|
|
int backupReg0i, backupReg1i, backupReg2i, backupReg3i, backupReg4i;
|
|
|
|
ivec4 PV0i = ivec4(0), PV1i = ivec4(0);
|
|
|
|
int PS0i = 0, PS1i = 0;
|
|
|
|
ivec4 tempi = ivec4(0);
|
|
|
|
float tempResultf;
|
|
|
|
int tempResulti;
|
|
|
|
ivec4 ARi = ivec4(0);
|
|
|
|
bool predResult = true;
|
|
|
|
vec3 cubeMapSTM;
|
|
|
|
int cubeMapFaceId;
|
|
|
|
float cubeMapArrayIndex2 = 0.0;
|
Update BotW packs for Vulkan (#411)
But now done properly! Basically, a bunch of improvements were made to the script. The previous attempt at this conversion was quickly followed by a rollback since I realized that the script was overlooking certain things that made most of the packs hit or miss whether they would work. A few things missing were:
- It only tested the values from 1 preset. Now, each shader gets compiled per each preset, like what Cemu would do. It also merges the changes done for each preset into one. This should solve cases where one shader would define things separately or repeatedly from preset to preset.
- All* of the shaders are tested to see if they use the converter used the right values for the locations for Vulkan.
Both of these *should* mean that they should both compile and be linkable in Vulkan, which means that I don't have to test each individual shader to see if they work. I will release the two scripts (one used for converting, one used for checking the right values for the locations) tomorrow so that other people might be able to help, if they want. It's fairly straightforward now at least.
* Organize workaround graphic packs
Pretty hard to organize these correctly, but according to our discord discussion, this was the best layout from a bunch I proposed, together with some suggestions.
* Add V4 converter script and instructions on how to use it
Now everyone BotW is done and all of the bugs have been kinked out using it (hopefully...), here's the release of the converter script in all of it's very badly coded glory. I hope I didn't leave too much debug glory in there...
Also, I hope that I didn't make too many grammatical mistakes in the instructions, but hopefully it's easy enough to follow.
2019-12-28 05:55:52 +01:00
|
|
|
R0i = floatBitsToInt(GET_FRAGCOORD());
|
2017-12-10 22:57:29 +01:00
|
|
|
R1i = floatBitsToInt(passParameterSem0);
|
|
|
|
// 0
|
|
|
|
backupReg0i = R0i.y;
|
|
|
|
R6i.x = 0x3f800000;
|
|
|
|
PV0i.y = floatBitsToInt(intBitsToFloat(backupReg0i) + intBitsToFloat(0xbc23d70a));
|
|
|
|
PV0i.z = floatBitsToInt(intBitsToFloat(R0i.x) + intBitsToFloat(0xbc23d70a));
|
|
|
|
R123i.w = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R1i.x),intBitsToFloat(R1i.x)) + 1.0));
|
|
|
|
PV0i.w = R123i.w;
|
|
|
|
PS0i = floatBitsToInt(intBitsToFloat(R1i.x) + -(intBitsToFloat(uf_remappedPS[0].x)));
|
|
|
|
// 1
|
|
|
|
R0i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV0i.z), intBitsToFloat(uf_remappedPS[1].z)));
|
|
|
|
R0i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV0i.y), intBitsToFloat(uf_remappedPS[1].w)));
|
|
|
|
R0i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R1i.y),intBitsToFloat(R1i.y)) + intBitsToFloat(PV0i.w)));
|
|
|
|
R1i.w = floatBitsToInt(intBitsToFloat(R1i.y) + -(intBitsToFloat(uf_remappedPS[0].y)));
|
|
|
|
R3i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PS0i), intBitsToFloat(PS0i)));
|
|
|
|
PS1i = R3i.z;
|
|
|
|
R2i.xyzw = floatBitsToInt(texture(textureUnitPS1, intBitsToFloat(R0i.xy)).xyzw);
|
|
|
|
R0i.x = floatBitsToInt(texture(textureUnitPS0, intBitsToFloat(R0i.xy)).x);
|
|
|
|
// 0
|
|
|
|
R127i.x = floatBitsToInt((intBitsToFloat(R2i.x) * 2.0 + -(1.0)));
|
|
|
|
PV0i.x = R127i.x;
|
|
|
|
R127i.y = floatBitsToInt((intBitsToFloat(R2i.y) * 2.0 + -(1.0)));
|
|
|
|
PV0i.y = R127i.y;
|
|
|
|
R127i.z = floatBitsToInt((intBitsToFloat(R2i.z) * 2.0 + -(1.0)));
|
|
|
|
PV0i.z = R127i.z;
|
|
|
|
R126i.w = floatBitsToInt((mul_nonIEEE(intBitsToFloat(uf_remappedPS[2].y),intBitsToFloat(R0i.x)) + intBitsToFloat(uf_remappedPS[2].x)));
|
|
|
|
PV0i.w = R126i.w;
|
|
|
|
R127i.w = floatBitsToInt(intBitsToFloat(R2i.w) * intBitsToFloat(0x437f0000));
|
|
|
|
PS0i = R127i.w;
|
|
|
|
// 1
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.y),intBitsToFloat(PV0i.z),-0.0),vec4(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.y),intBitsToFloat(PV0i.z),0.0)));
|
|
|
|
PV1i.x = tempi.x;
|
|
|
|
PV1i.y = tempi.x;
|
|
|
|
PV1i.z = tempi.x;
|
|
|
|
PV1i.w = tempi.x;
|
|
|
|
R5i.x = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R1i.x),-(intBitsToFloat(PV0i.w))) + -(intBitsToFloat(uf_remappedPS[3].x))));
|
|
|
|
PS1i = R5i.x;
|
|
|
|
// 2
|
|
|
|
R3i.x = floatBitsToInt(-(intBitsToFloat(R2i.w)) + 1.0);
|
|
|
|
PV0i.x = R3i.x;
|
|
|
|
R3i.y = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R1i.y),-(intBitsToFloat(R126i.w))) + -(intBitsToFloat(uf_remappedPS[3].y))));
|
|
|
|
R2i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R1i.z),-(intBitsToFloat(R126i.w))) + -(intBitsToFloat(uf_remappedPS[3].z))));
|
|
|
|
R4i.w = floatBitsToInt(-(intBitsToFloat(R126i.w)));
|
|
|
|
tempResultf = 1.0 / sqrt(intBitsToFloat(PV1i.x));
|
|
|
|
PS0i = floatBitsToInt(tempResultf);
|
|
|
|
// 3
|
|
|
|
backupReg0i = R127i.w;
|
|
|
|
R7i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R127i.x), intBitsToFloat(PS0i)));
|
|
|
|
R5i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R127i.y), intBitsToFloat(PS0i)));
|
|
|
|
R4i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R127i.z), intBitsToFloat(PS0i)));
|
|
|
|
R127i.w = floatBitsToInt((mul_nonIEEE(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.x)) + intBitsToFloat(0x3d4ccccd)));
|
|
|
|
R127i.w = clampFI32(R127i.w);
|
|
|
|
PS1i = int(intBitsToFloat(backupReg0i));
|
|
|
|
// 4
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(-(intBitsToFloat(R5i.x)),-(intBitsToFloat(R3i.y)),-(intBitsToFloat(R2i.z)),-0.0),vec4(-(intBitsToFloat(R5i.x)),-(intBitsToFloat(R3i.y)),-(intBitsToFloat(R2i.z)),0.0)));
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
R125i.x = PS1i & 0x00000002;
|
|
|
|
PS0i = R125i.x;
|
|
|
|
// 5
|
|
|
|
R126i.x = floatBitsToInt(max(intBitsToFloat(PV0i.x), intBitsToFloat(0x3a83126f)));
|
|
|
|
PV1i.x = R126i.x;
|
|
|
|
R125i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R127i.w), intBitsToFloat(R127i.w)));
|
|
|
|
R126i.z = floatBitsToInt((intBitsToFloat(R3i.x) * 0.5 + 0.5));
|
|
|
|
R3i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R1i.x), -(intBitsToFloat(R126i.w))));
|
|
|
|
tempResultf = 1.0 / sqrt(intBitsToFloat(R0i.z));
|
|
|
|
R126i.y = floatBitsToInt(tempResultf);
|
|
|
|
PS1i = R126i.y;
|
|
|
|
// 6
|
|
|
|
R127i.x = floatBitsToInt(dot(vec4(intBitsToFloat(R5i.x),intBitsToFloat(R3i.y),intBitsToFloat(R2i.z),-0.0),vec4(intBitsToFloat(uf_remappedPS[4].x),intBitsToFloat(uf_remappedPS[4].y),intBitsToFloat(uf_remappedPS[4].z),0.0)));
|
|
|
|
PV0i.x = R127i.x;
|
|
|
|
PV0i.y = R127i.x;
|
|
|
|
PV0i.z = R127i.x;
|
|
|
|
PV0i.w = R127i.x;
|
|
|
|
tempResultf = 1.0 / sqrt(intBitsToFloat(PV1i.x));
|
|
|
|
R125i.w = floatBitsToInt(tempResultf);
|
|
|
|
PS0i = R125i.w;
|
|
|
|
// 7
|
|
|
|
PV1i.x = floatBitsToInt(mul_nonIEEE(-(intBitsToFloat(R5i.x)), intBitsToFloat(PS0i)));
|
|
|
|
PV1i.y = floatBitsToInt(mul_nonIEEE(-(intBitsToFloat(R3i.y)), intBitsToFloat(PS0i)));
|
|
|
|
R5i.z = floatBitsToInt(mul_nonIEEE(-(intBitsToFloat(R2i.z)), intBitsToFloat(PS0i)));
|
|
|
|
PV1i.z = R5i.z;
|
|
|
|
PV1i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(uf_remappedPS[5].w), intBitsToFloat(PS0i)));
|
|
|
|
R8i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R1i.x), intBitsToFloat(R126i.y)));
|
|
|
|
PS1i = R8i.x;
|
|
|
|
// 8
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R7i.x),intBitsToFloat(R5i.y),intBitsToFloat(R4i.z),-0.0),vec4(intBitsToFloat(PV1i.x),intBitsToFloat(PV1i.y),intBitsToFloat(PV1i.z),0.0)));
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
R125i.z = floatBitsToInt(min(intBitsToFloat(PV1i.w), 1.0));
|
|
|
|
PS0i = R125i.z;
|
|
|
|
// 9
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R5i.x),intBitsToFloat(R3i.y),intBitsToFloat(R2i.z),-0.0),vec4(intBitsToFloat(uf_remappedPS[6].x),intBitsToFloat(uf_remappedPS[6].y),intBitsToFloat(uf_remappedPS[6].z),0.0)));
|
|
|
|
PV1i.x = tempi.x;
|
|
|
|
PV1i.y = tempi.x;
|
|
|
|
PV1i.z = tempi.x;
|
|
|
|
PV1i.w = tempi.x;
|
|
|
|
R127i.y = tempi.x;
|
|
|
|
PS1i = floatBitsToInt(max(intBitsToFloat(PV0i.x), -(1.0)));
|
|
|
|
// 10
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R5i.x),intBitsToFloat(R3i.y),intBitsToFloat(R2i.z),-0.0),vec4(intBitsToFloat(uf_remappedPS[7].x),intBitsToFloat(uf_remappedPS[7].y),intBitsToFloat(uf_remappedPS[7].z),0.0)));
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
R127i.z = tempi.x;
|
|
|
|
R127i.w = floatBitsToInt(min(intBitsToFloat(PS1i), 1.0));
|
|
|
|
PS0i = R127i.w;
|
|
|
|
// 11
|
|
|
|
redcCUBE(vec4(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.x),intBitsToFloat(R127i.x),intBitsToFloat(R127i.y)),vec4(intBitsToFloat(R127i.y),intBitsToFloat(R127i.x),intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.x)),cubeMapSTM,cubeMapFaceId);
|
|
|
|
R0i.x = floatBitsToInt(cubeMapSTM.x);
|
|
|
|
R0i.y = floatBitsToInt(cubeMapSTM.y);
|
|
|
|
R0i.z = floatBitsToInt(cubeMapSTM.z);
|
|
|
|
R0i.w = cubeMapFaceId;
|
|
|
|
PV1i.x = R0i.x;
|
|
|
|
PV1i.y = R0i.y;
|
|
|
|
PV1i.z = R0i.z;
|
|
|
|
PV1i.w = R0i.w;
|
|
|
|
R127i.x = floatBitsToInt(1.0 / intBitsToFloat(R125i.z));
|
|
|
|
PS1i = R127i.x;
|
|
|
|
// 12
|
|
|
|
R2i.x = floatBitsToInt((mul_nonIEEE(intBitsToFloat(PS1i),intBitsToFloat(uf_remappedPS[8].x)) + intBitsToFloat(uf_remappedPS[8].y)));
|
|
|
|
R6i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R1i.y), intBitsToFloat(R126i.y)));
|
|
|
|
R127i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R127i.w),intBitsToFloat(uf_remappedPS[8].z)) + intBitsToFloat(uf_remappedPS[8].w)));
|
|
|
|
PV0i.z = R127i.z;
|
|
|
|
R6i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R1i.z), intBitsToFloat(R126i.y)));
|
|
|
|
PS0i = floatBitsToInt(1.0 / abs(intBitsToFloat(PV1i.z)));
|
|
|
|
// 13
|
|
|
|
backupReg0i = R0i.x;
|
|
|
|
backupReg1i = R0i.y;
|
|
|
|
R0i.x = floatBitsToInt((mul_nonIEEE(intBitsToFloat(backupReg0i),intBitsToFloat(PS0i)) + 1.5));
|
|
|
|
R0i.y = floatBitsToInt((mul_nonIEEE(intBitsToFloat(backupReg1i),intBitsToFloat(PS0i)) + 1.5));
|
|
|
|
PV1i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV0i.z), intBitsToFloat(PV0i.z)));
|
|
|
|
R127i.w = ((intBitsToFloat(PV0i.z) > 0.0)?int(0xFFFFFFFF):int(0x0));
|
|
|
|
R9i.x = floatBitsToInt(intBitsToFloat(R125i.y) + -(1.0));
|
|
|
|
PS1i = R9i.x;
|
|
|
|
// 14
|
|
|
|
backupReg0i = R1i.y;
|
|
|
|
PV0i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R127i.z), intBitsToFloat(PV1i.z)));
|
|
|
|
R4i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.z), intBitsToFloat(R126i.z)));
|
|
|
|
R4i.y = floatBitsToInt(intBitsToFloat(R4i.y) / 2.0);
|
|
|
|
PV0i.y = R4i.y;
|
|
|
|
R6i.z = floatBitsToInt(intBitsToFloat(R125i.y) * intBitsToFloat(0x3ea2f983));
|
|
|
|
PV0i.w = floatBitsToInt(intBitsToFloat(R127i.x) * intBitsToFloat(0x40400000));
|
|
|
|
R1i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg0i), -(intBitsToFloat(R126i.w))));
|
|
|
|
PS0i = R1i.y;
|
|
|
|
// 15
|
|
|
|
R10i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R125i.z), intBitsToFloat(R125i.z)));
|
|
|
|
PV1i.x = R10i.x;
|
|
|
|
PV1i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.x), intBitsToFloat(uf_remappedPS[9].y)));
|
|
|
|
PV1i.y = clampFI32(PV1i.y);
|
|
|
|
R123i.z = ((R127i.w == 0)?(0):(PV0i.x));
|
|
|
|
PV1i.z = R123i.z;
|
|
|
|
R5i.w = floatBitsToInt(-(intBitsToFloat(PV0i.y)) + 1.0);
|
|
|
|
PS1i = floatBitsToInt(1.0 / intBitsToFloat(PV0i.w));
|
|
|
|
// 16
|
|
|
|
R4i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV1i.x), intBitsToFloat(uf_remappedPS[10].y)));
|
|
|
|
R2i.y = ((R125i.x == 0)?(R127i.z):(PV1i.z));
|
|
|
|
R1i.z = floatBitsToInt((mul_nonIEEE(-(intBitsToFloat(PV1i.y)),intBitsToFloat(PV1i.y)) + 1.0));
|
|
|
|
R2i.w = floatBitsToInt(intBitsToFloat(R3i.x) + intBitsToFloat(PS1i));
|
|
|
|
R2i.w = clampFI32(R2i.w);
|
|
|
|
R1i.x = floatBitsToInt(1.0 / intBitsToFloat(R125i.w));
|
|
|
|
R1i.x = floatBitsToInt(intBitsToFloat(R1i.x) / 2.0);
|
|
|
|
PS0i = R1i.x;
|
|
|
|
R0i.w = floatBitsToInt(texture(textureUnitPS2, vec4(redcCUBEReverse(intBitsToFloat(R0i.yx),R0i.w),cubeMapArrayIndex2)).x);
|
|
|
|
R0i.y = floatBitsToInt(texture(textureUnitPS3, intBitsToFloat(R2i.xy)).x);
|
|
|
|
// 0
|
|
|
|
backupReg0i = R0i.w;
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R7i.x),intBitsToFloat(R5i.y),intBitsToFloat(R4i.z),-0.0),vec4(intBitsToFloat(R8i.x),intBitsToFloat(R6i.y),intBitsToFloat(R6i.w),0.0)));
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
PS0i = ((intBitsToFloat(backupReg0i) > intBitsToFloat(0x3f7ae148))?int(0xFFFFFFFF):int(0x0));
|
|
|
|
// 1
|
|
|
|
R126i.x = ((PS0i == 0)?(R0i.w):(0x42c80000));
|
|
|
|
PV1i.y = PV0i.x;
|
|
|
|
PV1i.y = clampFI32(PV1i.y);
|
|
|
|
R126i.z = ((intBitsToFloat(R2i.x) > intBitsToFloat(uf_remappedPS[10].x))?int(0xFFFFFFFF):int(0x0));
|
|
|
|
PV1i.w = PV0i.x;
|
|
|
|
PV1i.w = floatBitsToInt(intBitsToFloat(PV1i.w) * 2.0);
|
|
|
|
PS1i = floatBitsToInt(1.0 / intBitsToFloat(R2i.w));
|
|
|
|
// 2
|
|
|
|
R125i.x = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R7i.x),intBitsToFloat(PV1i.w)) + -(intBitsToFloat(R8i.x))));
|
|
|
|
PV0i.x = R125i.x;
|
|
|
|
R125i.y = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R5i.y),intBitsToFloat(PV1i.w)) + -(intBitsToFloat(R6i.y))));
|
|
|
|
PV0i.y = R125i.y;
|
|
|
|
R127i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R4i.z),intBitsToFloat(PV1i.w)) + -(intBitsToFloat(R6i.w))));
|
|
|
|
PV0i.z = R127i.z;
|
|
|
|
R123i.w = floatBitsToInt((mul_nonIEEE(intBitsToFloat(PV1i.y),intBitsToFloat(R5i.w)) + intBitsToFloat(R4i.y)));
|
|
|
|
PV0i.w = R123i.w;
|
|
|
|
R126i.y = floatBitsToInt(intBitsToFloat(R3i.x) * intBitsToFloat(PS1i));
|
|
|
|
PS0i = R126i.y;
|
|
|
|
// 3
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(-(intBitsToFloat(R5i.x)),-(intBitsToFloat(R3i.y)),-(intBitsToFloat(R2i.z)),-0.0),vec4(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.y),intBitsToFloat(PV0i.z),0.0)));
|
|
|
|
PV1i.x = tempi.x;
|
|
|
|
PV1i.y = tempi.x;
|
|
|
|
PV1i.z = tempi.x;
|
|
|
|
PV1i.w = tempi.x;
|
|
|
|
R124i.y = floatBitsToInt(1.0 / intBitsToFloat(PV0i.w));
|
|
|
|
PS1i = R124i.y;
|
|
|
|
// 4
|
|
|
|
backupReg0i = R127i.z;
|
|
|
|
backupReg1i = R126i.x;
|
|
|
|
backupReg2i = R126i.y;
|
|
|
|
backupReg2i = R126i.y;
|
|
|
|
R126i.x = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R125i.x),intBitsToFloat(PV1i.x)) + intBitsToFloat(R5i.x)));
|
|
|
|
PV0i.x = R126i.x;
|
|
|
|
R126i.y = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R125i.y),intBitsToFloat(PV1i.x)) + intBitsToFloat(R3i.y)));
|
|
|
|
PV0i.y = R126i.y;
|
|
|
|
R127i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(backupReg0i),intBitsToFloat(PV1i.x)) + intBitsToFloat(R2i.z)));
|
|
|
|
PV0i.z = R127i.z;
|
|
|
|
///R123i.w = floatBitsToInt((mul_nonIEEE(intBitsToFloat(uf_remappedPS[9].z), intBitsToFloat(backupReg1i)) + 4.0) / 2.0);
|
|
|
|
R123i.w = floatBitsToInt((mul_nonIEEE(3.0*intBitsToFloat(uf_remappedPS[9].z),intBitsToFloat(backupReg1i)) + 4.0)/2.0);
|
|
|
|
PV0i.w = R123i.w;
|
|
|
|
R0i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg2i), intBitsToFloat(backupReg2i)));
|
|
|
|
PS0i = R0i.w;
|
|
|
|
// 5
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.y),intBitsToFloat(PV0i.z),-0.0),vec4(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.y),intBitsToFloat(PV0i.z),0.0)));
|
|
|
|
PV1i.x = tempi.x;
|
|
|
|
PV1i.y = tempi.x;
|
|
|
|
PV1i.z = tempi.x;
|
|
|
|
PV1i.w = tempi.x;
|
|
|
|
R124i.z = floatBitsToInt(intBitsToFloat(PV0i.w) + -(intBitsToFloat(R1i.x)));
|
|
|
|
R124i.z = clampFI32(R124i.z);
|
|
|
|
PS1i = R124i.z;
|
|
|
|
// 6
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R3i.w),intBitsToFloat(R1i.y),intBitsToFloat(R4i.w),intBitsToFloat(R6i.x)),vec4(intBitsToFloat(uf_remappedPS[4].x),intBitsToFloat(uf_remappedPS[4].y),intBitsToFloat(uf_remappedPS[4].z),intBitsToFloat(uf_remappedPS[4].w))));
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
R125i.y = tempi.x;
|
|
|
|
PS0i = floatBitsToInt(sqrt(intBitsToFloat(PV1i.x)));
|
|
|
|
// 7
|
|
|
|
R125i.x = floatBitsToInt(dot(vec4(intBitsToFloat(R3i.w),intBitsToFloat(R1i.y),intBitsToFloat(R4i.w),intBitsToFloat(R6i.x)),vec4(intBitsToFloat(uf_remappedPS[6].x),intBitsToFloat(uf_remappedPS[6].y),intBitsToFloat(uf_remappedPS[6].z),intBitsToFloat(uf_remappedPS[6].w))));
|
|
|
|
PV1i.x = R125i.x;
|
|
|
|
PV1i.y = R125i.x;
|
|
|
|
PV1i.z = R125i.x;
|
|
|
|
PV1i.w = R125i.x;
|
|
|
|
PS1i = floatBitsToInt(1.0 / intBitsToFloat(PS0i));
|
|
|
|
// 8
|
|
|
|
R124i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R0i.y), intBitsToFloat(R4i.x)));
|
|
|
|
R127i.y = floatBitsToInt(-(intBitsToFloat(PV1i.x)) + intBitsToFloat(uf_remappedPS[11].y));
|
|
|
|
R127i.y = clampFI32(R127i.y);
|
|
|
|
R125i.z = floatBitsToInt(-(intBitsToFloat(R125i.y)) + intBitsToFloat(uf_remappedPS[11].x));
|
|
|
|
R125i.z = clampFI32(R125i.z);
|
|
|
|
PV0i.w = floatBitsToInt(intBitsToFloat(uf_remappedPS[5].w) * intBitsToFloat(PS1i));
|
|
|
|
PV0i.w = clampFI32(PV0i.w);
|
|
|
|
R2i.y = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R1i.w),intBitsToFloat(R1i.w)) + intBitsToFloat(R3i.z)));
|
|
|
|
PS0i = R2i.y;
|
|
|
|
// 9
|
|
|
|
backupReg0i = R126i.x;
|
|
|
|
backupReg1i = R126i.y;
|
|
|
|
backupReg2i = R127i.z;
|
|
|
|
backupReg3i = R125i.x;
|
|
|
|
R126i.x = floatBitsToInt((mul_nonIEEE(intBitsToFloat(backupReg0i),intBitsToFloat(PV0i.w)) + -(intBitsToFloat(R5i.x))));
|
|
|
|
PV1i.x = R126i.x;
|
|
|
|
R126i.y = floatBitsToInt((mul_nonIEEE(intBitsToFloat(backupReg1i),intBitsToFloat(PV0i.w)) + -(intBitsToFloat(R3i.y))));
|
|
|
|
PV1i.y = R126i.y;
|
|
|
|
R127i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(backupReg2i),intBitsToFloat(PV0i.w)) + -(intBitsToFloat(R2i.z))));
|
|
|
|
PV1i.z = R127i.z;
|
|
|
|
PV1i.w = floatBitsToInt(intBitsToFloat(R125i.y) + -(intBitsToFloat(uf_remappedPS[12].x)));
|
|
|
|
PV1i.w = clampFI32(PV1i.w);
|
|
|
|
R125i.x = floatBitsToInt(intBitsToFloat(backupReg3i) + -(intBitsToFloat(uf_remappedPS[12].y)));
|
|
|
|
R125i.x = clampFI32(R125i.x);
|
|
|
|
PS1i = R125i.x;
|
|
|
|
// 10
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(PV1i.x),intBitsToFloat(PV1i.y),intBitsToFloat(PV1i.z),-0.0),vec4(intBitsToFloat(PV1i.x),intBitsToFloat(PV1i.y),intBitsToFloat(PV1i.z),0.0)));
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
R127i.x = floatBitsToInt(max(intBitsToFloat(R125i.z), intBitsToFloat(PV1i.w)));
|
|
|
|
PS0i = R127i.x;
|
|
|
|
// 11
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R3i.w),intBitsToFloat(R1i.y),intBitsToFloat(R4i.w),intBitsToFloat(R6i.x)),vec4(intBitsToFloat(uf_remappedPS[7].x),intBitsToFloat(uf_remappedPS[7].y),intBitsToFloat(uf_remappedPS[7].z),intBitsToFloat(uf_remappedPS[7].w))));
|
|
|
|
PV1i.x = tempi.x;
|
|
|
|
PV1i.y = tempi.x;
|
|
|
|
PV1i.z = tempi.x;
|
|
|
|
PV1i.w = tempi.x;
|
|
|
|
R125i.w = tempi.x;
|
|
|
|
tempResultf = 1.0 / sqrt(intBitsToFloat(PV0i.x));
|
|
|
|
PS1i = floatBitsToInt(tempResultf);
|
|
|
|
// 12
|
|
|
|
backupReg0i = R127i.z;
|
|
|
|
backupReg1i = R127i.y;
|
|
|
|
backupReg2i = R127i.x;
|
|
|
|
R127i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.x), intBitsToFloat(PS1i)));
|
|
|
|
PV0i.x = R127i.x;
|
|
|
|
R127i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.y), intBitsToFloat(PS1i)));
|
|
|
|
PV0i.y = R127i.y;
|
|
|
|
R127i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg0i), intBitsToFloat(PS1i)));
|
|
|
|
PV0i.z = R127i.z;
|
|
|
|
R124i.w = floatBitsToInt(max(intBitsToFloat(backupReg1i), intBitsToFloat(R125i.x)));
|
|
|
|
R127i.w = floatBitsToInt(-(intBitsToFloat(backupReg2i)) + 1.0);
|
|
|
|
PS0i = R127i.w;
|
|
|
|
// 13
|
|
|
|
backupReg0i = R125i.w;
|
|
|
|
backupReg0i = R125i.w;
|
|
|
|
R126i.x = floatBitsToInt(intBitsToFloat(R8i.x) + intBitsToFloat(PV0i.x));
|
|
|
|
PV1i.x = R126i.x;
|
|
|
|
R126i.y = floatBitsToInt(intBitsToFloat(R6i.y) + intBitsToFloat(PV0i.y));
|
|
|
|
PV1i.y = R126i.y;
|
|
|
|
R125i.z = floatBitsToInt(intBitsToFloat(R6i.w) + intBitsToFloat(PV0i.z));
|
|
|
|
PV1i.z = R125i.z;
|
|
|
|
R125i.w = floatBitsToInt(-(intBitsToFloat(backupReg0i)) + intBitsToFloat(uf_remappedPS[11].z));
|
|
|
|
R125i.w = clampFI32(R125i.w);
|
|
|
|
R126i.w = floatBitsToInt(intBitsToFloat(backupReg0i) + -(intBitsToFloat(uf_remappedPS[12].z)));
|
|
|
|
R126i.w = clampFI32(R126i.w);
|
|
|
|
PS1i = R126i.w;
|
|
|
|
// 14
|
|
|
|
backupReg0i = R0i.y;
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(PV1i.x),intBitsToFloat(PV1i.y),intBitsToFloat(PV1i.z),-0.0),vec4(intBitsToFloat(PV1i.x),intBitsToFloat(PV1i.y),intBitsToFloat(PV1i.z),0.0)));
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
R2i.z = ((R126i.z == 0)?(backupReg0i):(R124i.x));
|
|
|
|
PS0i = R2i.z;
|
|
|
|
// 15
|
|
|
|
R5i.x = floatBitsToInt(dot(vec4(intBitsToFloat(R7i.x),intBitsToFloat(R5i.y),intBitsToFloat(R4i.z),-0.0),vec4(intBitsToFloat(R127i.x),intBitsToFloat(R127i.y),intBitsToFloat(R127i.z),0.0)));
|
|
|
|
R5i.x = clampFI32(R5i.x);
|
|
|
|
PV1i.x = R5i.x;
|
|
|
|
PV1i.y = R5i.x;
|
|
|
|
PV1i.z = R5i.x;
|
|
|
|
PV1i.w = R5i.x;
|
|
|
|
tempResultf = 1.0 / sqrt(intBitsToFloat(PV0i.x));
|
|
|
|
PS1i = floatBitsToInt(tempResultf);
|
|
|
|
// 16
|
|
|
|
backupReg0i = R126i.x;
|
|
|
|
backupReg1i = R126i.y;
|
|
|
|
backupReg2i = R125i.z;
|
|
|
|
backupReg3i = R124i.z;
|
|
|
|
R126i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg0i), intBitsToFloat(PS1i)));
|
|
|
|
PV0i.x = R126i.x;
|
|
|
|
R126i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg1i), intBitsToFloat(PS1i)));
|
|
|
|
PV0i.y = R126i.y;
|
|
|
|
R125i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg2i), intBitsToFloat(PS1i)));
|
|
|
|
PV0i.z = R125i.z;
|
|
|
|
R123i.w = floatBitsToInt((mul_nonIEEE(intBitsToFloat(PV1i.x),intBitsToFloat(R5i.w)) + intBitsToFloat(R4i.y)));
|
|
|
|
PV0i.w = R123i.w;
|
|
|
|
R124i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg3i), intBitsToFloat(R127i.w)));
|
|
|
|
PS0i = R124i.z;
|
|
|
|
// 17
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R7i.x),intBitsToFloat(R5i.y),intBitsToFloat(R4i.z),-0.0),vec4(intBitsToFloat(PV0i.x),intBitsToFloat(PV0i.y),intBitsToFloat(PV0i.z),0.0)));
|
|
|
|
tempi.x = clampFI32(tempi.x);
|
|
|
|
PV1i.x = tempi.x;
|
|
|
|
PV1i.y = tempi.x;
|
|
|
|
PV1i.z = tempi.x;
|
|
|
|
PV1i.w = tempi.x;
|
|
|
|
R127i.w = floatBitsToInt(1.0 / intBitsToFloat(PV0i.w));
|
|
|
|
PS1i = R127i.w;
|
|
|
|
// 18
|
|
|
|
tempi.x = floatBitsToInt(dot(vec4(intBitsToFloat(R8i.x),intBitsToFloat(R6i.y),intBitsToFloat(R6i.w),-0.0),vec4(intBitsToFloat(R126i.x),intBitsToFloat(R126i.y),intBitsToFloat(R125i.z),0.0)));
|
|
|
|
tempi.x = clampFI32(tempi.x);
|
|
|
|
PV0i.x = tempi.x;
|
|
|
|
PV0i.y = tempi.x;
|
|
|
|
PV0i.z = tempi.x;
|
|
|
|
PV0i.w = tempi.x;
|
|
|
|
PS0i = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV1i.x), intBitsToFloat(PV1i.x)));
|
|
|
|
// 19
|
|
|
|
R6i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R124i.y), intBitsToFloat(R127i.w)));
|
|
|
|
R124i.y = floatBitsToInt(-(intBitsToFloat(PV0i.x)) + 1.0);
|
|
|
|
PV1i.y = R124i.y;
|
|
|
|
R123i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R9i.x),intBitsToFloat(PS0i)) + 1.0));
|
|
|
|
PV1i.z = R123i.z;
|
|
|
|
R5i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R1i.z), intBitsToFloat(R1i.z)));
|
|
|
|
R127i.w = floatBitsToInt(max(-(intBitsToFloat(R5i.z)), 0.0));
|
|
|
|
PS1i = R127i.w;
|
|
|
|
// 20
|
|
|
|
R126i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV1i.y), intBitsToFloat(PV1i.y)));
|
|
|
|
PV0i.x = R126i.x;
|
|
|
|
PV0i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV1i.z), intBitsToFloat(PV1i.z)));
|
|
|
|
PV0i.z = floatBitsToInt(max(intBitsToFloat(R125i.w), intBitsToFloat(R126i.w)));
|
|
|
|
R126i.w = floatBitsToInt(-(intBitsToFloat(R124i.w)) + 1.0);
|
|
|
|
R4i.x = floatBitsToInt((mul_nonIEEE(-(intBitsToFloat(uf_remappedPS[0].z)),intBitsToFloat(R2i.y)) + 1.0));
|
|
|
|
R4i.x = clampFI32(R4i.x);
|
|
|
|
PS0i = R4i.x;
|
|
|
|
// 21
|
|
|
|
R9i.x = floatBitsToInt(-(intBitsToFloat(PV0i.z)) + 1.0);
|
|
|
|
R2i.y = floatBitsToInt(-(intBitsToFloat(R5i.w)) + 1.0);
|
|
|
|
R1i.z = floatBitsToInt(min(intBitsToFloat(R127i.w), 1.0));
|
|
|
|
PV1i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R124i.y), intBitsToFloat(PV0i.x)));
|
|
|
|
PS1i = floatBitsToInt(1.0 / intBitsToFloat(PV0i.y));
|
|
|
|
// 22
|
|
|
|
R8i.x = floatBitsToInt(intBitsToFloat(R6i.z) * intBitsToFloat(PS1i));
|
|
|
|
R6i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R124i.z), intBitsToFloat(R126i.w)));
|
|
|
|
R6i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.x), intBitsToFloat(PV1i.w)));
|
|
|
|
R6i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(uf_remappedPS[5].x), intBitsToFloat(R2i.z)));
|
|
|
|
R7i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(uf_remappedPS[5].y), intBitsToFloat(R2i.z)));
|
|
|
|
PS0i = R7i.x;
|
|
|
|
// 0
|
|
|
|
R126i.x = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R1i.z),intBitsToFloat(R2i.y)) + intBitsToFloat(R5i.w)));
|
|
|
|
R123i.y = floatBitsToInt((intBitsToFloat(R6i.z) * intBitsToFloat(0x3f75c28f) + intBitsToFloat(0x3d23d70a)));
|
|
|
|
PV0i.y = R123i.y;
|
|
|
|
R123i.z = floatBitsToInt((mul_nonIEEE(intBitsToFloat(R6i.y),intBitsToFloat(R9i.x)) + -(1.0)));
|
|
|
|
PV0i.z = R123i.z;
|
|
|
|
PV0i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(uf_remappedPS[5].z), intBitsToFloat(R2i.z)));
|
|
|
|
PS0i = floatBitsToInt(intBitsToFloat(R6i.w) * intBitsToFloat(0x3ea2f983));
|
|
|
|
// 1
|
|
|
|
PV1i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R8i.x), intBitsToFloat(PV0i.y)));
|
|
|
|
PV1i.y = floatBitsToInt(intBitsToFloat(R7i.x) * intBitsToFloat(0x3ea2f983));
|
|
|
|
PV1i.z = floatBitsToInt(intBitsToFloat(PV0i.w) * intBitsToFloat(0x3ea2f983));
|
|
|
|
R126i.w = floatBitsToInt((mul_nonIEEE(intBitsToFloat(PV0i.z),intBitsToFloat(uf_remappedPS[9].w)) + 1.0));
|
|
|
|
PV1i.w = R126i.w;
|
|
|
|
PS1i = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R5i.w), intBitsToFloat(PS0i)));
|
|
|
|
// 2
|
|
|
|
PV0i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(PV1i.w), intBitsToFloat(PS1i)));
|
|
|
|
PV0i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R5i.w), intBitsToFloat(PV1i.z)));
|
|
|
|
PV0i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R5i.w), intBitsToFloat(PV1i.y)));
|
|
|
|
PV0i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R6i.x), intBitsToFloat(PV1i.x)));
|
|
|
|
R6i.w = 0;
|
|
|
|
PS0i = R6i.w;
|
|
|
|
// 3
|
|
|
|
PV1i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.w), intBitsToFloat(PV0i.y)));
|
|
|
|
PV1i.z = floatBitsToInt(intBitsToFloat(PV0i.w) * 0.25);
|
|
|
|
PV1i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.w), intBitsToFloat(PV0i.z)));
|
|
|
|
R6i.x = floatBitsToInt(min(intBitsToFloat(PV0i.x), intBitsToFloat(0x42000000)));
|
|
|
|
PS1i = R6i.x;
|
|
|
|
// 4
|
|
|
|
PV0i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R5i.x), intBitsToFloat(PV1i.z)));
|
|
|
|
R6i.z = floatBitsToInt(min(intBitsToFloat(PV1i.x), intBitsToFloat(0x42000000)));
|
|
|
|
R6i.y = floatBitsToInt(min(intBitsToFloat(PV1i.w), intBitsToFloat(0x42000000)));
|
|
|
|
PS0i = R6i.y;
|
|
|
|
// 5
|
|
|
|
PV1i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R10i.x), intBitsToFloat(PV0i.y)));
|
|
|
|
// 6
|
|
|
|
backupReg0i = R0i.w;
|
|
|
|
PV0i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(backupReg0i), intBitsToFloat(PV1i.x)));
|
|
|
|
// 7
|
|
|
|
PV1i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(uf_remappedPS[5].z), intBitsToFloat(PV0i.w)));
|
|
|
|
PV1i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(uf_remappedPS[5].y), intBitsToFloat(PV0i.w)));
|
|
|
|
PV1i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(uf_remappedPS[5].x), intBitsToFloat(PV0i.w)));
|
|
|
|
// 8
|
|
|
|
PV0i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R4i.x), intBitsToFloat(PV1i.x)));
|
|
|
|
PV0i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R4i.x), intBitsToFloat(PV1i.y)));
|
|
|
|
PV0i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R4i.x), intBitsToFloat(PV1i.z)));
|
|
|
|
// 9
|
|
|
|
PV1i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.x), intBitsToFloat(PV0i.w)));
|
|
|
|
PV1i.z = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.x), intBitsToFloat(PV0i.y)));
|
|
|
|
PV1i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.x), intBitsToFloat(PV0i.z)));
|
|
|
|
// 10
|
|
|
|
PV0i.x = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.w), intBitsToFloat(PV1i.w)));
|
|
|
|
PV0i.y = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.w), intBitsToFloat(PV1i.x)));
|
|
|
|
PV0i.w = floatBitsToInt(mul_nonIEEE(intBitsToFloat(R126i.w), intBitsToFloat(PV1i.z)));
|
|
|
|
// 11
|
|
|
|
R4i.x = floatBitsToInt(min(intBitsToFloat(PV0i.y), intBitsToFloat(0x42000000)));
|
|
|
|
R4i.y = floatBitsToInt(min(intBitsToFloat(PV0i.x), intBitsToFloat(0x42000000)));
|
|
|
|
R4i.z = floatBitsToInt(min(intBitsToFloat(PV0i.w), intBitsToFloat(0x42000000)));
|
|
|
|
// 12
|
|
|
|
R0i.xyz = ivec3(R6i.x,R6i.y,R6i.z);
|
|
|
|
R0i.w = R6i.w;
|
|
|
|
// 13
|
|
|
|
R1i.xyz = ivec3(R4i.x,R4i.y,R4i.z);
|
|
|
|
R1i.w = R4i.w;
|
|
|
|
// export
|
|
|
|
passPixelColor0 = vec4(intBitsToFloat(R0i.x), intBitsToFloat(R0i.y), intBitsToFloat(R0i.z), intBitsToFloat(R0i.w));
|
|
|
|
passPixelColor1 = vec4(intBitsToFloat(R1i.x), intBitsToFloat(R1i.y), intBitsToFloat(R1i.z), intBitsToFloat(R1i.w));
|
|
|
|
}
|