mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 23:04:07 +00:00
18 lines
334 B
GLSL
18 lines
334 B
GLSL
#version 440 core
|
|
precision highp float;
|
|
|
|
layout(location = 0) out vec4 o_color;
|
|
|
|
float TevPerCompGT(float a, float b) {
|
|
return float(a > b);
|
|
}
|
|
|
|
vec3 TevPerCompGT(vec3 a, vec3 b) {
|
|
return vec3(greaterThan(a, b));
|
|
}
|
|
|
|
void main() {
|
|
o_color.rgb = TevPerCompGT(vec3(3.0), vec3(5.0));
|
|
o_color.a = TevPerCompGT(3.0, 5.0);
|
|
}
|