mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 02:08:23 +02:00
compilation errors fixed
This commit is contained in:
parent
5d207d0c9c
commit
9ddc3c27bf
2 changed files with 2 additions and 2 deletions
|
@ -2499,7 +2499,7 @@ void Application::init() {
|
||||||
|
|
||||||
_environment.init();
|
_environment.init();
|
||||||
|
|
||||||
DependencyManager::get<DeferredLightingEffect>()->init(this);
|
DependencyManager::get<DeferredLightingEffect>()->init();
|
||||||
|
|
||||||
DependencyManager::get<AvatarManager>()->init();
|
DependencyManager::get<AvatarManager>()->init();
|
||||||
_myCamera.setMode(CAMERA_MODE_FIRST_PERSON);
|
_myCamera.setMode(CAMERA_MODE_FIRST_PERSON);
|
||||||
|
|
|
@ -33,7 +33,7 @@ public:
|
||||||
static const int NORMAL_FITTING_MAP_SLOT = 10;
|
static const int NORMAL_FITTING_MAP_SLOT = 10;
|
||||||
static const int DEFERRED_TRANSFORM_BUFFER_SLOT = 2;
|
static const int DEFERRED_TRANSFORM_BUFFER_SLOT = 2;
|
||||||
|
|
||||||
void init(AbstractViewStateInterface* viewState);
|
void init();
|
||||||
|
|
||||||
/// Sets up the state necessary to render static untextured geometry with the simple program.
|
/// Sets up the state necessary to render static untextured geometry with the simple program.
|
||||||
gpu::PipelinePointer bindSimpleProgram(gpu::Batch& batch, bool textured = false, bool culled = true,
|
gpu::PipelinePointer bindSimpleProgram(gpu::Batch& batch, bool textured = false, bool culled = true,
|
||||||
|
|
Loading…
Reference in a new issue