OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:updateCachedObject
(Results
1 - 6
of
6
) sorted by null
/frameworks/rs/
rsDriverLoader.cpp
75
ret &= fn(RS_HAL_SCRIPT_UPDATE_CACHED_OBJECT, (void **)&rsc->mHal.funcs.script.
updateCachedObject
);
102
ret &= fn(RS_HAL_ALLOCATION_UPDATE_CACHED_OBJECT, (void **)&rsc->mHal.funcs.allocation.
updateCachedObject
);
111
ret &= fn(RS_HAL_SAMPLER_UPDATE_CACHED_OBJECT, (void **)&rsc->mHal.funcs.sampler.
updateCachedObject
);
115
ret &= fn(RS_HAL_TYPE_UPDATE_CACHED_OBJECT, (void **)&rsc->mHal.funcs.type.
updateCachedObject
);
119
ret &= fn(RS_HAL_ELEMENT_UPDATE_CACHED_OBJECT, (void **)&rsc->mHal.funcs.element.
updateCachedObject
);
123
ret &= fn(RS_HAL_SCRIPT_GROUP_UPDATE_CACHED_OBJECT, (void **)&rsc->mHal.funcs.scriptgroup.
updateCachedObject
);
rs_hal.h
217
void (*
updateCachedObject
)(const Context *rsc, const Script *, rs_script *obj);
304
void (*
updateCachedObject
)(const Context *rsc, const Allocation *alloc, rs_allocation *obj);
355
void (*
updateCachedObject
)(const Context *rsc, const Sampler *s, rs_sampler *obj);
372
void (*
updateCachedObject
)(const Context *rsc, const ScriptGroup *sg, rs_script_group *obj);
378
void (*
updateCachedObject
)(const Context *rsc, const Type *s, rs_type *obj);
384
void (*
updateCachedObject
)(const Context *rsc, const Element *s, rs_element *obj);
rsScript.cpp
109
if (rsc->mHal.funcs.script.
updateCachedObject
!= nullptr) {
110
rsc->mHal.funcs.script.
updateCachedObject
(rsc, this, (rs_script *)dstObj);
rsElement.cpp
395
if (rsc->mHal.funcs.element.
updateCachedObject
!= nullptr) {
396
rsc->mHal.funcs.element.
updateCachedObject
(rsc, this, (rs_element *)dstObj);
rsType.cpp
352
if (rsc->mHal.funcs.type.
updateCachedObject
!= nullptr) {
353
rsc->mHal.funcs.type.
updateCachedObject
(rsc, this, (rs_type *)dstObj);
rsAllocation.cpp
533
if (rsc->mHal.funcs.allocation.
updateCachedObject
!= nullptr) {
534
rsc->mHal.funcs.allocation.
updateCachedObject
(rsc, this, (rs_allocation *)dstObj);
[
all
...]
Completed in 499 milliseconds