Rename GrMipMapped GrMipmapped

Change-Id: Ia2cfbca8982b57399b6681cbb4501c2933ab4df7
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/304576
Auto-Submit: Brian Salomon <bsalomon@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
diff --git a/src/gpu/GrProgramInfo.cpp b/src/gpu/GrProgramInfo.cpp
index 34e6459..ad58349 100644
--- a/src/gpu/GrProgramInfo.cpp
+++ b/src/gpu/GrProgramInfo.cpp
@@ -31,7 +31,7 @@
 }
 
 void GrProgramInfo::checkAllInstantiated() const {
-    this->pipeline().visitProxies([](GrSurfaceProxy* proxy, GrMipMapped) {
+    this->pipeline().visitProxies([](GrSurfaceProxy* proxy, GrMipmapped) {
         SkASSERT(proxy->isInstantiated());
         return true;
     });
@@ -47,7 +47,7 @@
             (tex->width() != 1 || tex->height() != 1)) {
             // There are some cases where we might be given a non-mipmapped texture with a
             // mipmap filter. See skbug.com/7094.
-            SkASSERT(tex->texturePriv().mipMapped() != GrMipMapped::kYes ||
+            SkASSERT(tex->texturePriv().mipMapped() != GrMipmapped::kYes ||
                      !tex->texturePriv().mipMapsAreDirty());
         }
     });