Home
last modified time | relevance | path

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

/NW4C-1.3.3/sources/libraries/gfx/
Dgfx_OrthoProjectionUpdater.cpp26 NW_UT_RUNTIME_TYPEINFO_DEFINITION(OrthoProjectionUpdater,CameraProjectionUpdater);
29 OrthoProjectionUpdater*
30 OrthoProjectionUpdater::Create(os::IAllocator* allocator) in Create()
34 void* updaterMemory = allocator->Alloc(sizeof(OrthoProjectionUpdater)); in Create()
52 return new(updaterMemory) OrthoProjectionUpdater(allocator, true, resUpdater); in Create()
56 OrthoProjectionUpdater*
57 OrthoProjectionUpdater::Create( in Create()
63 void* updaterMemory = allocator->Alloc(sizeof(OrthoProjectionUpdater)); in Create()
66 return new(updaterMemory) OrthoProjectionUpdater(allocator, false, resUpdater); in Create()
70 OrthoProjectionUpdater::OrthoProjectionUpdater( in OrthoProjectionUpdater() function in nw::gfx::OrthoProjectionUpdater
[all …]
Dgfx_Camera.cpp456OrthoProjectionUpdater* orthoProjection = OrthoProjectionUpdater::Create(allocator, resOrthoProjec… in Create()
524 OrthoProjectionUpdater::GetMemorySizeInternal(&size, false); in GetMemorySizeInternal()
/NW4C-1.3.3/include/nw/gfx/
Dgfx_OrthoProjectionUpdater.h34 class OrthoProjectionUpdater : public CameraProjectionUpdater
37 NW_DISALLOW_COPY_AND_ASSIGN(OrthoProjectionUpdater);
53 static OrthoProjectionUpdater* Create(os::IAllocator* allocator);
63 static OrthoProjectionUpdater* Create(
74 size += sizeof(OrthoProjectionUpdater); in GetMemorySizeInternal()
129 OrthoProjectionUpdater(
137 virtual ~OrthoProjectionUpdater();
/NW4C-1.3.3/sources/libraries/demo/
Ddemo_Utility.cpp274 nw::gfx::OrthoProjectionUpdater* projectionUpdater = in CreateOrthoCamera()
275 nw::gfx::OrthoProjectionUpdater::Create(allocator); in CreateOrthoCamera()