bgfx/examples/common/imgui/fs_imgui_image.sc

18 lines
341 B
Python
Raw Normal View History

2014-07-04 20:09:31 -04:00
$input v_texcoord0
/*
* Copyright 2014 Dario Manesku. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include <bgfx_shader.sh>
2014-07-12 05:04:55 -04:00
uniform float u_imageLod;
2014-10-02 03:04:24 -04:00
SAMPLER2D(u_texColor, 0);
2014-07-04 20:09:31 -04:00
void main()
{
2014-10-02 03:04:24 -04:00
vec4 color = texture2DLod(u_texColor, v_texcoord0, u_imageLod);
2014-07-12 19:41:51 -04:00
gl_FragColor = vec4(color.xyz, 1.0);
2014-07-04 20:09:31 -04:00
}