Lines Matching refs:slot

567 extern "C" RsScriptKernelID rsScriptKernelIDCreate (RsContext ctxWrapper, RsScript sid, int slot, int sig)
569 return RS_DISPATCH(ctxWrapper, ScriptKernelIDCreate, sid, slot, sig);
572 extern "C" RsScriptFieldID rsScriptFieldIDCreate (RsContext ctxWrapper, RsScript sid, int slot)
574 return RS_DISPATCH(ctxWrapper, ScriptFieldIDCreate, sid, slot);
624 extern "C" void rsScriptBindAllocation (RsContext ctxWrapper, RsScript vtm, RsAllocation va, uint32_t slot)
626 RS_DISPATCH(ctxWrapper, ScriptBindAllocation, vtm, va, slot);
634 extern "C" RsScriptInvokeID rsScriptInvokeIDCreate (RsContext ctxWrapper, RsScript s, uint32_t slot)
636 return RS_DISPATCH(ctxWrapper, ScriptInvokeIDCreate, s, slot);
639 extern "C" void rsScriptInvoke (RsContext ctxWrapper, RsScript s, uint32_t slot)
641 RS_DISPATCH(ctxWrapper, ScriptInvoke, s, slot);
644 extern "C" void rsScriptInvokeV (RsContext ctxWrapper, RsScript s, uint32_t slot, const void * data, size_t data_length)
646 RS_DISPATCH(ctxWrapper, ScriptInvokeV, s, slot, data, data_length);
649 extern "C" void rsScriptForEach (RsContext ctxWrapper, RsScript s, uint32_t slot,
654 RS_DISPATCH(ctxWrapper, ScriptForEach, s, slot, ain, aout, usr, usr_length, sc, sc_length);
657 extern "C" void rsScriptForEachMulti (RsContext ctxWrapper, RsScript s, uint32_t slot,
662 RS_DISPATCH(ctxWrapper, ScriptForEachMulti, s, slot, ains, ains_length, aout, usr, usr_length, sc, sc_length);
665 extern "C" void rsScriptReduce (RsContext ctxWrapper, RsScript s, uint32_t slot,
669 RS_DISPATCH(ctxWrapper, ScriptReduce, s, slot, ains, ains_length, aout, sc, sc_length);
672 extern "C" void rsScriptSetVarI (RsContext ctxWrapper, RsScript s, uint32_t slot, int value)
674 RS_DISPATCH(ctxWrapper, ScriptSetVarI, s, slot, value);
677 extern "C" void rsScriptSetVarObj (RsContext ctxWrapper, RsScript s, uint32_t slot, RsObjectBase value)
679 RS_DISPATCH(ctxWrapper, ScriptSetVarObj, s, slot, value);
682 extern "C" void rsScriptSetVarJ (RsContext ctxWrapper, RsScript s, uint32_t slot, int64_t value)
684 RS_DISPATCH(ctxWrapper, ScriptSetVarJ, s, slot, value);
687 extern "C" void rsScriptSetVarF (RsContext ctxWrapper, RsScript s, uint32_t slot, float value)
689 RS_DISPATCH(ctxWrapper, ScriptSetVarF, s, slot, value);
692 extern "C" void rsScriptSetVarD (RsContext ctxWrapper, RsScript s, uint32_t slot, double value)
694 RS_DISPATCH(ctxWrapper, ScriptSetVarD, s, slot, value);
697 extern "C" void rsScriptSetVarV (RsContext ctxWrapper, RsScript s, uint32_t slot,
700 RS_DISPATCH(ctxWrapper, ScriptSetVarV, s, slot, data, data_length);
703 extern "C" void rsScriptGetVarV (RsContext ctxWrapper, RsScript s, uint32_t slot,
706 RS_DISPATCH(ctxWrapper, ScriptGetVarV, s, slot, data, data_length);
709 extern "C" void rsScriptSetVarVE (RsContext ctxWrapper, RsScript s, uint32_t slot,
713 RS_DISPATCH(ctxWrapper, ScriptSetVarVE, s, slot, data, data_length, e, dims, dims_length);
848 extern "C" void rsProgramBindConstants (RsContext ctxWrapper, RsProgram vp, uint32_t slot, RsAllocation constants)
850 RS_DISPATCH(ctxWrapper, ProgramBindConstants, vp, slot, constants);
853 extern "C" void rsProgramBindTexture (RsContext ctxWrapper, RsProgramFragment pf, uint32_t slot, RsAllocation a)
855 RS_DISPATCH(ctxWrapper, ProgramBindTexture, pf, slot,a);
858 extern "C" void rsProgramBindSampler (RsContext ctxWrapper, RsProgramFragment pf, uint32_t slot, RsSampler s)
860 RS_DISPATCH(ctxWrapper, ProgramBindSampler, pf, slot, s);