Fix typo;

This commit is contained in:
bjorn 2019-06-20 21:36:07 -07:00
parent b6d65922af
commit 807c519397
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ const char* lovrStandardFragmentShader = ""
" float NoV = abs(dot(N, V)) + 1e-5; \n"
" float NoL = clamp(dot(N, L), 0., 1.); \n"
" float NoH = clamp(dot(N, H), 0., 1.); \n"
" float VoH = clamp(dot(L, H), 0., 1.); \n"
" float VoH = clamp(dot(V, H), 0., 1.); \n"
""
" float D = D_GGX(NoH, roughness); \n"
" float G = G_SmithGGXCorrelated(NoV, NoL, roughness); \n"