Lines Matching refs:allocator
29 os::IAllocator* allocator in Create() argument
32 NW_NULL_ASSERT(allocator); in Create()
34 void* memory = allocator->Alloc(sizeof(LightSet)); in Create()
37 allocator, in Create()
43 void* memoryArray = allocator->Alloc(sizeof(VertexLight*) * m_Description.maxVertexLights); in Create()
44 …lightSet->m_VertexLights = VertexLightArray(memoryArray, m_Description.maxVertexLights, allocator); in Create()
48 lightSet->m_VertexLights = VertexLightArray(allocator); in Create()
58 os::IAllocator* allocator in Create() argument
61 NW_NULL_ASSERT(allocator); in Create()
64 void* memory = allocator->Alloc(sizeof(LightSet)); in Create()
71 allocator, in Create()
77 void* memoryArray = allocator->Alloc(sizeof(VertexLight*) * description.maxVertexLights); in Create()
78 … lightSet->m_VertexLights = VertexLightArray(memoryArray, description.maxVertexLights, allocator); in Create()
82 lightSet->m_VertexLights = VertexLightArray(allocator); in Create()