Sign in
webkit
/
WebKit
/
4a12667b4cecb17e84375f8db50c9b2d39b06fe4
/
.
/
LayoutTests
/
fast
/
canvas
/
webgl
/
resources
/
samplerUniformShader.frag
blob: 11cba127460f60886b6bb860764d898eba9a067e [
file
] [
log
] [
blame
]
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
));
}