You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
798 B

uniform float unknownInput;
void main() {
const int zero = 0;
float x = unknownInput / 0;
x = (float2(unknownInput) / 0).x;
x = (float2(unknownInput) / float2(zero)).x;
x = (float2(unknownInput) / float2(unknownInput, 0)).x;
x = (float3(unknownInput) / float3(float(0), unknownInput, unknownInput)).x;
x = (float4(unknownInput) / float4(float2(unknownInput, float(zero)), 1, 1)).x;
x /= 0;
int y = int(unknownInput) / 0;
y = int(unknownInput) % 0;
y = (int2(unknownInput) / 0).x;
y = (int2(unknownInput) / int2(zero)).x;
y = (int2(unknownInput) / int2(unknownInput, 0)).x;
y = (int3(unknownInput) / int3(0, unknownInput, unknownInput)).x;
y = (int4(unknownInput) % int4(int2(unknownInput, int(zero)), 1, 1)).x;
y /= 0;
y %= 0;
}