Lines Matching refs:allocator
31 os::IAllocator* allocator in Create() argument
34 NW_NULL_ASSERT(allocator); in Create()
36 void* memory = allocator->Alloc(sizeof(LightSet)); in Create()
39 allocator, in Create()
45 void* memoryArray = allocator->Alloc(sizeof(VertexLight*) * m_Description.maxVertexLights); in Create()
46 …lightSet->m_VertexLights = VertexLightArray(memoryArray, m_Description.maxVertexLights, allocator); in Create()
50 lightSet->m_VertexLights = VertexLightArray(allocator); in Create()
60 os::IAllocator* allocator in Create() argument
63 NW_NULL_ASSERT(allocator); in Create()
66 void* memory = allocator->Alloc(sizeof(LightSet)); in Create()
73 allocator, in Create()
79 void* memoryArray = allocator->Alloc(sizeof(VertexLight*) * description.maxVertexLights); in Create()
80 … lightSet->m_VertexLights = VertexLightArray(memoryArray, description.maxVertexLights, allocator); in Create()
84 lightSet->m_VertexLights = VertexLightArray(allocator); in Create()