Home
last modified time | relevance | path

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

/external/skqp/src/sksl/
DSkSLInterpreter.cpp216 Interpreter* fInterpreter; member
223 ctx.fInterpreter->push(Interpreter::Value(ctx.rgba[i * 4 + 0])); in do_callback()
224 ctx.fInterpreter->push(Interpreter::Value(ctx.rgba[i * 4 + 1])); in do_callback()
225 ctx.fInterpreter->push(Interpreter::Value(ctx.rgba[i * 4 + 2])); in do_callback()
226 ctx.fInterpreter->run(*ctx.fFunction); in do_callback()
227 ctx.read_from[i * 4 + 2] = ctx.fInterpreter->pop().fFloat; in do_callback()
228 ctx.read_from[i * 4 + 1] = ctx.fInterpreter->pop().fFloat; in do_callback()
229 ctx.read_from[i * 4 + 0] = ctx.fInterpreter->pop().fFloat; in do_callback()
244 ctx->fInterpreter = this; in appendStage()