OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkDebuggerGUI.h" | 8 #include "SkDebuggerGUI.h" |
9 #include "SkPicture.h" | 9 #include "SkPicture.h" |
10 #include <QListWidgetItem> | 10 #include <QListWidgetItem> |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 fInspectorWidget.setText(clipStack.c_str(), SkInspectorWidget::kClipStack_Ta
bType); | 274 fInspectorWidget.setText(clipStack.c_str(), SkInspectorWidget::kClipStack_Ta
bType); |
275 | 275 |
276 fInspectorWidget.setMatrix(fDebugger.getCurrentMatrix()); | 276 fInspectorWidget.setMatrix(fDebugger.getCurrentMatrix()); |
277 fInspectorWidget.setClip(fDebugger.getCurrentClip()); | 277 fInspectorWidget.setClip(fDebugger.getCurrentClip()); |
278 } | 278 } |
279 | 279 |
280 void SkDebuggerGUI::saveToFile(const SkString& filename) { | 280 void SkDebuggerGUI::saveToFile(const SkString& filename) { |
281 SkFILEWStream file(filename.c_str()); | 281 SkFILEWStream file(filename.c_str()); |
282 SkAutoTUnref<SkPicture> copy(fDebugger.copyPicture()); | 282 SkAutoTUnref<SkPicture> copy(fDebugger.copyPicture()); |
283 | 283 |
284 SkAutoTUnref<SkPixelSerializer> serializer( | 284 sk_tool_utils::PngPixelSerializer serializer; |
285 SkImageEncoder::CreatePixelSerializer()); | 285 copy->serialize(&file, &serializer); |
286 copy->serialize(&file, serializer); | |
287 } | 286 } |
288 | 287 |
289 void SkDebuggerGUI::loadFile(QListWidgetItem *item) { | 288 void SkDebuggerGUI::loadFile(QListWidgetItem *item) { |
290 if (item == nullptr) { | 289 if (item == nullptr) { |
291 return; | 290 return; |
292 } | 291 } |
293 | 292 |
294 SkString fileName(fPath.toAscii().data()); | 293 SkString fileName(fPath.toAscii().data()); |
295 // don't add a '/' to files in the local directory | 294 // don't add a '/' to files in the local directory |
296 if (fileName.size() > 0) { | 295 if (fileName.size() > 0) { |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 fCanvasWidget.drawTo(fPausedRow); | 794 fCanvasWidget.drawTo(fPausedRow); |
796 } else { | 795 } else { |
797 fCanvasWidget.drawTo(fListWidget.currentRow()); | 796 fCanvasWidget.drawTo(fListWidget.currentRow()); |
798 } | 797 } |
799 } | 798 } |
800 | 799 |
801 void SkDebuggerGUI::updateHit(int newHit) { | 800 void SkDebuggerGUI::updateHit(int newHit) { |
802 fCommandHitBox.setText(QString::number(newHit)); | 801 fCommandHitBox.setText(QString::number(newHit)); |
803 } | 802 } |
804 | 803 |
OLD | NEW |