aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrResourceHandle.h
blob: 383bbea6c7a62be9406896154ac4f327e9c972a0 (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
/*
 * 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 GrResourceHandle_DEFINED
#define GrResourceHandle_DEFINED

#include "SkTypes.h"

// Opaque handle to a resource. Users should always use the macro below to create a specific
// template instantiation of GrResourceHandle.
template <typename kind> class GrResourceHandle {
public:
    GrResourceHandle(int value) : fValue(value) {
        SkASSERT(this->isValid());
    }

    GrResourceHandle() : fValue(kInvalid_ResourceHandle) {}

    bool operator==(const GrResourceHandle& other) const { return other.fValue == fValue; }
    bool isValid() const { return kInvalid_ResourceHandle != fValue; }
    int toIndex() const { SkASSERT(this->isValid()); return fValue; }

private:
    static const int kInvalid_ResourceHandle = -1;
    int fValue;
};

// Creates a type "name", which is a specfic template instantiation of GrResourceHandle.
#define GR_DEFINE_RESOURCE_HANDLE_CLASS(name) \
    struct name##Kind {};  \
    using name = GrResourceHandle<name##Kind>;
#endif