bgfx/tools/texturev/fs_texture.sc

20 lines
398 B
Python
Raw Normal View History

2016-04-22 08:12:35 +03:00
$input v_texcoord0, v_color0
/*
2017-01-01 11:18:41 +03:00
* Copyright 2011-2017 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-04-22 08:12:35 +03:00
*/
#include <bgfx_shader.sh>
SAMPLER2D(s_texColor, 0);
uniform vec4 u_params;
#define u_textureLod u_params.x
void main()
{
2017-07-09 21:47:13 +03:00
vec4 color = texture2DLod(s_texColor, v_texcoord0.xy, u_textureLod);
2016-04-22 08:12:35 +03:00
gl_FragColor = color * v_color0;
}