blob: a549c46e2647b165edc21bbc766e55ee5e612c90 [file] [log] [blame]
scroggo@google.comd9ef3a22013-03-15 18:08:09 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkPurgeableMemoryBlock.h"
9
10SkPurgeableMemoryBlock* SkPurgeableMemoryBlock::Create(size_t size) {
11 SkASSERT(IsSupported());
12 if (!IsSupported()) {
13 return NULL;
14 }
15 return SkNEW_ARGS(SkPurgeableMemoryBlock, (size));
16}