aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PrimitiveProcessorTest.cpp
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2016-12-01 16:40:24 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-01 22:46:23 +0000
commitdad2923b8ec9270d810c1e8e76da8e6768d8f9dd (patch)
treeb7509eb7dc5fbb79463392a09d1500fbe6834980 /tests/PrimitiveProcessorTest.cpp
parentabf8ba34c8038b814e67fe7c4dcf6c9915d81698 (diff)
Rename GrVertexBatch->GrMeshDrawOp
Change-Id: I3ebe5a471477ce1b71c150b0bde4982d113fd8a7 Reviewed-on: https://skia-review.googlesource.com/5468 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'tests/PrimitiveProcessorTest.cpp')
-rw-r--r--tests/PrimitiveProcessorTest.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/PrimitiveProcessorTest.cpp b/tests/PrimitiveProcessorTest.cpp
index 00c0bfffad..10891b7fcc 100644
--- a/tests/PrimitiveProcessorTest.cpp
+++ b/tests/PrimitiveProcessorTest.cpp
@@ -12,20 +12,20 @@
#if SK_SUPPORT_GPU
#include "GrBatchFlushState.h"
-#include "GrRenderTargetContext.h"
-#include "GrRenderTargetContextPriv.h"
#include "GrContext.h"
#include "GrGeometryProcessor.h"
#include "GrGpu.h"
+#include "GrRenderTargetContext.h"
+#include "GrRenderTargetContextPriv.h"
#include "GrTextureProvider.h"
-#include "glsl/GrGLSLGeometryProcessor.h"
+#include "SkString.h"
+#include "batches/GrMeshDrawOp.h"
#include "glsl/GrGLSLFragmentShaderBuilder.h"
+#include "glsl/GrGLSLGeometryProcessor.h"
#include "glsl/GrGLSLVarying.h"
-#include "batches/GrVertexBatch.h"
-#include "SkString.h"
namespace {
-class Batch : public GrVertexBatch {
+class Batch : public GrMeshDrawOp {
public:
DEFINE_OP_CLASS_ID
@@ -97,7 +97,7 @@ private:
int fNumAttribs;
- typedef GrVertexBatch INHERITED;
+ typedef GrMeshDrawOp INHERITED;
};
}