Index: src/gpu/GrTBSearch.h |
=================================================================== |
--- src/gpu/GrTBSearch.h (revision 5253) |
+++ src/gpu/GrTBSearch.h (working copy) |
@@ -18,7 +18,7 @@ |
// we should insert it at 0 |
return ~0; |
} |
- |
+ |
int high = count - 1; |
int low = 0; |
while (high > low) { |
@@ -29,12 +29,12 @@ |
high = index; |
} |
} |
- |
+ |
// check if we found it |
if (EQ(array[high], target)) { |
return high; |
} |
- |
+ |
// now return the ~ of where we should insert it |
if (LT(array[high], target)) { |
high += 1; |