Home | History | Annotate | Download | only in renderscript

Lines Matching full:slot

45     public void bindConstants(Allocation a, int slot) {
46 mRS.nProgramBindConstants(mID, slot, a.mID);
49 public void bindTexture(Allocation va, int slot)
52 if((slot < 0) || (slot >= mTextureCount)) {
53 throw new IllegalArgumentException("Slot ID out of range.");
56 mRS.nProgramBindTexture(mID, slot, va.mID);
59 public void bindSampler(Sampler vs, int slot)
62 if((slot < 0) || (slot >= mTextureCount)) {
63 throw new IllegalArgumentException("Slot ID out of range.");
66 mRS.nProgramBindSampler(mID, slot, vs.mID);