Lines Matching refs:resShape

35 typedef void (*SetupFunc)(nw::os::IAllocator* allocator, ResShape resShape);
36 typedef void (*CleanupFunc)(ResShape resShape);
38 static void ResShape_Setup(nw::os::IAllocator* allocator, ResShape resShape);
39 static void ResSeparateDataShape_Setup(nw::os::IAllocator* allocator, ResShape resShape);
40 static void ResParticleShape_Setup(nw::os::IAllocator* allocator, ResShape resShape);
42 static void ResShape_Cleanup(ResShape resShape);
43 static void ResSeparateDataShape_Cleanup(ResShape resShape);
44 static void ResParticleShape_Cleanup(ResShape resShape);
172 ResShape_Setup(nw::os::IAllocator* allocator, ResShape resShape) in ResShape_Setup() argument
174 s32 primSetNum = resShape.GetPrimitiveSetsCount(); in ResShape_Setup()
178 resShape.GetPrimitiveSets( i ).Setup(allocator); in ResShape_Setup()
193 ResSeparateDataShape_Setup(nw::os::IAllocator* allocator, ResShape resShape) in ResSeparateDataShape_Setup() argument
195 ResShape_Setup( allocator, resShape ); in ResSeparateDataShape_Setup()
197 ResSeparateDataShape resSeparateShape = ResStaticCast<ResSeparateDataShape>( resShape ); in ResSeparateDataShape_Setup()
217 ResParticleShape_Setup(nw::os::IAllocator* allocator, ResShape resShape) in ResParticleShape_Setup() argument
219 NW_UNUSED_VARIABLE(resShape); in ResParticleShape_Setup()
344 ResShape_Cleanup(ResShape resShape) in ResShape_Cleanup() argument
346 s32 primSetNum = resShape.GetPrimitiveSetsCount(); in ResShape_Cleanup()
350 resShape.GetPrimitiveSets( i ).Cleanup(); in ResShape_Cleanup()
356 ResSeparateDataShape_Cleanup(ResShape resShape) in ResSeparateDataShape_Cleanup() argument
358 ResSeparateDataShape resSeparateShape = ResStaticCast<ResSeparateDataShape>( resShape ); in ResSeparateDataShape_Cleanup()
367 ResShape_Cleanup( resShape ); in ResSeparateDataShape_Cleanup()
372 ResParticleShape_Cleanup(ResShape resShape) in ResParticleShape_Cleanup() argument
374 ResParticleShape resParticleShape = ResStaticCast<ResParticleShape>( resShape ); in ResParticleShape_Cleanup()