Files
libreoffice/chart2/opengl/renderFragmentShader.glsl
Markus Mohrhard fb982d1fca add license headers to glsl files
Change-Id: Ib473d7bbb39f50f5fea549e69dcac0e938a1700a
2014-01-31 19:25:12 +01:00

19 lines
532 B
GLSL

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
uniform sampler2D RenderTex;
varying vec2 vTexCoord;
void main()
{
gl_FragColor = vec4(texture2D(RenderTex, vTexCoord).rgb, 1.0);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */