experimental point light bindings

This commit is contained in:
cody glassman 2022-05-14 22:53:53 -07:00
parent fee639a74f
commit 0cb63ca4e6
13 changed files with 168 additions and 12 deletions

View file

@ -59,6 +59,7 @@ namespace fx
mValid = false;
mHDR = false;
mNormals = false;
mLights = false;
mEnabled = true;
mPassMap.clear();
mPasses.clear();
@ -238,6 +239,8 @@ namespace fx
mHDR = parseBool();
else if (key == "pass_normals")
mNormals = parseBool() && mSupportsNormals;
else if (key == "pass_lights")
mLights = parseBool();
else if (key == "glsl_profile")
{
expect<Lexer::String>();