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/GrTextureMaker.cpp b/src/gpu/GrTextureMaker.cpp
index f02365e..637002e 100644
--- a/src/gpu/GrTextureMaker.cpp
+++ b/src/gpu/GrTextureMaker.cpp
@@ -14,7 +14,7 @@
 #include "src/gpu/GrRecordingContextPriv.h"
 #include "src/gpu/SkGr.h"
 
-GrSurfaceProxyView GrTextureMaker::onView(GrMipMapped mipMapped) {
+GrSurfaceProxyView GrTextureMaker::onView(GrMipmapped mipMapped) {
     if (this->width() > this->context()->priv().caps()->maxTextureSize() ||
         this->height() > this->context()->priv().caps()->maxTextureSize()) {
         return {};
@@ -39,5 +39,5 @@
         GrSamplerState::WrapMode wrapX,
         GrSamplerState::WrapMode wrapY) {
     return this->createBicubicFragmentProcessorForView(
-            this->view(GrMipMapped::kNo), textureMatrix, subset, domain, wrapX, wrapY);
+            this->view(GrMipmapped::kNo), textureMatrix, subset, domain, wrapX, wrapY);
 }