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…
95 ResPixelBasedTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResG… in ResPixelBasedTextureMapper_Setup() argument
98 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_Setup()
99 ResTexture resTexture = resTextureMapper.GetTexture(); in ResPixelBasedTextureMapper_Setup()
136 ResProceduralTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResG… in ResProceduralTextureMapper_Setup() argument
138 return SetupTexture(allocator, resTextureMapper.GetTexture(), graphicsFile); in ResProceduralTextureMapper_Setup()
147 ResPixelBasedTextureMapper_Cleanup(ResTextureMapper resTextureMapper) in ResPixelBasedTextureMapper_Cleanup() argument
150 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_Cleanup()
154 ResTexture resTexture = resTextureMapper.GetTexture(); in ResPixelBasedTextureMapper_Cleanup()
164 ResProceduralTextureMapper_Cleanup(ResTextureMapper resTextureMapper) in ResProceduralTextureMapper_Cleanup() argument
166 ResTexture resTexture = resTextureMapper.GetTexture(); in ResProceduralTextureMapper_Cleanup()
177 ResPixelBasedTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, os::IAllocator* allocato… in ResPixelBasedTextureMapper_CloneDynamic() argument
182 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_CloneDynamic()
240 ResProceduralTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, os::IAllocator* allocato… in ResProceduralTextureMapper_CloneDynamic() argument
245 ResStaticCast<ResProceduralTextureMapper>(resTextureMapper); in ResProceduralTextureMapper_CloneDynamic()
284 ResPixelBasedTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAllocator* alloca… in ResPixelBasedTextureMapper_DestroyDynamic() argument
287 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_DestroyDynamic()
309 ResProceduralTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAllocator* alloca… in ResProceduralTextureMapper_DestroyDynamic() argument
312 ResStaticCast<ResProceduralTextureMapper>(resTextureMapper); in ResProceduralTextureMapper_DestroyDynamic()
327 ResTextureMapper resTextureMapper; in CloneDynamic() local
332 resTextureMapper = s_TextureMapperCloneDynamicTable[0]( *this, allocator ); in CloneDynamic()
337 resTextureMapper = s_TextureMapperCloneDynamicTable[1]( *this, allocator ); in CloneDynamic()
346 if (resTextureMapper.IsValid()) in CloneDynamic()
348 resTextureMapper.ref().m_DynamicAllocator = allocator; in CloneDynamic()
351 return resTextureMapper; in CloneDynamic()