mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
Just making debugging easier
This commit is contained in:
parent
6ec6ccfec1
commit
ed27c2adb7
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ void main() {
|
|||
|
||||
vec3 prevColor = currentColor;
|
||||
|
||||
if (any(lessThan(prevTexCoord, vec2(0.0)) || any(greaterThan(prevTexCoord, vec2(1.0))) {
|
||||
if (any(lessThan(prevTexCoord, vec2(0.0))) || any(greaterThan(prevTexCoord, vec2(1.0)))) {
|
||||
prevColor = texture(historyMap, prevTexCoord).xyz;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue