Searched refs:updateCachedObject (Results 1 – 5 of 5) sorted by relevance
/frameworks/rs/ |
D | rs_hal.h | 161 void (*updateCachedObject)(const Context *rsc, const Script *, rs_script *obj); member 244 void (*updateCachedObject)(const Context *rsc, const Allocation *alloc, rs_allocation *obj); member 293 void (*updateCachedObject)(const Context *rsc, const Sampler *s, rs_sampler *obj); member 310 void (*updateCachedObject)(const Context *rsc, const ScriptGroup *sg, rs_script_group *obj); member 316 void (*updateCachedObject)(const Context *rsc, const Type *s, rs_type *obj); member 322 void (*updateCachedObject)(const Context *rsc, const Element *s, rs_element *obj); member
|
D | rsScript.cpp | 98 if (rsc->mHal.funcs.script.updateCachedObject != NULL) { in callUpdateCacheObject() 99 rsc->mHal.funcs.script.updateCachedObject(rsc, this, (rs_script *)dstObj); in callUpdateCacheObject()
|
D | rsType.cpp | 318 if (rsc->mHal.funcs.type.updateCachedObject != NULL) { in callUpdateCacheObject() 319 rsc->mHal.funcs.type.updateCachedObject(rsc, this, (rs_type *)dstObj); in callUpdateCacheObject()
|
D | rsElement.cpp | 393 if (rsc->mHal.funcs.element.updateCachedObject != NULL) { in callUpdateCacheObject() 394 rsc->mHal.funcs.element.updateCachedObject(rsc, this, (rs_element *)dstObj); in callUpdateCacheObject()
|
D | rsAllocation.cpp | 442 if (rsc->mHal.funcs.allocation.updateCachedObject != NULL) { in callUpdateCacheObject() 443 rsc->mHal.funcs.allocation.updateCachedObject(rsc, this, (rs_allocation *)dstObj); in callUpdateCacheObject()
|