Lines Matching refs:resTextureMapper
27 typedef Result (*SetupFunc)(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResGraphi…
28 typedef void (*CleanupFunc)(ResTextureMapper resTextureMapper);
29 typedef ResTextureMapper (*CloneDynamicFunc)(ResTextureMapper resTextureMapper, os::IAllocator* all…
30 typedef void (*DestroyDynamicFunc)(ResTextureMapper resTextureMapper, os::IAllocator* allocator);
32 static Result ResPixelBasedTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* a…
33 static Result ResProceduralTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* a…
34 static void ResPixelBasedTextureMapper_Cleanup(ResTextureMapper resTextureMapper);
35 static void ResProceduralTextureMapper_Cleanup(ResTextureMapper resTextureMapper);
36 static ResTextureMapper ResPixelBasedTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, …
37 static ResTextureMapper ResProceduralTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, …
38 static void ResPixelBasedTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAlloc…
39 static void ResProceduralTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAlloc…
127 ResPixelBasedTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResG… in ResPixelBasedTextureMapper_Setup() argument
130 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_Setup()
131 ResTexture resTexture = resTextureMapper.GetTexture(); in ResPixelBasedTextureMapper_Setup()
168 ResProceduralTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResG… in ResProceduralTextureMapper_Setup() argument
170 return SetupTexture(allocator, resTextureMapper.GetTexture(), graphicsFile); in ResProceduralTextureMapper_Setup()
179 ResPixelBasedTextureMapper_Cleanup(ResTextureMapper resTextureMapper) in ResPixelBasedTextureMapper_Cleanup() argument
182 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_Cleanup()
186 ResTexture resTexture = resTextureMapper.GetTexture(); in ResPixelBasedTextureMapper_Cleanup()
196 ResProceduralTextureMapper_Cleanup(ResTextureMapper resTextureMapper) in ResProceduralTextureMapper_Cleanup() argument
198 ResTexture resTexture = resTextureMapper.GetTexture(); in ResProceduralTextureMapper_Cleanup()
209 ResPixelBasedTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, os::IAllocator* allocato… in ResPixelBasedTextureMapper_CloneDynamic() argument
214 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_CloneDynamic()
272 ResProceduralTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, os::IAllocator* allocato… in ResProceduralTextureMapper_CloneDynamic() argument
277 ResStaticCast<ResProceduralTextureMapper>(resTextureMapper); in ResProceduralTextureMapper_CloneDynamic()
316 ResPixelBasedTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAllocator* alloca… in ResPixelBasedTextureMapper_DestroyDynamic() argument
319 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_DestroyDynamic()
341 ResProceduralTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAllocator* alloca… in ResProceduralTextureMapper_DestroyDynamic() argument
344 ResStaticCast<ResProceduralTextureMapper>(resTextureMapper); in ResProceduralTextureMapper_DestroyDynamic()
359 ResTextureMapper resTextureMapper; in CloneDynamic() local
364 resTextureMapper = s_TextureMapperCloneDynamicTable[0]( *this, allocator ); in CloneDynamic()
369 resTextureMapper = s_TextureMapperCloneDynamicTable[1]( *this, allocator ); in CloneDynamic()
378 if (resTextureMapper.IsValid()) in CloneDynamic()
380 resTextureMapper.ref().m_DynamicAllocator = allocator; in CloneDynamic()
383 return resTextureMapper; in CloneDynamic()