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

40 lines
704 B
Plaintext

1 year ago
@module quad
1 year ago
@vs vs
1 year ago
in vec2 position;
in vec2 texcoord0;
out vec2 uv;
out vec2 pos;
1 year ago
void main() {
1 year ago
gl_Position = vec4(position, 0.0, 1.0);
uv = texcoord0;
pos = position;
1 year ago
}
@end
@fs fs
1 year ago
uniform sampler2D tex;
1 year ago
uniform fs_params {
vec4 tint;
// both in clip space
vec2 clip_ul;
vec2 clip_lr;
1 year ago
};
1 year ago
in vec2 uv;
in vec2 pos;
1 year ago
out vec4 frag_color;
1 year ago
1 year ago
void main() {
// clip space is from [-1,1] [left, right]of screen on X, and [-1,1] [bottom, top] of screen on Y
if(pos.x < clip_ul.x || pos.x > clip_lr.x || pos.y < clip_lr.y || pos.y > clip_ul.y) discard;
frag_color = texture(tex, uv) * tint;
//frag_color = vec4(pos.x,0.0,0.0,1.0);
1 year ago
}
@end
@program program vs fs