Home
last modified time | relevance | path

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

/third_party/flutter/skia/bench/
DSkSLInterpreterBench.cpp35 fByteCode = compiler.toByteCode(*program); in onDelayedSetup()
37 fMain = fByteCode->getFunction("main"); in onDelayedSetup()
56 SkAssertResult(fByteCode->runStriped(fMain, args, 4, fCount, in onDraw()
59 SkAssertResult(fByteCode->run(fMain, fPixels.data(), nullptr, fCount, nullptr, 0)); in onDraw()
67 std::unique_ptr<SkSL::ByteCode> fByteCode; member in SkSLInterpreterCFBench
177 fByteCode = compiler.toByteCode(*program); in onDelayedSetup()
179 fMain = fByteCode->getFunction("main"); in onDelayedSetup()
190 SkAssertResult(fByteCode->run(fMain, fSrc.data(), fDst.data(), fGroups, nullptr, 0)); in onDelayedSetup()
200 SkAssertResult(fByteCode->run(fMain, fSrc.data(), fDst.data(), fGroups, nullptr, 0)); in onDraw()
207 std::unique_ptr<SkSL::ByteCode> fByteCode; member in SkSLInterpreterSortBench
/third_party/flutter/skia/src/shaders/
DSkRTShader.cpp60 if (!fByteCode) { in onAppendStages()
69 fByteCode = c.toByteCode(*prog); in onAppendStages()
74 SkASSERT(fByteCode); in onAppendStages()
75 if (!fByteCode->getFunction("main")) { in onAppendStages()
79 ctx->byteCode = fByteCode.get(); in onAppendStages()
DSkRTShader.h46 mutable std::unique_ptr<SkSL::ByteCode> fByteCode; variable
/third_party/flutter/skia/src/core/
DSkColorFilter.cpp414 if (!fByteCode) { in onAppendStages()
423 fByteCode = c.toByteCode(*prog); in onAppendStages()
425 ctx->byteCode = fByteCode.get(); in onAppendStages()
454 mutable std::unique_ptr<SkSL::ByteCode> fByteCode; member in SkRuntimeColorFilter
/third_party/flutter/skia/modules/particles/include/
DSkParticleEffect.h123 std::unique_ptr<SkSL::ByteCode> fByteCode; variable
/third_party/flutter/skia/modules/particles/src/
DSkParticleEffect.cpp394 fByteCode = std::move(byteCode); in rebuild()
454 if (const auto& byteCode = params->fByteCode) { in update()