| /NW4C-1.3.3/include/nw/gfx/ |
| D | gfx_Viewport.h | 83 IRenderTarget* renderTarget, in Viewport() argument 89 NW_NULL_ASSERT(renderTarget); in Viewport() 91 f32 width = static_cast<f32>(renderTarget->GetDescription().width); in Viewport() 92 f32 height = static_cast<f32>(renderTarget->GetDescription().height); in Viewport() 145 void SetBound(IRenderTarget* renderTarget) in SetBound() argument 147 NW_NULL_ASSERT(renderTarget); in SetBound() 151 static_cast<f32>(renderTarget->GetDescription().width), in SetBound() 152 static_cast<f32>(renderTarget->GetDescription().height) ); in SetBound()
|
| D | gfx_RenderContext.h | 234 void SetRenderTarget(IRenderTarget* renderTarget, const Viewport& viewport); 240 void SetRenderTarget(IRenderTarget* renderTarget);
|
| /NW4C-1.3.3/sources/libraries/gfx/ |
| D | gfx_IRenderTarget.cpp | 35 IRenderTarget* renderTarget = NULL; in Create() local 41 renderTarget = new(memory) OnScreenBuffer(allocator, m_Description); in Create() 43 return renderTarget; in Create() 51 IRenderTarget* renderTarget = NULL; in CreateOffScreenBuffer() local 118 renderTarget = new(memory) OffScreenBuffer(allocator, description, texture); in CreateOffScreenBuffer() 120 return renderTarget; in CreateOffScreenBuffer()
|
| D | gfx_RenderContext.cpp | 149 IRenderTarget* renderTarget, in SetRenderTarget() argument 153 this->m_RenderTarget = renderTarget; in SetRenderTarget() 173 IRenderTarget* renderTarget in SetRenderTarget() argument 178 if (renderTarget) in SetRenderTarget() 180 width = static_cast<f32>(renderTarget->GetDescription().width); in SetRenderTarget() 181 height = static_cast<f32>(renderTarget->GetDescription().height); in SetRenderTarget() 188 this->SetRenderTarget(renderTarget, Viewport(x, y, width, height, near, far)); in SetRenderTarget()
|
| /NW4C-1.3.3/demos/Nw4cDemo/sources/ |
| D | SmRenderSystem.cpp | 261 SmRenderSystem::SetRenderTarget( nw::gfx::IRenderTarget* renderTarget ) in SetRenderTarget() argument 263 m_RenderContext->SetRenderTarget(renderTarget); in SetRenderTarget() 264 m_RenderTarget = renderTarget; in SetRenderTarget()
|
| /NW4C-1.3.3/include/nw/demo/ |
| D | demo_Utility.h | 271 const nw::gfx::IRenderTarget* renderTarget in SetCameraAspectRatio() argument 274 NW_POINTER_ASSERT(renderTarget); in SetCameraAspectRatio() 279 static_cast<f32>(renderTarget->GetDescription().height) / in SetCameraAspectRatio() 280 static_cast<f32>(renderTarget->GetDescription().width) in SetCameraAspectRatio()
|
| D | demo_GraphicsSystem.h | 232 void SetRenderTarget(gfx::IRenderTarget* renderTarget);
|
| /NW4C-1.3.3/demos/Nw4cDemo/include/ |
| D | Graphics.h | 44 void SetRenderTarget( nw::gfx::IRenderTarget* renderTarget );
|
| D | SmRenderSystem.h | 106 void SetRenderTarget( nw::gfx::IRenderTarget* renderTarget );
|
| /NW4C-1.3.3/demos/gfx/ProjectionShadowDemo/sources/ |
| D | ProjectionShadowDemo.cpp | 64 nw::gfx::IRenderTarget* renderTarget, in StartShadowRenderCommand() argument 68 m_RenderTarget(renderTarget), in StartShadowRenderCommand() 148 …StartRenderCommand(nw::demo::RenderSystem* renderSystem, nw::gfx::IRenderTarget* renderTarget, s32… in StartRenderCommand() argument 150 m_RenderTarget(renderTarget), in StartRenderCommand()
|
| /NW4C-1.3.3/demos/gfx/ShadowMapDemo/sources/ |
| D | ShadowMapDemo.cpp | 64 nw::gfx::IRenderTarget* renderTarget, in StartShadowRenderCommand() argument 68 m_RenderTarget(renderTarget), in StartShadowRenderCommand() 148 …StartRenderCommand(nw::demo::RenderSystem* renderSystem, nw::gfx::IRenderTarget* renderTarget, s32… in StartRenderCommand() argument 150 m_RenderTarget(renderTarget), in StartRenderCommand()
|
| /NW4C-1.3.3/sources/libraries/demo/ |
| D | demo_GraphicsSystem.cpp | 282 RenderSystem::SetRenderTarget(gfx::IRenderTarget* renderTarget) in SetRenderTarget() argument 285 renderContext->SetRenderTarget(renderTarget); in SetRenderTarget()
|