bgfx/tools/texturev/fs_texture_cube2.sc

20 lines
428 B
Python
Raw Normal View History

2017-07-09 21:47:13 +03:00
$input v_texcoord0, v_color0
/*
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
2017-07-09 21:47:13 +03:00
*/
2017-10-26 02:17:54 +03:00
#include "common.sh"
2017-07-09 21:47:13 +03:00
SAMPLERCUBE(s_texColor, 0);
void main()
{
vec4 color = textureCubeLod(s_texColor, v_texcoord0, u_textureLod);
color.xyz = applyExposure(color.xyz);
color *= v_color0;
gl_FragColor = toOutput(color, u_outputFormat, u_sdrWhiteNits);
2017-07-09 21:47:13 +03:00
}