Home
last modified time | relevance | path

Searched refs:gatherF (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/modules/particles/src/
DSkParticleBinding.cpp74 outResult[0] = builder->gatherF(ptr, (index<<2)+0); in call()
75 outResult[1] = builder->gatherF(ptr, (index<<2)+1); in call()
76 outResult[2] = builder->gatherF(ptr, (index<<2)+2); in call()
77 outResult[3] = builder->gatherF(ptr, (index<<2)+3); in call()
/third_party/skia/src/shaders/gradients/
DSkGradientShader.cpp570 skvm::F32 Fr = gatherF(fbs, ix + 0); in onProgram()
571 skvm::F32 Fg = gatherF(fbs, ix + 1); in onProgram()
572 skvm::F32 Fb = gatherF(fbs, ix + 2); in onProgram()
573 skvm::F32 Fa = gatherF(fbs, ix + 3); in onProgram()
575 skvm::F32 Br = gatherF(fbs, ix + 4); in onProgram()
576 skvm::F32 Bg = gatherF(fbs, ix + 5); in onProgram()
577 skvm::F32 Bb = gatherF(fbs, ix + 6); in onProgram()
578 skvm::F32 Ba = gatherF(fbs, ix + 7); in onProgram()
/third_party/skia/src/core/
DSkVM.h679 F32 gatherF (UPtr ptr, int offset, I32 index) { in gatherF() function
689 F32 gatherF (Uniform u, I32 index) { return this->gatherF (u.ptr, u.offset, index); } in gatherF() function
1202 SI F32 gatherF (UPtr ptr, int off, I32 ix) { return ix->gatherF (ptr, off, ix); } in gatherF() function
1207 SI F32 gatherF (Uniform u, I32 ix) { return ix->gatherF (u, ix); } in gatherF() function
DSkVM.cpp1344 gatherF(ptr, offset, (index<<2)+0), in gather()
1345 gatherF(ptr, offset, (index<<2)+1), in gather()
1346 gatherF(ptr, offset, (index<<2)+2), in gather()
1347 gatherF(ptr, offset, (index<<2)+3), in gather()
/third_party/skia/tests/
DSkSLInterpreterTest.cpp937 outResult[0] = b->gatherF(fAddr, index); in call()