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