Index: src/gpu/gl/GrGLCaps.h |
diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h |
index 376610d8b0d9636c299f0a4fee95174c89f3634f..8fcbccc9545ebbe33912ad4e1e4bec5cdfa8b5bd 100644 |
--- a/src/gpu/gl/GrGLCaps.h |
+++ b/src/gpu/gl/GrGLCaps.h |
@@ -120,12 +120,12 @@ public: |
const GrGLInterface* glInterface); |
bool isConfigTexturable(GrPixelConfig config) const override { |
- SkASSERT(kGrPixelConfigCnt > config); |
+ SkASSERT(kGrPixelConfigCnt > static_cast<int>(config)); |
return SkToBool(fConfigTable[config].fFlags & ConfigInfo::kTextureable_Flag); |
} |
bool isConfigRenderable(GrPixelConfig config, bool withMSAA) const override { |
- SkASSERT(kGrPixelConfigCnt > config); |
+ SkASSERT(kGrPixelConfigCnt > static_cast<int>(config)); |
if (withMSAA) { |
return SkToBool(fConfigTable[config].fFlags & ConfigInfo::kRenderableWithMSAA_Flag); |
} else { |
@@ -134,7 +134,7 @@ public: |
} |
bool isConfigTexSupportEnabled(GrPixelConfig config) const { |
- SkASSERT(kGrPixelConfigCnt > config); |
+ SkASSERT(kGrPixelConfigCnt > static_cast<int>(config)); |
return SkToBool(fConfigTable[config].fFlags & ConfigInfo::kCanUseTexStorage_Flag); |
} |