bad include fixed maybe

This commit is contained in:
samcake 2017-05-24 17:25:21 -07:00
parent 044110e4f3
commit 575d4abdf7
2 changed files with 2 additions and 8 deletions

View file

@ -337,7 +337,7 @@ public:
// Don't actually crash in debug builds, in case this apparent deadlock is simply from // Don't actually crash in debug builds, in case this apparent deadlock is simply from
// the developer actively debugging code // the developer actively debugging code
#ifdef NDEBUG #ifdef NDEBUG
// deadlockDetectionCrash(); deadlockDetectionCrash();
#endif #endif
} }
} }
@ -5097,12 +5097,6 @@ void Application::displaySide(RenderArgs* renderArgs, Camera& theCamera, bool se
}); });
} }
// Setup the current Zone Entity lighting
{
// auto stage = DependencyManager::get<SceneScriptingInterface>()->getSkyStage();
// DependencyManager::get<DeferredLightingEffect>()->setGlobalLight(stage->getSunLight());
}
{ {
PerformanceTimer perfTimer("SceneProcessTransaction"); PerformanceTimer perfTimer("SceneProcessTransaction");
_main3DScene->enqueueTransaction(transaction); _main3DScene->enqueueTransaction(transaction);

View file

@ -19,6 +19,7 @@
#include <DependencyManager.h> #include <DependencyManager.h>
#include <GeometryCache.h> #include <GeometryCache.h>
#include <PerfStat.h> #include <PerfStat.h>
#include <procedural/ProceduralSkybox.h>
#include "EntityTreeRenderer.h" #include "EntityTreeRenderer.h"
#include "RenderableEntityItem.h" #include "RenderableEntityItem.h"
@ -26,7 +27,6 @@
#include <LightPayload.h> #include <LightPayload.h>
#include "DeferredLightingEffect.h" #include "DeferredLightingEffect.h"
#include <procedural\ProceduralSkybox.h>
class RenderableZoneEntityItemMeta { class RenderableZoneEntityItemMeta {
public: public: