Lines Matching refs:Fog
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::Accept( in Accept()
70 /* static */ Fog*
71 Fog::Create( in Create()
74 const Fog::Description& description, in Create()
84 void* memory = allocator->Alloc(sizeof(Fog)); in Create()
87 Fog* fog = new(memory) Fog( in Create()
105 Fog::CreateResFog(os::IAllocator* allocator, const char* name /* = NULL */) in CreateResFog()
162 Fog::DestroyResFog(os::IAllocator* allocator, ResFogData* resFog) in DestroyResFog()
192 Fog::CreateResFogUpdater(os::IAllocator* allocator) in CreateResFogUpdater()
204 Fog::DestroyResFogUpdater(os::IAllocator* allocator, ResFogUpdaterData* resFogUpdater) in DestroyResFogUpdater()
215 Fog::Update(const Camera* camera) in Update()
260 Fog::SetupFogSampler( in SetupFogSampler()
349 Fog::Initialize(os::IAllocator* allocator) in Initialize()