Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2016 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 #ifndef GrResourceHandle_DEFINED | |
| 9 #define GrResourcehandle_DEFINED | |
| 10 | |
| 11 #include "SkTypes.h" | |
| 12 | |
|
robertphillips
2016/05/09 13:13:11
indexed version ?
bsalomon
2016/05/09 13:25:23
I agree that these comments are not totally clear.
egdaniel
2016/05/09 17:19:54
Done.
bsalomon
2016/05/09 17:26:51
version->instantiation?
| |
| 13 // Opaque handle to a resource. Users should always use the macro below to creat e a specific indexed | |
| 14 // version of the class. | |
| 15 template <typename kind> class GrResourceHandle { | |
| 16 public: | |
| 17 GrResourceHandle(int value) : fValue(value) { | |
| 18 SkASSERT(this->isValid()); | |
| 19 } | |
| 20 | |
| 21 GrResourceHandle() : fValue(kInvalid_ResourceHandle) {} | |
| 22 | |
| 23 bool operator==(const GrResourceHandle& other) const { return other.fValue = = fValue; } | |
| 24 bool isValid() const { return kInvalid_ResourceHandle != fValue; } | |
| 25 int toIndex() const { SkASSERT(this->isValid()); return fValue; } | |
| 26 | |
| 27 private: | |
| 28 static const int kInvalid_ResourceHandle = -1; | |
| 29 int fValue; | |
| 30 }; | |
| 31 | |
|
robertphillips
2016/05/09 13:13:11
type index ?
egdaniel
2016/05/09 17:19:54
Done.
| |
| 32 // Creates a type "name" that is a specfic type index of GrResourceHandle. | |
| 33 #define GR_DEFINE_RESOURCE_HANDLE_CLASS(name) \ | |
| 34 struct name##Kind {}; \ | |
| 35 using name = GrResourceHandle<name##Kind>; | |
| 36 #endif | |
| OLD | NEW |