mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
9 lines
240 B
Text
9 lines
240 B
Text
#version 300 es
|
|
precision mediump float;
|
|
uniform sampler2D tex;
|
|
uniform samplerCube cub;
|
|
in vec3 uv;
|
|
out vec4 _fragColor;
|
|
void main() {
|
|
_fragColor = textureGrad(tex,uv.xy,dFdx(uv.xy),dFdy(uv.xy)) + textureGrad(cub,uv,dFdx(uv),dFdy(uv));
|
|
}
|