aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/GrDrawTargetTest.cpp
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-08 18:45:27 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-08 18:45:27 +0000
commit9901727f213e459901a175c119b2fad8816002a0 (patch)
tree31df3eff9d666db749a174232d6f5a049b0abf23 /tests/GrDrawTargetTest.cpp
parentc4a4f9db6ba448c27b2c99ee1b1cbea005596044 (diff)
Fix stale assert in GrDrawTarget::print
Fix stale assert in GrDrawTarget::print. R=bsalomon@google.com Author: kkinnunen@nvidia.com Review URL: https://codereview.chromium.org/66333002 git-svn-id: http://skia.googlecode.com/svn/trunk@12201 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/GrDrawTargetTest.cpp')
-rw-r--r--tests/GrDrawTargetTest.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/GrDrawTargetTest.cpp b/tests/GrDrawTargetTest.cpp
new file mode 100644
index 0000000000..a82524e88c
--- /dev/null
+++ b/tests/GrDrawTargetTest.cpp
@@ -0,0 +1,38 @@
+
+/*
+ * Copyright 2013 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#if SK_SUPPORT_GPU
+
+#include "GrContext.h"
+#include "GrContextFactory.h"
+#include "GrGpu.h"
+#include "GrDrawTargetCaps.h"
+#include "Test.h"
+
+static void test_print(skiatest::Reporter*, const GrDrawTargetCaps* caps) {
+ // This used to assert.
+ caps->print();
+}
+
+static void TestGrDrawTarget(skiatest::Reporter* reporter, GrContextFactory* factory) {
+ for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
+ GrContextFactory::GLContextType glType = static_cast<GrContextFactory::GLContextType>(type);
+
+ GrContext* grContext = factory->get(glType);
+ if (NULL == grContext) {
+ continue;
+ }
+
+ test_print(reporter, grContext->getGpu()->caps());
+ }
+}
+
+#include "TestClassDef.h"
+DEFINE_GPUTESTCLASS("GrDrawTarget", TestGrDrawTargetClass, TestGrDrawTarget)
+
+#endif