Lines Matching refs:resTextureMapper
29 typedef Result (*SetupFunc)(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResGraphi…
30 typedef void (*CleanupFunc)(ResTextureMapper resTextureMapper);
31 typedef ResTextureMapper (*CloneDynamicFunc)(ResTextureMapper resTextureMapper, os::IAllocator* all…
32 typedef void (*DestroyDynamicFunc)(ResTextureMapper resTextureMapper, os::IAllocator* allocator);
34 static Result ResPixelBasedTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* a…
35 static Result ResProceduralTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* a…
36 static void ResPixelBasedTextureMapper_Cleanup(ResTextureMapper resTextureMapper);
37 static void ResProceduralTextureMapper_Cleanup(ResTextureMapper resTextureMapper);
38 static ResTextureMapper ResPixelBasedTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, …
39 static ResTextureMapper ResProceduralTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, …
40 static void ResPixelBasedTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAlloc…
41 static void ResProceduralTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAlloc…
129 ResPixelBasedTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResG… in ResPixelBasedTextureMapper_Setup() argument
132 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_Setup()
133 ResTexture resTexture = resTextureMapper.GetTexture(); in ResPixelBasedTextureMapper_Setup()
170 ResProceduralTextureMapper_Setup(ResTextureMapper resTextureMapper, os::IAllocator* allocator, ResG… in ResProceduralTextureMapper_Setup() argument
172 return SetupTexture(allocator, resTextureMapper.GetTexture(), graphicsFile); in ResProceduralTextureMapper_Setup()
181 ResPixelBasedTextureMapper_Cleanup(ResTextureMapper resTextureMapper) in ResPixelBasedTextureMapper_Cleanup() argument
184 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_Cleanup()
188 ResTexture resTexture = resTextureMapper.GetTexture(); in ResPixelBasedTextureMapper_Cleanup()
198 ResProceduralTextureMapper_Cleanup(ResTextureMapper resTextureMapper) in ResProceduralTextureMapper_Cleanup() argument
200 ResTexture resTexture = resTextureMapper.GetTexture(); in ResProceduralTextureMapper_Cleanup()
211 ResPixelBasedTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, os::IAllocator* allocato… in ResPixelBasedTextureMapper_CloneDynamic() argument
216 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_CloneDynamic()
274 ResProceduralTextureMapper_CloneDynamic(ResTextureMapper resTextureMapper, os::IAllocator* allocato… in ResProceduralTextureMapper_CloneDynamic() argument
279 ResStaticCast<ResProceduralTextureMapper>(resTextureMapper); in ResProceduralTextureMapper_CloneDynamic()
318 ResPixelBasedTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAllocator* alloca… in ResPixelBasedTextureMapper_DestroyDynamic() argument
321 ResStaticCast<ResPixelBasedTextureMapper>(resTextureMapper); in ResPixelBasedTextureMapper_DestroyDynamic()
343 ResProceduralTextureMapper_DestroyDynamic(ResTextureMapper resTextureMapper, os::IAllocator* alloca… in ResProceduralTextureMapper_DestroyDynamic() argument
346 ResStaticCast<ResProceduralTextureMapper>(resTextureMapper); in ResProceduralTextureMapper_DestroyDynamic()
361 ResTextureMapper resTextureMapper; in CloneDynamic() local
366 resTextureMapper = s_TextureMapperCloneDynamicTable[0]( *this, allocator ); in CloneDynamic()
371 resTextureMapper = s_TextureMapperCloneDynamicTable[1]( *this, allocator ); in CloneDynamic()
380 if (resTextureMapper.IsValid()) in CloneDynamic()
382 resTextureMapper.ref().m_DynamicAllocator = allocator; in CloneDynamic()
385 return resTextureMapper; in CloneDynamic()