OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GrRefCnt
(Results
1 - 8
of
8
) sorted by null
/external/skia/gpu/include/
GrRefCnt.h
32
class GR_API
GrRefCnt
: GrNoncopyable {
34
GrRefCnt
() : fRefCnt(1) {}
35
virtual ~
GrRefCnt
() {
73
* Call with instance/subclass of
GrRefCnt
. This does nothing if obj is null,
76
static inline void GrSafeRef(const
GrRefCnt
* obj) {
83
* Call with instance/subclass of
GrRefCnt
. This does nothing if obj is null,
86
static inline void GrSafeUnref(const
GrRefCnt
* obj) {
119
GrAutoRef(
GrRefCnt
* obj) : fObj(obj) { GrSafeRef(obj); }
122
GrRefCnt
* fObj;
127
GrAutoUnref(
GrRefCnt
* obj) : fObj(obj) {
[
all
...]
GrResource.h
20
#include "
GrRefCnt
.h"
24
class GrResource : public
GrRefCnt
{
74
typedef
GrRefCnt
INHERITED;
GrFontScaler.h
33
class GrFontScaler : public
GrRefCnt
{
GrKey.h
21
#include "
GrRefCnt
.h"
23
class GrKey : public
GrRefCnt
{
GrPathRenderer.h
28
class GR_API GrPathRenderer : public
GrRefCnt
{
127
typedef
GrRefCnt
INHERITED;
GrGLTexture.h
30
class GrGLTexID : public
GrRefCnt
{
GrContext.h
32
class GR_API GrContext : public
GrRefCnt
{
GrDrawTarget.h
23
#include "
GrRefCnt
.h"
36
class GrDrawTarget : public
GrRefCnt
{
[
all
...]
Completed in 2548 milliseconds