aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gn/gpu.gni4
-rw-r--r--src/gpu/batches/GrAtlasTextOp.cpp (renamed from src/gpu/batches/GrAtlasTextBatch.cpp)2
-rw-r--r--src/gpu/batches/GrAtlasTextOp.h (renamed from src/gpu/batches/GrAtlasTextBatch.h)0
-rw-r--r--src/gpu/text/GrAtlasTextBlob.cpp2
-rw-r--r--src/gpu/text/GrAtlasTextBlob_regenInBatch.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/gn/gpu.gni b/gn/gpu.gni
index 805a062c4c..23ee07eac6 100644
--- a/gn/gpu.gni
+++ b/gn/gpu.gni
@@ -241,8 +241,8 @@ skia_gpu_sources = [
"$_src/gpu/batches/GrAAStrokeRectOp.h",
"$_src/gpu/batches/GrAnalyticRectOp.cpp",
"$_src/gpu/batches/GrAnalyticRectOp.h",
- "$_src/gpu/batches/GrAtlasTextBatch.cpp",
- "$_src/gpu/batches/GrAtlasTextBatch.h",
+ "$_src/gpu/batches/GrAtlasTextOp.cpp",
+ "$_src/gpu/batches/GrAtlasTextOp.h",
"$_src/gpu/batches/GrClearOp.h",
"$_src/gpu/batches/GrClearStencilClipOp.h",
"$_src/gpu/batches/GrCopySurfaceOp.cpp",
diff --git a/src/gpu/batches/GrAtlasTextBatch.cpp b/src/gpu/batches/GrAtlasTextOp.cpp
index 1b450956af..0b692d15b3 100644
--- a/src/gpu/batches/GrAtlasTextBatch.cpp
+++ b/src/gpu/batches/GrAtlasTextOp.cpp
@@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
-#include "GrAtlasTextBatch.h"
+#include "GrAtlasTextOp.h"
#include "GrOpFlushState.h"
#include "GrResourceProvider.h"
diff --git a/src/gpu/batches/GrAtlasTextBatch.h b/src/gpu/batches/GrAtlasTextOp.h
index 313a78e940..313a78e940 100644
--- a/src/gpu/batches/GrAtlasTextBatch.h
+++ b/src/gpu/batches/GrAtlasTextOp.h
diff --git a/src/gpu/text/GrAtlasTextBlob.cpp b/src/gpu/text/GrAtlasTextBlob.cpp
index c5fa86f6e8..e3c23d69ed 100644
--- a/src/gpu/text/GrAtlasTextBlob.cpp
+++ b/src/gpu/text/GrAtlasTextBlob.cpp
@@ -16,7 +16,7 @@
#include "SkDrawFilter.h"
#include "SkGlyphCache.h"
#include "SkTextBlobRunIterator.h"
-#include "batches/GrAtlasTextBatch.h"
+#include "batches/GrAtlasTextOp.h"
GrAtlasTextBlob* GrAtlasTextBlob::Create(GrMemoryPool* pool, int glyphCount, int runCount) {
// We allocate size for the GrAtlasTextBlob itself, plus size for the vertices array,
diff --git a/src/gpu/text/GrAtlasTextBlob_regenInBatch.cpp b/src/gpu/text/GrAtlasTextBlob_regenInBatch.cpp
index 68f00fc5be..1b541464f0 100644
--- a/src/gpu/text/GrAtlasTextBlob_regenInBatch.cpp
+++ b/src/gpu/text/GrAtlasTextBlob_regenInBatch.cpp
@@ -13,7 +13,7 @@
#include "SkDistanceFieldGen.h"
#include "SkGlyphCache.h"
-#include "batches/GrAtlasTextBatch.h"
+#include "batches/GrAtlasTextOp.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// A large template to handle regenerating the vertices of a textblob with as few branches as