Bug 1932347 - Adjust positioning of tab preview for vertical tabs r=tabbrowser-review...
[gecko.git] / dom / canvas / test / webgl-conf / checkout / resources / samplerForWebGL2UniformShader.frag
blob8c9a90079ab35ef66676b878f267a5461718a997
1 #version 300 es
3 /*
4 Copyright (c) 2019 The Khronos Group Inc.
5 Use of this source code is governed by an MIT-style license that can be
6 found in the LICENSE.txt file.
7 */
9 precision mediump float;
10 uniform mediump sampler3D s3D;
11 uniform mediump sampler2DArray s2DArray;
12 out vec4 fragColor;
13 void main()
15   fragColor = texture(s3D, vec3(0.5, 0.5, 0.5)) +
16       texture(s2DArray, vec3(0.5, 0.5, 0.5));