Lines Matching refs:resourceMemory
103 void* resourceMemory = allocator->Alloc(sizeof(ResParticleEmitterParameterData)); in Create() local
104 if (resourceMemory == NULL) in Create()
109 resParameterData = new(resourceMemory) ResParticleEmitterParameterData; in Create()
128 void* resourceMemory = allocator->Alloc(size); in Create() local
129 if (resourceMemory != NULL) in Create()
131 resFormData = new(resourceMemory) ResParticleCubeFormData; in Create()
138 void* resourceMemory = allocator->Alloc(size); in Create() local
139 if (resourceMemory != NULL) in Create()
141 resFormData = new(resourceMemory) ResParticleCylinderFormData; in Create()
148 void* resourceMemory = allocator->Alloc(size); in Create() local
149 if (resourceMemory != NULL) in Create()
151 resFormData = new(resourceMemory) ResParticleDiscFormData; in Create()
158 void* resourceMemory = allocator->Alloc(size); in Create() local
159 if (resourceMemory != NULL) in Create()
161 resFormData = new(resourceMemory) ResParticlePointFormData; in Create()
168 void* resourceMemory = allocator->Alloc(size); in Create() local
169 if (resourceMemory != NULL) in Create()
171 resFormData = new(resourceMemory) ResParticleRectangleFormData; in Create()
178 void* resourceMemory = allocator->Alloc(size); in Create() local
179 if (resourceMemory != NULL) in Create()
181 resFormData = new(resourceMemory) ResParticleSphereFormData; in Create()