95e3c058ef
* SkAutoFree moved to SkTemplates.h (now implmented with unique_ptr).
* SkAutoMalloc and SkAutoSMalloc moved to SkAutoMalloc.h
* "SkAutoFree X(sk_malloc_throw(N));" --> "SkAutoMalloc X(N);"
Revert "Revert 'SkTypes.h : move SkAutoMalloc into SkAutoMalloc.h'"
This reverts commit c456b73fef
.
Change-Id: Ie2c1a17c20134b8ceab85a68b3ae3e61c24fbaab
Reviewed-on: https://skia-review.googlesource.com/6886
Reviewed-by: Hal Canary <halcanary@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef AndroidCodecBench_DEFINED
|
|
#define AndroidCodecBench_DEFINED
|
|
|
|
#include "Benchmark.h"
|
|
#include "SkAutoMalloc.h"
|
|
#include "SkData.h"
|
|
#include "SkImageInfo.h"
|
|
#include "SkRefCnt.h"
|
|
#include "SkString.h"
|
|
|
|
/**
|
|
* Time SkAndroidCodec.
|
|
*/
|
|
class AndroidCodecBench : public Benchmark {
|
|
public:
|
|
// Calls encoded->ref()
|
|
AndroidCodecBench(SkString basename, SkData* encoded, int sampleSize);
|
|
|
|
protected:
|
|
const char* onGetName() override;
|
|
bool isSuitableFor(Backend backend) override;
|
|
void onDraw(int n, SkCanvas* canvas) override;
|
|
void onDelayedSetup() override;
|
|
|
|
private:
|
|
SkString fName;
|
|
sk_sp<SkData> fData;
|
|
const int fSampleSize;
|
|
SkImageInfo fInfo; // Set in onDelayedSetup.
|
|
SkAutoMalloc fPixelStorage; // Set in onDelayedSetup.
|
|
typedef Benchmark INHERITED;
|
|
};
|
|
#endif // AndroidCodecBench_DEFINED
|