diff options
Diffstat (limited to 'include/gpu/GrTypes.h')
-rw-r--r-- | include/gpu/GrTypes.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/include/gpu/GrTypes.h b/include/gpu/GrTypes.h index 9f1eb03284..6b484dea59 100644 --- a/include/gpu/GrTypes.h +++ b/include/gpu/GrTypes.h @@ -310,30 +310,8 @@ enum GrPixelConfig { // This alias is deprecated and will be removed. static const GrPixelConfig kSkia8888_PM_GrPixelConfig = kSkia8888_GrPixelConfig; -// Returns true if the pixel config has 8bit r,g,b,a components in that byte -// order -static inline bool GrPixelConfigIsRGBA8888(GrPixelConfig config) { - switch (config) { - case kRGBA_8888_GrPixelConfig: - return true; - default: - return false; - } -} - -// Returns true if the pixel config has 8bit b,g,r,a components in that byte -// order -static inline bool GrPixelConfigIsBGRA8888(GrPixelConfig config) { - switch (config) { - case kBGRA_8888_GrPixelConfig: - return true; - default: - return false; - } -} - // Returns true if the pixel config is 32 bits per pixel -static inline bool GrPixelConfigIs32Bit(GrPixelConfig config) { +static inline bool GrPixelConfigIs8888(GrPixelConfig config) { switch (config) { case kRGBA_8888_GrPixelConfig: case kBGRA_8888_GrPixelConfig: |