mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
11 lines
176 B
Text
11 lines
176 B
Text
uniform sampler3D tex;
|
|
varying vec3 uv;
|
|
void main ()
|
|
{
|
|
vec4 tmpvar_1;
|
|
tmpvar_1 = texture3D (tex, uv);
|
|
vec4 tmpvar_2;
|
|
tmpvar_2 = tmpvar_1;
|
|
gl_FragColor = tmpvar_2;
|
|
}
|
|
|