bgfx/tools/texturev/fs_texture.sc

20 lines
428 B
Python
Raw Normal View History

2016-04-21 22:12:35 -07:00
$input v_texcoord0, v_color0
/*
2019-01-13 17:13:25 -08:00
* Copyright 2011-2019 Branimir Karadzic. All rights reserved.
2017-01-01 00:18:41 -08:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-04-21 22:12:35 -07:00
*/
2017-10-25 16:17:54 -07:00
#include "common.sh"
2016-04-21 22:12:35 -07:00
SAMPLER2D(s_texColor, 0);
void main()
{
2017-07-09 11:47:13 -07:00
vec4 color = texture2DLod(s_texColor, v_texcoord0.xy, u_textureLod);
color.xyz = applyExposure(color.xyz);
color *= v_color0;
gl_FragColor = toOutput(color, u_outputFormat, u_sdrWhiteNits);
2016-04-21 22:12:35 -07:00
}