bgfx/tools/texturev/fs_texture_3d.sc

19 lines
448 B
Python
Raw Normal View History

2017-06-20 13:31:22 -07:00
$input v_texcoord0, v_color0
/*
2022-01-15 11:59:06 -08:00
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
2017-06-20 13:31:22 -07:00
*/
2017-10-25 16:17:54 -07:00
#include "common.sh"
2017-06-20 13:31:22 -07:00
SAMPLER3D(s_texColor, 0);
void main()
{
2017-07-09 11:47:13 -07:00
vec4 color = texture3DLod(s_texColor, vec3(v_texcoord0.xy, u_textureLayer), u_textureLod);
color.xyz = applyExposure(color.xyz);
color *= v_color0;
gl_FragColor = toOutput(color, u_outputFormat, u_sdrWhiteNits);
2017-06-20 13:31:22 -07:00
}