Searched refs:Fog (Results 1 – 16 of 16) sorted by relevance
| /NW4C-1.3.3/sources/libraries/gfx/ |
| D | gfx_Fog.cpp | 29 NW_UT_RUNTIME_TYPEINFO_DEFINITION(Fog, TransformNode); 30 const float Fog::FOG_DENSITY = 0.0f; 31 const ResFogUpdater::FogUpdaterType Fog::FOG_UPDATER_TYPE = ResFogUpdater::FOG_UPDATER_TYPE_NONE; 32 const float Fog::FOG_MAX_DEPTH = 0.0f; 33 const float Fog::FOG_MIN_DEPTH = 0.0f; 36 Fog* 37 Fog::DynamicBuilder::Create( in Create() 47 void* memory = allocator->Alloc(sizeof(Fog)); in Create() 49 Fog* fog = new(memory) Fog( in Create() 61 Fog::DynamicBuilder::GetMemorySize( size_t alignment ) const in GetMemorySize() [all …]
|
| D | gfx_SceneBuilder.cpp | 422 Fog::Description description; in BuildSceneObject() 432 Fog::GetMemorySizeInternal(pSize, ResStaticCast<ResFog>(resource), description); in BuildSceneObject() 436 … Fog::GetDeviceMemorySizeInternal(pDeviceSize, ResStaticCast<ResFog>(resource), description); in BuildSceneObject() 441 Fog* node = Fog::Create( in BuildSceneObject()
|
| D | gfx_SceneEnvironment.cpp | 52 Fog* fog = (*fogBinder).fog; in ApplyFrom() 76 std::fill(this->m_Fogs.begin(), this->m_Fogs.end(), static_cast<nw::gfx::Fog*>(NULL)); in ClearSettings()
|
| D | gfx_SceneTraverser.cpp | 117 void SceneTraverser::VisitFog(Fog* fog) in VisitFog()
|
| D | gfx_SceneEnvironmentSetting.cpp | 133 …d_if(sceneContext.GetFogBegin(), sceneContext.GetFogEnd(), SceneObjectCompare<const Fog>((*iter))); in ResolveReference()
|
| /NW4C-1.3.3/include/nw/gfx/ |
| D | gfx_Fog.h | 35 class Fog : public TransformNode 38 NW_DISALLOW_COPY_AND_ASSIGN(Fog); 60 void operator() (Fog* fog) in operator() 117 Fog* Create(os::IAllocator* allocator); 128 Fog::Description m_Description; 140 static Fog* Create( 143 const Fog::Description& description, 270 Fog( in Fog() function 273 const Fog::Description& description) in Fog() 286 Fog( in Fog() function [all …]
|
| D | gfx_SceneEnvironment.h | 31 class Fog; variable 80 std::fill(m_Fogs.begin(), m_Fogs.end(), static_cast<Fog*>(NULL)); in SceneEnvironment() 104 void SetFog(s32 index, Fog* fog) in SetFog() 114 Fog* GetFog(s32 index) in GetFog() 124 const Fog* GetFog(s32 index) const in GetFog() 336 Fog* fog = m_Fogs[index]; in SetActiveFog() 349 Fog* GetActiveFog() in GetActiveFog() 358 const Fog* GetActiveFog() const in GetActiveFog() 491 Fog* m_Fog;
|
| D | gfx_ISceneVisitor.h | 31 class Fog; variable 86 virtual void VisitFog(Fog* fog) = 0;
|
| D | gfx_SceneEnvironmentSetting.h | 29 class Fog; variable 76 Fog* fog;
|
| D | gfx_SceneTraverser.h | 72 virtual void VisitFog(Fog* fog);
|
| D | gfx_SceneInitializer.h | 93 virtual void VisitFog(Fog*) {} in VisitFog() argument
|
| D | gfx_SceneContext.h | 35 class Fog; variable 69 typedef ut::MoveArray<Fog*> FogArray; 846 void PushFog(Fog* fog) in PushFog() 858 bool TryPushFog(Fog* fog) in TryPushFog()
|
| D | gfx_RenderContext.h | 49 class Fog; variable
|
| /NW4C-1.3.3/demos/gfx/ResourceDemo/ |
| D | OMakefile | 40 $(NW4C_ROOT)/SampleData/Graphics/Intermediate/ProgramResource/Environment/Fog.cenv
|
| /NW4C-1.3.3/demos/gfx/SceneTreeDemo/sources/ |
| D | SceneTreeDemo.cpp | 285 nw::gfx::Fog* fog = nw::gfx::Fog::DynamicBuilder() in BuildFogs()
|
| /NW4C-1.3.3/sources/libraries/demo/ |
| D | demo_GraphicsSystem.cpp | 415 …std::for_each(sceneContext->GetFogBegin(), sceneContext->GetFogEnd(), gfx::Fog::UpdateFunctor(came… in SubmitView()
|