21 lines
318 B
GLSL
21 lines
318 B
GLSL
#version 310 es
|
|
precision highp float;
|
|
|
|
layout(binding = 0, std430) buffer prevent_dce_block_ssbo {
|
|
vec2 inner;
|
|
} prevent_dce;
|
|
|
|
void fwidthCoarse_e653f7() {
|
|
vec2 res = fwidth(vec2(1.0f));
|
|
prevent_dce.inner = res;
|
|
}
|
|
|
|
void fragment_main() {
|
|
fwidthCoarse_e653f7();
|
|
}
|
|
|
|
void main() {
|
|
fragment_main();
|
|
return;
|
|
}
|