Home | History | Annotate | Download | only in private

Lines Matching refs:Op

87     // Because op combining is heavily dependent on sequence of draw calls, these calls will only
109 struct Op {
113 SkTArray<Op> fOps;
125 struct Op {
134 typedef SkTArray<std::unique_ptr<Op>, true> OpPool;
136 typedef SkTArray<Op*> Ops;
175 #define GR_AUDIT_TRAIL_ADD_OP(audit_trail, op, rt_id) \
176 GR_AUDIT_TRAIL_INVOKE_GUARD(audit_trail, addOp, op, rt_id);
178 #define GR_AUDIT_TRAIL_OPS_RESULT_COMBINED(audit_trail, combineWith, op) \
179 GR_AUDIT_TRAIL_INVOKE_GUARD(audit_trail, opsCombined, combineWith, op);
181 #define GR_AUDIT_TRAIL_OP_RESULT_NEW(audit_trail, op) // Doesn't do anything now, one day...