Point lights now fully functional with deferred lighting

--HG--
extra : convert_revision : svn%3A7752d6cf-9f14-4ad2-affc-04f1e67b81a5/trunk%4054
This commit is contained in:
kearwood
2012-04-26 09:06:45 +00:00
parent 167a18f3a7
commit 0594bc0953
25 changed files with 541 additions and 53 deletions

View File

@@ -39,6 +39,12 @@ KRVector3::KRVector3()
z = 0.0f;
}
KRVector3::KRVector3(float v) {
x = v;
y = v;
z = v;
}
KRVector3::KRVector3(float X, float Y, float Z)
{
x = X;