bgfx/examples/09-hdr/fs_hdr_skybox.sc

19 lines
396 B
Python
Raw Normal View History

2013-02-27 00:24:16 -05:00
$input v_texcoord0
/*
2015-01-02 17:43:11 -05:00
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
2013-02-27 00:24:16 -05:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "common.sh"
SAMPLERCUBE(u_texCube, 0);
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);
gl_FragColor = encodeRGBE8(textureCube(u_texCube, dir).xyz);
}