| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2010 Google Inc. | 3 * Copyright 2010 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #include "GrBinHashKey.h" | 9 #include "GrBinHashKey.h" |
| 10 #include "GrDrawTarget.h" | 10 #include "GrDrawTarget.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 keyB.setKeyData(testStringB); | 70 keyB.setKeyData(testStringB); |
| 71 GrAssert(keyA.compare(keyB) < 0); | 71 GrAssert(keyA.compare(keyB) < 0); |
| 72 GrAssert(keyA.getHash() != keyB.getHash()); | 72 GrAssert(keyA.getHash() != keyB.getHash()); |
| 73 } | 73 } |
| 74 | 74 |
| 75 | 75 |
| 76 void gr_run_unittests() { | 76 void gr_run_unittests() { |
| 77 GR_DEBUGCODE(test_bsearch();) | 77 GR_DEBUGCODE(test_bsearch();) |
| 78 test_binHashKey(); | 78 test_binHashKey(); |
| 79 GrRedBlackTree<int>::UnitTest(); | 79 GrRedBlackTree<int>::UnitTest(); |
| 80 GrDrawState::VertexAttributesUnitTest(); | |
| 81 } | 80 } |
| OLD | NEW |