fix mono bittest
authorreed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 23 Jun 2011 19:39:49 +0000 (19:39 +0000)
committerreed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 23 Jun 2011 19:39:49 +0000 (19:39 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@1690 2bbb7eff-a529-9590-31e7-b0007b416f81

src/ports/SkFontHost_FreeType.cpp

index 1c40ad6..692ae28 100644 (file)
@@ -1011,7 +1011,7 @@ static uint16_t grayToRGB16(U8CPU gray) {
 
 static int bittst(const uint8_t data[], int bitOffset) {
     SkASSERT(bitOffset >= 0);
-    int lowBit = data[bitOffset >> 3] >> (1 << (~bitOffset & 7));
+    int lowBit = data[bitOffset >> 3] >> (~bitOffset & 7);
     return lowBit & 1;
 }