aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrProcessorUnitTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrProcessorUnitTest.cpp')
-rw-r--r--src/gpu/GrProcessorUnitTest.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/gpu/GrProcessorUnitTest.cpp b/src/gpu/GrProcessorUnitTest.cpp
new file mode 100644
index 0000000000..bdc602c9bf
--- /dev/null
+++ b/src/gpu/GrProcessorUnitTest.cpp
@@ -0,0 +1,23 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "GrProcessorUnitTest.h"
+#include "GrFragmentProcessor.h"
+
+const GrFragmentProcessor* GrProcessorUnitTest::CreateChildFP(GrProcessorTestData* data) {
+#if SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
+ SkAutoTUnref<const GrFragmentProcessor> fp;
+ do {
+ fp.reset(GrProcessorTestFactory<GrFragmentProcessor>::Create(data));
+ SkASSERT(fp);
+ } while (fp->numChildProcessors() != 0);
+ return SkRef(fp.get());
+#else
+ SkFAIL("Should not be called if !SK_ALLOW_STATIC_GLOBAL_INITIALIZERS");
+ return nullptr;
+#endif
+}