protot/3rdparty/bgfx/tools/texturev/fs_texture_cube.sc

21 lines
478 B
Python
Raw Normal View History

2016-08-29 22:31:11 +02:00
$input v_texcoord0, v_color0
/*
2018-02-03 17:39:28 +01:00
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
2017-04-11 08:16:10 +02:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-08-29 22:31:11 +02:00
*/
2018-02-03 17:39:28 +01:00
#include "common.sh"
2016-08-29 22:31:11 +02:00
SAMPLERCUBE(s_texColor, 0);
uniform mat4 u_mtx;
void main()
{
2018-02-03 17:39:28 +01:00
vec3 dir = vec3( (v_texcoord0.xy*2.0 - 1.0) * vec2(1.0, -1.0), 1.0);
2016-08-29 22:31:11 +02:00
dir = normalize(mul(u_mtx, vec4(dir, 0.0) ).xyz);
2018-02-03 17:39:28 +01:00
vec4 color = textureCubeLod(s_texColor, dir, u_textureLod);
gl_FragColor = toEv(color * v_color0);
2016-08-29 22:31:11 +02:00
}