bgfx/examples/09-hdr/fs_hdr_skybox.sc

19 lines
403 B
Python
Raw Normal View History

2013-02-27 00:24:16 -05:00
$input v_texcoord0
/*
2016-01-01 03:11:04 -05:00
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2013-02-27 00:24:16 -05:00
*/
#include "common.sh"
2015-05-28 18:27:00 -04:00
SAMPLERCUBE(s_texCube, 0);
2013-02-27 00:24:16 -05:00
uniform mat4 u_mtx;
void main()
{
vec3 dir = vec3(v_texcoord0*2.0 - 1.0, 1.0);
dir = normalize(mul(u_mtx, vec4(dir, 0.0) ).xyz);
2015-05-28 18:27:00 -04:00
gl_FragColor = encodeRGBE8(textureCube(s_texCube, dir).xyz);
2013-02-27 00:24:16 -05:00
}