mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
8 lines
244 B
Text
8 lines
244 B
Text
|
#extension GL_ARB_shader_texture_lod : require
|
||
|
uniform sampler2D tex;
|
||
|
uniform samplerCube cub;
|
||
|
varying vec3 uv;
|
||
|
void main() {
|
||
|
gl_FragColor = texture2DGradARB(tex,uv.xy,dFdx(uv.xy),dFdy(uv.xy)) + textureCubeGradARB(cub,uv,dFdx(uv),dFdy(uv));
|
||
|
}
|