summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/materialCommon.glsl
blob: 3fe22376119e5c3329fc47c92b80b45e3562e128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
float
map(uint mapmode, float value)
{
	switch (mapmode) {
		case 0u: // Repeat
			return fract(value);
		case 1u: // Clamp to edge
			return clamp(0.0, 1.0, value);
		case 2u: // Mirror
			discard;
		case 3u: // Decal
			if (value != clamp(0.0, 1.0, value)) {
				discard;
			}
	}
	return 0;
}

vec2
map(uvec2 mapmode, vec2 value)
{
	return vec2(map(mapmode.x, value.x), map(mapmode.y, value.y));
}

vec4
getTextureColour(MaterialDetail mat, vec2 uv)
{
	if (mat.textureSize.x > 0) {
		const vec2 tSize = textureSize(textureAlbedo, 0);
		uv = (mat.textureOrigin + mat.textureSize * map(mat.mapmode, uv)) / tSize;
	}
	return texture(textureAlbedo, uv);
}