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