Fix missing decal mask in mobile renderer

(cherry picked from commit 8449331f13)
This commit is contained in:
Bastiaan Olij 2023-08-23 11:14:10 +10:00 committed by Yuri Sizov
parent 1c0ffdaa87
commit 82846a7e6d
1 changed files with 4 additions and 0 deletions

View File

@ -895,6 +895,10 @@ void main() {
break;
}
if (!bool(decals.data[decal_index].mask & draw_call.layer_mask)) {
continue; //not masked
}
vec3 uv_local = (decals.data[decal_index].xform * vec4(vertex, 1.0)).xyz;
if (any(lessThan(uv_local, vec3(0.0, -1.0, 0.0))) || any(greaterThan(uv_local, vec3(1.0)))) {
continue; //out of decal