mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
13 lines
218 B
Text
13 lines
218 B
Text
uniform sampler3D tex;
|
|
varying vec3 uv;
|
|
void main ()
|
|
{
|
|
gl_FragColor = texture3D (tex, uv);
|
|
}
|
|
|
|
|
|
// stats: 0 alu 1 tex 0 flow
|
|
// inputs: 1
|
|
// #0: uv (high float) 3x1 [-1]
|
|
// textures: 1
|
|
// #0: tex (high 3d) 0x0 [-1]
|