Clean code for MVP Release

This commit is contained in:
PedroEdiaz
2024-10-22 19:54:55 -06:00
parent 7787daa2da
commit 6727c5fa9a
6 changed files with 106 additions and 100 deletions

View File

@@ -65,8 +65,7 @@ const char * fs =
" float diffuse = max(dot(Normal, lightDir),0.0); "
" float ambient = 0.5;"
" FragColor = (ambient + diffuse)*color;"
" FragColor = (0.5 + 0.5*diffuse)*color;"
"}";