blob: 1ad5cc755503edb2edeeb1a43f4507bf9a5ac930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_SCOPED_RESOURCE_H_
#define CC_SCOPED_RESOURCE_H_
#include "base/basictypes.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "cc/cc_export.h"
#include "cc/resource.h"
#ifndef NDEBUG
#include "base/threading/platform_thread.h"
#endif
namespace cc {
class CC_EXPORT ScopedResource : protected Resource {
public:
static scoped_ptr<ScopedResource> create(ResourceProvider* resourceProvider) { return make_scoped_ptr(new ScopedResource(resourceProvider)); }
virtual ~ScopedResource();
using Resource::id;
using Resource::size;
using Resource::format;
using Resource::bytes;
bool allocate(int pool, const gfx::Size&, GLenum format, ResourceProvider::TextureUsageHint);
void free();
void leak();
protected:
explicit ScopedResource(ResourceProvider*);
private:
ResourceProvider* m_resourceProvider;
#ifndef NDEBUG
base::PlatformThreadId m_allocateThreadIdentifier;
#endif
DISALLOW_COPY_AND_ASSIGN(ScopedResource);
};
}
#endif // CC_SCOPED_RESOURCE_H_
|