repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Backed out changeset 8fc3326bce7f (bug 1943032) for causing failures at browser_tab_g...
[gecko.git]
/
dom
/
canvas
/
test
/
webgl-conf
/
checkout
/
resources
/
samplerUniformShader.frag
blob
11cba127460f60886b6bb860764d898eba9a067e
1
precision mediump float;
2
uniform sampler2D s2D;
3
uniform samplerCube sCube;
4
void main()
5
{
6
gl_FragColor = texture2D(s2D, vec2(0.5, 0.5)) +
7
textureCube(sCube, vec3(0.5, 0.5, 0.5));
8
}