Lines Matching refs:resShape
37 typedef void (*SetupFunc)(nw::os::IAllocator* allocator, ResShape resShape);
38 typedef void (*CleanupFunc)(ResShape resShape);
40 static void ResShape_Setup(nw::os::IAllocator* allocator, ResShape resShape);
41 static void ResSeparateDataShape_Setup(nw::os::IAllocator* allocator, ResShape resShape);
42 static void ResParticleShape_Setup(nw::os::IAllocator* allocator, ResShape resShape);
44 static void ResShape_Cleanup(ResShape resShape);
45 static void ResSeparateDataShape_Cleanup(ResShape resShape);
46 static void ResParticleShape_Cleanup(ResShape resShape);
173 ResShape_Setup(nw::os::IAllocator* allocator, ResShape resShape) in ResShape_Setup() argument
175 s32 primSetNum = resShape.GetPrimitiveSetsCount(); in ResShape_Setup()
179 resShape.GetPrimitiveSets( i ).Setup(allocator); in ResShape_Setup()
194 ResSeparateDataShape_Setup(nw::os::IAllocator* allocator, ResShape resShape) in ResSeparateDataShape_Setup() argument
196 ResShape_Setup( allocator, resShape ); in ResSeparateDataShape_Setup()
198 ResSeparateDataShape resSeparateShape = ResStaticCast<ResSeparateDataShape>( resShape ); in ResSeparateDataShape_Setup()
218 ResParticleShape_Setup(nw::os::IAllocator* allocator, ResShape resShape) in ResParticleShape_Setup() argument
220 NW_UNUSED_VARIABLE(resShape); in ResParticleShape_Setup()
345 ResShape_Cleanup(ResShape resShape) in ResShape_Cleanup() argument
347 s32 primSetNum = resShape.GetPrimitiveSetsCount(); in ResShape_Cleanup()
351 resShape.GetPrimitiveSets( i ).Cleanup(); in ResShape_Cleanup()
357 ResSeparateDataShape_Cleanup(ResShape resShape) in ResSeparateDataShape_Cleanup() argument
359 ResSeparateDataShape resSeparateShape = ResStaticCast<ResSeparateDataShape>( resShape ); in ResSeparateDataShape_Cleanup()
368 ResShape_Cleanup( resShape ); in ResSeparateDataShape_Cleanup()
373 ResParticleShape_Cleanup(ResShape resShape) in ResParticleShape_Cleanup() argument
375 ResParticleShape resParticleShape = ResStaticCast<ResParticleShape>( resShape ); in ResParticleShape_Cleanup()