1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
12 uniform int i_nColors;
13 uniform sampler1D t_colorArray4d;
14 uniform sampler1D t_stopArray1d;
15 uniform mat3x2 m_transform;
16 varying vec2 v_textureCoords2d;
17 const vec2 v_center2d = vec2(0,0);
26 int findBucket(float t)
29 while( nMinBucket < i_nColors &&
30 texture1D(t_stopArray1d, nMinBucket).s < t )
32 return max(nMinBucket-1,0);
38 clamp( 1.0 - distance(
39 vec2( m_transform * vec3(v_textureCoords2d,1)),
43 int nMinBucket=findBucket( fAlpha );
46 (fAlpha-texture1D(t_stopArray1d, nMinBucket).s) /
47 (texture1D(t_stopArray1d, nMinBucket+1).s -
48 texture1D(t_stopArray1d, nMinBucket).s);
50 gl_FragColor = mix(texture1D(t_colorArray4d, nMinBucket),
51 texture1D(t_colorArray4d, nMinBucket+1),
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */