bgfx/tools/texturev/fs_texture_3d.sc

17 lines
365 B
Python
Raw Normal View History

2017-06-20 23:31:22 +03:00
$input v_texcoord0, v_color0
/*
2018-01-01 22:16:06 +03:00
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
2017-06-20 23:31:22 +03:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
2017-10-26 02:17:54 +03:00
#include "common.sh"
2017-06-20 23:31:22 +03:00
SAMPLER3D(s_texColor, 0);
void main()
{
2017-07-09 21:47:13 +03:00
vec4 color = texture3DLod(s_texColor, vec3(v_texcoord0.xy, u_textureLayer), u_textureLod);
2017-10-26 02:17:54 +03:00
gl_FragColor = toEv(color * v_color0);
2017-06-20 23:31:22 +03:00
}