blob: edbfe3c251f6a10f9f36f38ce80a0d215e06f9c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$input v_texcoord0, v_color0
/*
* Copyright 2011-2019 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "common.sh"
SAMPLER2DARRAY(s_texColor, 0);
void main()
{
vec4 color = texture2DArrayLod(s_texColor, vec3(v_texcoord0.xy, u_textureLayer), u_textureLod);
gl_FragColor = toEv(color * v_color0);
}
|