/frameworks/rs/cpp/ |
Sampler.cpp | 67 void* id = RS::dispatch->SamplerCreate(rs->getContext(), min, mag, wrapS, wrapT,
|
rsDispatch.cpp | 90 dispatchTab.SamplerCreate = (SamplerCreateFnPtr)dlsym(handle, "rsSamplerCreate"); 319 if (dispatchTab.SamplerCreate == nullptr) { 320 LOG_ERR("Couldn't initialize dispatchTab.SamplerCreate");
|
rsDispatch.h | 202 SamplerCreateFnPtr SamplerCreate;
|
/hardware/interfaces/renderscript/1.0/default/ |
Device.cpp | 146 .SamplerCreate = (SamplerCreateFnPtr)dlsym(handle, "rsSamplerCreate"),
|
Context.cpp | 607 Return<Sampler> Context::samplerCreate(SamplerValue magFilter, SamplerValue minFilter, SamplerValue wrapS, SamplerValue wrapT, SamplerValue wrapR, float aniso) { 614 RsSampler _sampler = Device::getHal().SamplerCreate(mContext, _magFilter, _minFilter, _wrapS, _wrapT, _wrapR, _aniso); [all...] |
/frameworks/rs/ |
rsHidlAdaptation.h | 138 static RsSampler SamplerCreate(RsContext, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, float);
|
rs.spec | 357 SamplerCreate {
|
rsHidlAdaptation.cpp | 140 mEntryFuncs.SamplerCreate = SamplerCreate; 704 RsSampler RsHidlAdaptation::SamplerCreate (RsContext context, 712 uint64_t sampler = GetIContextHandle(context)->samplerCreate((SamplerValue) magFilter, [all...] |
rsApiStubs.cpp | 612 return RS_DISPATCH(ctxWrapper, SamplerCreate, magFilter, minFilter, wrapS, wrapT, wrapR, mAniso); [all...] |
/frameworks/rs/support/jni/ |
android_renderscript_RenderScript.cpp | [all...] |