mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
15 lines
244 B
Text
15 lines
244 B
Text
|
#version 300 es
|
||
|
precision mediump float;
|
||
|
uniform sampler3D tex;
|
||
|
in vec3 uv;
|
||
|
out lowp vec4 _fragColor;
|
||
|
void main ()
|
||
|
{
|
||
|
lowp vec4 tmpvar_1;
|
||
|
tmpvar_1 = texture (tex, uv);
|
||
|
lowp vec4 tmpvar_2;
|
||
|
tmpvar_2 = tmpvar_1;
|
||
|
_fragColor = tmpvar_2;
|
||
|
}
|
||
|
|