From da03653f347e38a27e79b1dfb8c731bf9a184909 Mon Sep 17 00:00:00 2001 From: reed Date: Wed, 9 Jul 2014 17:28:13 -0700 Subject: [PATCH] fix typo, had two RGBA instead of RGBA and BGRA TBR=caryclark@google.com BUG=skia: Author: reed@chromium.org Review URL: https://codereview.chromium.org/382633004 --- include/core/SkColorPriv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/core/SkColorPriv.h b/include/core/SkColorPriv.h index 21e1783..6f23f9b 100644 --- a/include/core/SkColorPriv.h +++ b/include/core/SkColorPriv.h @@ -79,7 +79,7 @@ #error "SK_PMCOLOR_IS_BGRA does not match SK_*32_SHIFT values" #endif -#if !defined(SK_PMCOLOR_IS_RGBA) && !defined(SK_PMCOLOR_IS_RGBA) +#if !defined(SK_PMCOLOR_IS_RGBA) && !defined(SK_PMCOLOR_IS_BGRA) // deduce which to define from the _SHIFT defines #if LOCAL_PMCOLOR_SHIFTS_EQUIVALENT_TO_RGBA -- 2.7.4