reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2010 Google Inc. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | |
| 18 | #ifndef GrRefCnt_DEFINED |
| 19 | #define GrRefCnt_DEFINED |
| 20 | |
| 21 | #include "GrTypes.h" |
reed@google.com | 970cb55 | 2011-07-15 15:52:28 +0000 | [diff] [blame] | 22 | #include "SkRefCnt.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 23 | |
reed@google.com | 970cb55 | 2011-07-15 15:52:28 +0000 | [diff] [blame] | 24 | typedef SkRefCnt GrRefCnt; |
| 25 | typedef SkAutoRef GrAutoRef; |
| 26 | typedef SkAutoUnref GrAutoUnref; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 27 | |
reed@google.com | 970cb55 | 2011-07-15 15:52:28 +0000 | [diff] [blame] | 28 | static void GrSafeRef(const SkRefCnt* obj) { SkSafeRef(obj); } |
| 29 | static void GrSafeUnref(const SkRefCnt* obj) { SkSafeUnref(obj); } |
| 30 | #define GrSafeAssign(a, b) SkRefCnt_SafeAssign(a, b) |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 31 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 32 | template<typename T> |
| 33 | static inline void GrSafeSetNull(T*& obj) { |
| 34 | if (NULL != obj) { |
| 35 | obj->unref(); |
| 36 | obj = NULL; |
| 37 | } |
| 38 | } |
| 39 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 40 | #endif |
| 41 | |