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