Home
last modified time | relevance | path

Searched refs:GetDescription (Results 1 – 24 of 24) sorted by relevance

/NW4C-1.2.23/include/nw/gfx/
Dgfx_Viewport.h91 f32 width = static_cast<f32>(renderTarget->GetDescription().width); in Viewport()
92 f32 height = static_cast<f32>(renderTarget->GetDescription().height); in Viewport()
151 static_cast<f32>(renderTarget->GetDescription().width), in SetBound()
152 static_cast<f32>(renderTarget->GetDescription().height) ); in SetBound()
Dgfx_FrameBuffer.h70 const Description& GetDescription() const { return m_Description; } in GetDescription() function
71 Description& GetDescription() { return m_Description; } in GetDescription() function
Dgfx_OffScreenBuffer.h46 virtual const Description& GetDescription() const { return m_Description; } in GetDescription() function
Dgfx_OnScreenBuffer.h44 virtual const Description& GetDescription() const { return m_Description; } in GetDescription() function
Dgfx_Common.h113 int GetDescription() const in GetDescription() function
Dgfx_IRenderTarget.h240 virtual const Description& GetDescription() const = 0;
Dgfx_Material.h136 const ResShaderProgramDescription GetDescription() const { return m_ProgramDescription; } in GetDescription() function
/NW4C-1.2.23/sources/libraries/gfx/res/
Dgfx_ResFragmentShader.cpp62 if ((referenceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
77 if ((referenceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
92 if ((referenceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
107 if ((referenceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
122 if ((referenceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
137 if ((referenceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
Dgfx_ResLight.cpp45 if ((distanceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
64 if ((angleResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
Dgfx_ResFog.cpp39 if ((referenceResult.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
Dgfx_ResMaterial.cpp47 …if (resShader.IsValid() && ((result.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_SHADER) … in Setup()
63 if ((result.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) == 0) in Setup()
169 if ((result.GetDescription() & RESOURCE_RESULT_NOT_FOUND_TEXTURE) == 0) in SetupTextures()
/NW4C-1.2.23/sources/libraries/dev/
Ddev_Profile.cpp287 if (ut::CheckFlag(profileManager->GetDescription().mode, ProfileManager::I_CACHE_MISS)) in AutoProfile()
292 …if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_READ_MISS… in AutoProfile()
297 …else if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_WRIT… in AutoProfile()
305 …if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_READ_MISS… in AutoProfile()
311 …if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_WRITE_MIS… in AutoProfile()
339 if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::I_CACHE_MISS)) in ~AutoProfile()
345 …if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_READ_MISS… in ~AutoProfile()
351 …else if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_WRIT… in ~AutoProfile()
360 …if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_READ_MISS… in ~AutoProfile()
367 …if (ut::CheckFlag(this->m_ProfileManager->GetDescription().mode, ProfileManager::D_CACHE_WRITE_MIS… in ~AutoProfile()
/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_RenderContext.cpp155 this->m_RenderTarget->GetDescription().width, in SetRenderTarget()
156 this->m_RenderTarget->GetDescription().height); in SetRenderTarget()
160 GraphicsDevice::SetDepthFormat(this->m_RenderTarget->GetDescription().depthFormat); in SetRenderTarget()
174 width = static_cast<f32>(renderTarget->GetDescription().width); in SetRenderTarget()
175 height = static_cast<f32>(renderTarget->GetDescription().height); in SetRenderTarget()
459 ResShaderProgramDescription description = this->m_Material->GetDescription(); in ActivateShaderProgram()
Dgfx_FrameBuffer.cpp141 const FrameBufferObject::Description& description = this->GetDescription(); in ActivateBuffer()
253 const FrameBufferObject::Description& description = this->GetDescription(); in ClearBuffer()
Dgfx_SortingMaterialIdGenerator.cpp134 ResShaderProgramDescription resDescription = (*iter).material->GetDescription(); in Generate()
/NW4C-1.2.23/include/nw/demo/
Ddemo_DisplayBufferSwapper.h201 const Description& GetDescription() const { return m_Description; } in GetDescription() function
Ddemo_Utility.h261 static_cast<f32>(renderTarget->GetDescription().height) / in SetCameraAspectRatio()
262 static_cast<f32>(renderTarget->GetDescription().width) in SetCameraAspectRatio()
/NW4C-1.2.23/demos/gfx/ResourceDemo/sources/
DResourceDemo.cpp284 if (result.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_SHADER) in InitializeScenes()
290 if (result.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) in InitializeScenes()
/NW4C-1.2.23/include/nw/dev/
Ddev_Profile.h173 const ProfileManager::Description& GetDescription() const { return m_Description; } in GetDescription() function
/NW4C-1.2.23/demos/gfx/LowLayerDemo/sources/
DLowLayerDemo.cpp378 static_cast<f32>(s_RenderTarget->GetDescription().height) / in BuildCameras()
379 static_cast<f32>(s_RenderTarget->GetDescription().width)); in BuildCameras()
/NW4C-1.2.23/demos/gfx/ParticleLowLayerDemo/sources/
DParticleLowLayerDemo.cpp419 static_cast<f32>(s_RenderTarget->GetDescription().height) / in BuildCameras()
420 static_cast<f32>(s_RenderTarget->GetDescription().width)); in BuildCameras()
/NW4C-1.2.23/demos/gfx/LowLayerAnimationDemo/sources/
DLowLayerAnimationDemo.cpp401 static_cast<f32>(s_RenderTarget->GetDescription().height) / in BuildCameras()
402 static_cast<f32>(s_RenderTarget->GetDescription().width)); in BuildCameras()
/NW4C-1.2.23/demos/gfx/DynamicMaterialDemo/sources/
DDynamicMaterialDemo.cpp303 if (result.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) in BuildResources()
/NW4C-1.2.23/demos/gfx/MultiAnimationDemo/sources/
DMultiAnimationDemo.cpp321 if (result.GetDescription() & nw::gfx::RESOURCE_RESULT_NOT_FOUND_LUT) in BuildResources()