Lines Matching refs:OrthoProjectionUpdater
26 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
81 OrthoProjectionUpdater::~OrthoProjectionUpdater() in ~OrthoProjectionUpdater()
91 OrthoProjectionUpdater::Update(math::MTX44* projectionMatrix, math::MTX34* textureProjectionMatrix) in Update()