done Image XObject handler (Do operator)
This commit is contained in:
@@ -15,6 +15,9 @@ public:
|
||||
void visit(const SetTransformCommand& cmd) override { calls.push_back("SetTransform(" + std::to_string(cmd.matrix.a) + ")"); }
|
||||
void visit(const FillRectCommand& cmd) override { calls.push_back("FillRect(" + std::to_string(cmd.width) + ")"); }
|
||||
void visit(const DrawTextCommand& cmd) override { calls.push_back("DrawText(" + cmd.text + ")"); }
|
||||
void visit(const FillPathCommand&) override { calls.push_back("FillPath"); }
|
||||
void visit(const StrokePathCommand&) override { calls.push_back("StrokePath"); }
|
||||
void visit(const DrawImageCommand&) override { calls.push_back("DrawImage"); }
|
||||
};
|
||||
|
||||
TEST(DisplayListTest, RecordAndReplay) {
|
||||
|
||||
Reference in New Issue
Block a user