blob: b64c5bc29e70d5af14a4b5ea1d76c96d43be6790 [file] [log] [blame]
#version 310 es
precision highp float;
precision highp int;
layout(binding = 0, std430) buffer prevent_dce_block_ssbo {
float inner;
} prevent_dce;
float fwidthFine_f1742d() {
float res = fwidth(1.0f);
return res;
}
void fragment_main() {
prevent_dce.inner = fwidthFine_f1742d();
}
void main() {
fragment_main();
return;
}