mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
12 lines
195 B
Text
12 lines
195 B
Text
#version 300 es
|
|
precision mediump float;
|
|
uniform sampler3D tex;
|
|
in vec3 uv;
|
|
out lowp vec4 _fragColor;
|
|
void main ()
|
|
{
|
|
_fragColor = texture (tex, uv);
|
|
}
|
|
|
|
|
|
// inputs: 1, stats: 0 alu 1 tex 0 flow
|