diff -r 000000000000 -r 6474c204b198 content/canvas/test/webgl-conformance/conformance/resources/samplerUniformShader.frag --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/canvas/test/webgl-conformance/conformance/resources/samplerUniformShader.frag Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,8 @@ +precision mediump float; +uniform sampler2D s2D; +uniform samplerCube sCube; +void main() +{ + gl_FragColor = texture2D(s2D, vec2(0.5, 0.5)) + + textureCube(sCube, vec3(0.5, 0.5, 0.5)); +}