bgfx/examples/18-ibl/fs_ibl_skybox.sc

24 lines
418 B
Python
Raw Normal View History

2014-02-14 08:46:34 +04:00
$input v_dir
/*
* Copyright 2014 Dario Manesku. All rights reserved.
2016-01-01 11:11:04 +03:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2014-02-14 08:46:34 +04:00
*/
#include "../common/common.sh"
2015-06-07 03:12:29 +03:00
SAMPLERCUBE(s_texCube, 0);
2014-02-14 08:46:34 +04:00
uniform vec4 u_params;
#define u_exposure u_params.y
void main()
{
vec3 dir = normalize(v_dir);
2015-06-07 03:12:29 +03:00
vec4 color = textureCubeLod(s_texCube, dir, 0.0);
2014-02-14 08:46:34 +04:00
color *= exp2(u_exposure);
gl_FragColor = toFilmic(color);
}