Lines Matching refs:resourceMemory
101 void* resourceMemory = allocator->Alloc(sizeof(ResParticleEmitterParameterData)); in Create() local
102 if (resourceMemory == NULL) in Create()
107 resParameterData = new(resourceMemory) ResParticleEmitterParameterData; in Create()
126 void* resourceMemory = allocator->Alloc(size); in Create() local
127 if (resourceMemory != NULL) in Create()
129 resFormData = new(resourceMemory) ResParticleCubeFormData; in Create()
136 void* resourceMemory = allocator->Alloc(size); in Create() local
137 if (resourceMemory != NULL) in Create()
139 resFormData = new(resourceMemory) ResParticleCylinderFormData; in Create()
146 void* resourceMemory = allocator->Alloc(size); in Create() local
147 if (resourceMemory != NULL) in Create()
149 resFormData = new(resourceMemory) ResParticleDiscFormData; in Create()
156 void* resourceMemory = allocator->Alloc(size); in Create() local
157 if (resourceMemory != NULL) in Create()
159 resFormData = new(resourceMemory) ResParticlePointFormData; in Create()
166 void* resourceMemory = allocator->Alloc(size); in Create() local
167 if (resourceMemory != NULL) in Create()
169 resFormData = new(resourceMemory) ResParticleRectangleFormData; in Create()
176 void* resourceMemory = allocator->Alloc(size); in Create() local
177 if (resourceMemory != NULL) in Create()
179 resFormData = new(resourceMemory) ResParticleSphereFormData; in Create()