aboutsummaryrefslogtreecommitdiff
path: root/res/text.v.glsl
diff options
context:
space:
mode:
authorMark Andrus Roberts <mroberts@twilio.com>2017-02-03 15:34:52 -0800
committerJoe Wilm <joe@jwilm.com>2017-02-07 21:12:56 -0800
commitfbc7b7227171b41d96ca52df52e4cf1833f5fc6f (patch)
tree8f33bd12933b129ec751f5dd643387eae254030f /res/text.v.glsl
parent92e1cec0880313d962d80bf16eca60cebb509eab (diff)
downloadalacritty-fbc7b7227171b41d96ca52df52e4cf1833f5fc6f.tar.gz
alacritty-fbc7b7227171b41d96ca52df52e4cf1833f5fc6f.zip
Add visual bell support
This commit adds support for a visual bell. Although the Handler in src/ansi.rs warns "Hopefully this is never implemented", I wanted to give it a try. A new config option is added, `visual_bell`, which sets the `duration` and `animation` function of the visual bell. The default `duration` is 150 ms, and the default `animation` is `EaseOutExpo`. To disable the visual bell, set its duration to 0. The visual bell is modeled by VisualBell in src/term/mod.rs. It has a method to ring the bell, `ring`, and another method, `intensity`. Both return the "intensity" of the bell, which ramps down from 1.0 to 0.0 at a rate set by `duration` and `animation`. Whether or not the Processor waits for events is now configurable in order to allow for smooth drawing of the visual bell.
Diffstat (limited to 'res/text.v.glsl')
-rw-r--r--res/text.v.glsl3
1 files changed, 3 insertions, 0 deletions
diff --git a/res/text.v.glsl b/res/text.v.glsl
index 99234775..ccb6b8b5 100644
--- a/res/text.v.glsl
+++ b/res/text.v.glsl
@@ -36,10 +36,12 @@ out vec3 bg;
uniform vec2 termDim;
uniform vec2 cellDim;
+uniform float visualBell;
uniform int backgroundPass;
// Orthographic projection
uniform mat4 projection;
+flat out float vb;
flat out int background;
void main()
@@ -72,6 +74,7 @@ void main()
TexCoords = uvOffset + vec2(position.x, 1 - position.y) * uvSize;
}
+ vb = visualBell;
background = backgroundPass;
bg = backgroundColor / vec3(255.0, 255.0, 255.0);
fg = textColor / vec3(255.0, 255.0, 255.0);