blob: 9330abba495f596fa82b7a0c89a7d1fc5f672c3b [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com8fe72472011-03-30 21:26:44 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
bsalomon@google.com8fe72472011-03-30 21:26:44 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.com8fe72472011-03-30 21:26:44 +000010#ifndef GrResource_DEFINED
11#define GrResource_DEFINED
12
13#include "GrRefCnt.h"
14
bsalomon@google.com42619d82012-12-03 14:54:59 +000015#include "SkTInternalLList.h"
robertphillips@google.com9474ed02012-09-04 13:34:32 +000016
bsalomon@google.com8fe72472011-03-30 21:26:44 +000017class GrGpu;
bsalomon@google.comf7b5c1e2011-11-15 19:42:07 +000018class GrContext;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000019class GrResourceEntry;
bsalomon@google.com8fe72472011-03-30 21:26:44 +000020
bsalomon@google.com76b7fcc2012-04-27 17:24:09 +000021/**
22 * Base class for the GPU resources created by a GrContext.
23 */
bsalomon@google.com8fe72472011-03-30 21:26:44 +000024class GrResource : public GrRefCnt {
25public:
robertphillips@google.com4d73ac22012-06-13 18:54:08 +000026 SK_DECLARE_INST_COUNT(GrResource)
robertphillips@google.com977b9c82012-06-05 19:35:09 +000027
bsalomon@google.com8fe72472011-03-30 21:26:44 +000028 /**
29 * Frees the resource in the underlying 3D API. It must be safe to call this
30 * when the resource has been previously abandoned.
31 */
32 void release();
33
34 /**
35 * Removes references to objects in the underlying 3D API without freeing
36 * them. Used when the API context has been torn down before the GrContext.
37 */
38 void abandon();
39
40 /**
41 * Tests whether a resource has been abandoned or released. All resources
42 * will be in this state after their creating GrContext is destroyed or has
43 * contextLost called. It's up to the client to test isValid() before
44 * attempting to use a resource if it holds refs on resources across
45 * ~GrContext, freeResources with the force flag, or contextLost.
46 *
47 * @return true if the resource has been released or abandoned,
48 * false otherwise.
49 */
50 bool isValid() const { return NULL != fGpu; }
51
bsalomon@google.comcee661a2011-07-26 12:32:36 +000052 /**
53 * Retrieves the size of the object in GPU memory. This is approximate since
54 * we aren't aware of additional padding or copies made by the driver.
55 *
56 * @return the size of the buffer in bytes
57 */
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000058 virtual size_t sizeInBytes() const = 0;
bsalomon@google.comcee661a2011-07-26 12:32:36 +000059
bsalomon@google.comf7b5c1e2011-11-15 19:42:07 +000060 /**
61 * Retrieves the context that owns the resource. Note that it is possible
62 * for this to return NULL. When resources have been release()ed or
bsalomon@google.com76b7fcc2012-04-27 17:24:09 +000063 * abandon()ed they no longer have an owning context. Destroying a
bsalomon@google.comf7b5c1e2011-11-15 19:42:07 +000064 * GrContext automatically releases all its resources.
65 */
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +000066 const GrContext* getContext() const;
67 GrContext* getContext();
68
69 void setCacheEntry(GrResourceEntry* cacheEntry) { fCacheEntry = cacheEntry; }
70 GrResourceEntry* getCacheEntry() { return fCacheEntry; }
bsalomon@google.comf7b5c1e2011-11-15 19:42:07 +000071
bsalomon@google.com8fe72472011-03-30 21:26:44 +000072protected:
bsalomon@google.com72830222013-01-23 20:25:22 +000073 /**
74 * isWrapped indicates we have wrapped a client-created backend resource in a GrResource. If it
75 * is true then the client is responsible for the lifetime of the underlying backend resource.
76 * Otherwise, our onRelease() should free the resource.
77 */
78 GrResource(GrGpu* gpu, bool isWrapped);
bsalomon@google.com76b7fcc2012-04-27 17:24:09 +000079 virtual ~GrResource();
80
81 GrGpu* getGpu() const { return fGpu; }
bsalomon@google.com8fe72472011-03-30 21:26:44 +000082
robertphillips@google.comd3645542012-09-05 18:37:39 +000083 // Derived classes should always call their parent class' onRelease
84 // and onAbandon methods in their overrides.
85 virtual void onRelease() {};
86 virtual void onAbandon() {};
bsalomon@google.com8fe72472011-03-30 21:26:44 +000087
bsalomon@google.coma2921122012-08-28 12:34:17 +000088 bool isInCache() const { return NULL != fCacheEntry; }
bsalomon@google.com72830222013-01-23 20:25:22 +000089 bool isWrapped() const { return kWrapped_Flag & fFlags; }
bsalomon@google.coma2921122012-08-28 12:34:17 +000090
bsalomon@google.com8fe72472011-03-30 21:26:44 +000091private:
robertphillips@google.com9474ed02012-09-04 13:34:32 +000092#if GR_DEBUG
93 friend class GrGpu; // for assert in GrGpu to access getGpu
94#endif
bsalomon@google.com8fe72472011-03-30 21:26:44 +000095
bsalomon@google.com76b7fcc2012-04-27 17:24:09 +000096 GrGpu* fGpu; // not reffed. The GrGpu can be deleted while there
97 // are still live GrResources. It will call
98 // release() on all such resources in its
99 // destructor.
robertphillips@google.com9474ed02012-09-04 13:34:32 +0000100
bsalomon@google.com42619d82012-12-03 14:54:59 +0000101 // We're in an internal doubly linked list
102 SK_DECLARE_INTERNAL_LLIST_INTERFACE(GrResource);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000103
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000104 GrResourceEntry* fCacheEntry; // NULL if not in cache
105
bsalomon@google.com72830222013-01-23 20:25:22 +0000106 enum Flags {
107 kWrapped_Flag,
108 };
109 uint32_t fFlags;
110
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000111 typedef GrRefCnt INHERITED;
112};
113
114#endif