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