Lines Matching defs:GrOp
8 #include "src/gpu/ops/GrOp.h"
10 std::atomic<uint32_t> GrOp::gCurrOpClassID {GrOp::kIllegalOpID + 1};
11 std::atomic<uint32_t> GrOp::gCurrOpUniqueID{GrOp::kIllegalOpID + 1};
13 GrOp::GrOp(uint32_t classID) : fClassID(classID) {
19 GrOp::CombineResult GrOp::combineIfPossible(GrOp* that, SkArenaAlloc* alloc, const GrCaps& caps) {
31 void GrOp::chainConcat(GrOp::Owner next) {
40 GrOp::Owner GrOp::cutChain() {
49 void GrOp::validateChain(GrOp* expectedTail) const {
52 const GrOp* op = this;