Skip to content
Snippets Groups Projects
Commit 9c81fe38 authored by Andrew Wilson's avatar Andrew Wilson :elephant:
Browse files

REFAC: Update some comments

parent 5ad75f9f
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,6 @@ main()
LOG(INFO) << " | u - rotate left";
LOG(INFO) << " | o - rotate right";
// Not perfectly thread safe movement lambda, ijkl movement instead of wasd because d is already used
std::shared_ptr<KeyboardDeviceClient> keyDevice = viewer->getKeyboardDevice();
const Vec3d dx = scene->getActiveCamera()->getPosition() - scene->getActiveCamera()->getFocalPoint();
connect<Event>(sceneManager, &SceneManager::postUpdate, [&](Event*)
......
......@@ -31,9 +31,9 @@ struct SSAOConfig
{
bool m_enableSSAO = false;
bool m_SSAOBlur = false; // blur occlusion
double m_SSAORadius = 0.1; // comparison radius
double m_SSAOBias = 0.001; // comparison bias
unsigned int m_KernelSize = 128; // number of samples used
double m_SSAORadius = 0.1; // Sampling radius
double m_SSAOBias = 0.001; // Bias/offset
unsigned int m_KernelSize = 128; // Number of samples in the radius
};
struct RendererConfig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment