From cf9d94eb1256881d48b1a3dc63db6caf32bfb841 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Mon, 17 Dec 2018 19:06:07 +0000 Subject: Add color option to visual bell This adds the option to specify the color of the visual bell using the `visual_bell.color` configuration setting. This is done by rendering a big quad over the entire screen, which also opens up options to draw other arbitrary rectangles on the screen in the future. --- res/rect.f.glsl | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 res/rect.f.glsl (limited to 'res/rect.f.glsl') diff --git a/res/rect.f.glsl b/res/rect.f.glsl new file mode 100644 index 00000000..907ee858 --- /dev/null +++ b/res/rect.f.glsl @@ -0,0 +1,22 @@ +// Copyright 2016 Joe Wilm, The Alacritty Project Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +#version 330 core +in vec4 color; + +out vec4 FragColor; + +void main() +{ + FragColor = color; +} -- cgit v1.2.3-54-g00ecf