Merge pull request #9 from denistribouillois/FixDepthEdgeIssue

Fix depth edge issue
This commit is contained in:
Matias Lavik 2020-02-06 19:02:55 +01:00 коммит произвёл GitHub
Родитель ff8fb3f9f8 ca6e198d5f
Коммит 982d19f2a3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -181,7 +181,10 @@
frag_out output;
output.colour = col;
#if DEPTHWRITE_ON
output.depth = localToDepth(rayStartPos + rayDir * (iDepth * stepSize) - float3(0.5f, 0.5f, 0.5f));
if (iDepth != 0)
output.depth = localToDepth(rayStartPos + rayDir * (iDepth * stepSize) - float3(0.5f, 0.5f, 0.5f));
else
output.depth = 0;
#endif
return output;
}