Home
last modified time | relevance | path

Searched refs:OrthoProjectionUpdater (Results 1 – 4 of 4) sorted by relevance

/NW4C-2.0.3/sources/libraries/gfx/
Dgfx_OrthoProjectionUpdater.cpp28 NW_UT_RUNTIME_TYPEINFO_DEFINITION(OrthoProjectionUpdater,CameraProjectionUpdater);
31 OrthoProjectionUpdater*
32 OrthoProjectionUpdater::Create(os::IAllocator* allocator) in Create()
36 void* updaterMemory = allocator->Alloc(sizeof(OrthoProjectionUpdater)); in Create()
54 return new(updaterMemory) OrthoProjectionUpdater(allocator, true, resUpdater); in Create()
58 OrthoProjectionUpdater*
59 OrthoProjectionUpdater::Create( in Create()
65 void* updaterMemory = allocator->Alloc(sizeof(OrthoProjectionUpdater)); in Create()
68 return new(updaterMemory) OrthoProjectionUpdater(allocator, false, resUpdater); in Create()
72 OrthoProjectionUpdater::OrthoProjectionUpdater( in OrthoProjectionUpdater() function in nw::gfx::OrthoProjectionUpdater
[all …]
Dgfx_Camera.cpp459OrthoProjectionUpdater* orthoProjection = OrthoProjectionUpdater::Create(allocator, resOrthoProjec… in Create()
527 OrthoProjectionUpdater::GetMemorySizeInternal(&size, false); in GetMemorySizeInternal()
/NW4C-2.0.3/include/nw/gfx/
Dgfx_OrthoProjectionUpdater.h36 class OrthoProjectionUpdater : public CameraProjectionUpdater
39 NW_DISALLOW_COPY_AND_ASSIGN(OrthoProjectionUpdater);
55 static OrthoProjectionUpdater* Create(os::IAllocator* allocator);
65 static OrthoProjectionUpdater* Create(
76 size += sizeof(OrthoProjectionUpdater); in GetMemorySizeInternal()
131 OrthoProjectionUpdater(
139 virtual ~OrthoProjectionUpdater();
/NW4C-2.0.3/sources/libraries/demo/
Ddemo_Utility.cpp276 nw::gfx::OrthoProjectionUpdater* projectionUpdater = in CreateOrthoCamera()
277 nw::gfx::OrthoProjectionUpdater::Create(allocator); in CreateOrthoCamera()