Index: src/gpu/GrInOrderCommandBuilder.h |
diff --git a/src/gpu/GrInOrderCommandBuilder.h b/src/gpu/GrInOrderCommandBuilder.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..72a5efe367dd193c0963765a067b6549aa00085f |
--- /dev/null |
+++ b/src/gpu/GrInOrderCommandBuilder.h |
@@ -0,0 +1,39 @@ |
+/* |
+ * Copyright 2015 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#ifndef GrInOrderCommandBuilder_DEFINED |
+#define GrInOrderCommandBuilder_DEFINED |
+ |
+#include "GrCommandBuilder.h" |
+ |
+class GrInOrderCommandBuilder : public GrCommandBuilder { |
+public: |
+ typedef GrCommandBuilder::Cmd Cmd; |
+ typedef GrCommandBuilder::State State; |
+ |
+ GrInOrderCommandBuilder(GrFoo* foo, GrGpu* gpu, GrRenderTarget* dst) : INHERITED(foo, gpu, dst) { } |
+ |
+ Cmd* recordDrawBatch(GrBatch*, const GrCaps&) override; |
+ |
+ Cmd* recordDrawPaths(State*, |
+ GrBufferedDrawTarget*, |
+ const GrPathProcessor*, |
+ const GrPathRange*, |
+ const void*, |
+ GrDrawTarget::PathIndexType, |
+ const float transformValues[], |
+ GrDrawTarget::PathTransformType , |
+ int, |
+ const GrStencilSettings&, |
+ const GrPipelineOptimizations&) override; |
+ |
+private: |
+ typedef GrCommandBuilder INHERITED; |
+ |
+}; |
+ |
+#endif |