bgfx/examples/08-update/fs_update_3d.sc

18 lines
376 B
Python
Raw Permalink Normal View History

$input v_texcoord0
/*
2024-01-14 12:56:36 +03:00
* Copyright 2011-2024 Branimir Karadzic. All rights reserved.
2022-01-15 22:59:06 +03:00
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
2015-05-29 01:27:00 +03:00
SAMPLER3D(s_texColor, 0);
uniform vec4 u_time;
void main()
{
2015-05-29 01:27:00 +03:00
vec3 uvw = vec3(v_texcoord0.xy*0.5+0.5, sin(u_time.x)*0.5+0.5);
gl_FragColor = vec4_splat(texture3D(s_texColor, uvw).x);
}