SetOcclusionCullingMode

This function sets the entity occlusion testing mode.

Syntax

Parameters

Remarks

Per-entity occlusion testing is only recommended for objects that are expensive to render, like animated characters. The octree system already uses occlusion testing and will cull most occluded objects. You generally do not need to adjust this setting explicitly because by default, lights and animated models are set to use per-entity occlusion testing.

Leadwerks features hardware occlusion culling built into the scene octree. This eliminates the need for most occlusion culling on individual entities. Since the occlusion test itself has a small performance cost, it only makes sense to use it on individual entities that have a high cost of rendering, such as lights and animated models. By default, these are both set automatically to use occlusion culling on a per-entity basis.

Except for special circumstances, it is generally not necessary or advisable to adjust occlusion culling settings yourself, as changes may actually degrade performance.

Example

#include "Leadwerks.h"

using namespace Leadwerks;
Entity* entity = NULL;
int main(int argc, const char *argv[])
{
Leadwerks::Window* window = Leadwerks::Window::Create();
Context* context = Context::Create(window);
World* world = World::Create();
Camera* camera = Camera::Create();
camera->Move(0, 0, -3);
Light* light = DirectionalLight::Create();
light->SetRotation(35, 35, 0);

//Create a model to act as an occluder
Model* model = Model::Box();
model->SetScale(2);
model->SetColor(0.0, 0.0, 1.0);

//Create a model to test the visibility of
model = Model::Box();
model->SetColor(0.0, 1.0, 0.0);
model->SetPosition(0, 0, 6);

//Enable individual entity occlusion culling. Normally we would not do this
//because the occlusion test is as expensive as just rendering the object.
//A courser occlusion culling system is always active in the world octree.
model->SetOcclusionCullingMode(true);


while (true)
{
if (window->Closed() || window->KeyDown(Key::Escape)) return false;

model->SetPosition(Math::Sin(Leadwerks::Time::GetCurrent() / 20.0)*4.0, 0, 4);

if (window->KeyHit(Key::Space))
{
model->SetOcclusionCullingMode(!model->GetOcclusionCullingMode());
}

Leadwerks::Time::Update();
world->Update();
world->Render();

context->SetBlendMode(Blend::Alpha);
context->DrawText("Culled: " + String(model->GetCulled(camera)), 2, 2);
context->DrawText("Occlusion culling mode: " + String(model->GetOcclusionCullingMode()), 2, 22);

context->Sync();
}
return 0;
}