Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / vcl / opengl / shaders / maskFragmentShader.glsl
blob864869c89b8e35fa6480dd28415d47c6ebbe56d9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
10 #version 130
12 varying vec2 tex_coord;
13 uniform sampler2D sampler;
14 uniform vec4 color;
16 void main() {
17     vec4 texel0;
18     texel0 = texture2D(sampler, tex_coord);
19     gl_FragColor = color;
20     gl_FragColor.a = 1.0 - texel0.r;
23 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */