Home
last modified time | relevance | path

Searched refs:m_Fogs (Results 1 – 5 of 5) sorted by relevance

/NW4C-1.2.23/include/nw/gfx/
Dgfx_SceneEnvironment.h62 m_Fogs(description.fogs), in SceneEnvironment()
80 m_Fogs.resize(m_Fogs.capacity()); in SceneEnvironment()
81 std::fill(m_Fogs.begin(), m_Fogs.end(), static_cast<Fog*>(NULL)); in SceneEnvironment()
107 NW_MINMAXLT_ASSERT(index, 0, m_Fogs.size()); in SetFog()
108 m_Fogs[index] = fog; in SetFog()
117 NW_MINMAXLT_ASSERT(index, 0, m_Fogs.size()); in GetFog()
118 return m_Fogs[index]; in GetFog()
127 NW_MINMAXLT_ASSERT(index, 0, m_Fogs.size()); in GetFog()
128 return m_Fogs[index]; in GetFog()
335 NW_MINMAXLT_ASSERT(index, 0, m_Fogs.size()); in SetActiveFog()
[all …]
Dgfx_SceneEnvironmentSetting.h180 return m_Fogs.begin(); in GetFogBegin()
189 return m_Fogs.begin(); in GetFogBegin()
198 return m_Fogs.end(); in GetFogEnd()
207 return m_Fogs.end(); in GetFogEnd()
293 FogBinderArray m_Fogs; variable
Dgfx_SceneContext.h261 m_Fogs.clear(); in Clear()
738 bool isPushed = m_Fogs.push_back(fog); in PushFog()
748 return m_Fogs.begin(); in GetFogBegin()
757 return m_Fogs.begin(); in GetFogBegin()
766 return m_Fogs.end(); in GetFogEnd()
775 return m_Fogs.end(); in GetFogEnd()
1014 m_Fogs(fogs), in SceneContext()
1031 FogArray m_Fogs; variable
/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_SceneEnvironment.cpp54 NW_MINMAX_ASSERT(fogIndex, 0, m_Fogs.size()); in ApplyFrom()
55 m_Fogs[fogIndex] = fog; in ApplyFrom()
76 std::fill(this->m_Fogs.begin(), this->m_Fogs.end(), static_cast<nw::gfx::Fog*>(NULL)); in ClearSettings()
Dgfx_SceneEnvironmentSetting.cpp88 m_Fogs = ut::MoveArray<FogBinder>(fogsMemory, resSetting.GetFogsCount(), allocator); in CreateEnvironmentArray()
137 bool isSuccess = this->m_Fogs.push_back(fogBinder); in ResolveReference()