732bd66ac2
BUG=skia:2378 R=reed@google.com, danakj@chromium.org, enne@chromium.org, mtklein@google.com, robertphillips@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/248033002 git-svn-id: http://skia.googlecode.com/svn/trunk@14351 2bbb7eff-a529-9590-31e7-b0007b416f81
30 lines
794 B
C++
30 lines
794 B
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Test.h"
|
|
|
|
#include "SkRecording.h"
|
|
|
|
// Minimally exercise the public SkRecording API.
|
|
|
|
DEF_TEST(RecordingTest, r) {
|
|
EXPERIMENTAL::SkRecording recording(1920, 1080);
|
|
|
|
// Some very exciting commands here.
|
|
recording.canvas()->clipRect(SkRect::MakeWH(320, 240));
|
|
|
|
SkAutoTDelete<const EXPERIMENTAL::SkPlayback> playback(recording.releasePlayback());
|
|
|
|
SkCanvas target;
|
|
playback->draw(&target);
|
|
|
|
// Here's another recording we never call releasePlayback().
|
|
// However pointless, this should be safe.
|
|
EXPERIMENTAL::SkRecording pointless(1920, 1080);
|
|
pointless.canvas()->clipRect(SkRect::MakeWH(320, 240));
|
|
}
|