Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: tests/TestTest.cpp

Issue 1885623002: Make more unit tests run on Vulkan (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« tests/Test.h ('K') | « tests/Test.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "Test.h" 8 #include "Test.h"
9 9
10 #if SK_SUPPORT_GPU 10 #if SK_SUPPORT_GPU
(...skipping 20 matching lines...) Expand all
31 #if SK_SUPPORT_GPU 31 #if SK_SUPPORT_GPU
32 DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(TestGpuAllContexts, reporter, ctxInfo) { 32 DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(TestGpuAllContexts, reporter, ctxInfo) {
33 REPORTER_ASSERT(reporter, reporter); 33 REPORTER_ASSERT(reporter, reporter);
34 REPORTER_ASSERT(reporter, ctxInfo.fGrContext); 34 REPORTER_ASSERT(reporter, ctxInfo.fGrContext);
35 } 35 }
36 #endif 36 #endif
37 37
38 // This is an example of a GPU test that tests a property that should work for a ll GPU contexts that 38 // This is an example of a GPU test that tests a property that should work for a ll GPU contexts that
39 // produce a rendering output. 39 // produce a rendering output.
40 #if SK_SUPPORT_GPU 40 #if SK_SUPPORT_GPU
41 DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(TestGpuRenderingContexts, reporter, ctxInf o) { 41 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(TestGpuRenderingContexts, reporter, ctxInfo) {
42 REPORTER_ASSERT(reporter, reporter); 42 REPORTER_ASSERT(reporter, reporter);
43 REPORTER_ASSERT(reporter, ctxInfo.fGrContext); 43 REPORTER_ASSERT(reporter, ctxInfo.fGrContext);
44 } 44 }
45 #endif 45 #endif
46 46
47 // This is an example of a GPU test that tests a property that uses the null GPU context. It should 47 // This is an example of a GPU test that tests a property that uses the null GPU context. It should
48 // be used if the test tests some behavior that is mocked with the null context. 48 // be used if the test tests some behavior that is mocked with the null context.
49 #if SK_SUPPORT_GPU 49 #if SK_SUPPORT_GPU
50 DEF_GPUTEST_FOR_NULLGL_CONTEXT(TestGpuNullContext, reporter, ctxInfo) { 50 DEF_GPUTEST_FOR_NULLGL_CONTEXT(TestGpuNullContext, reporter, ctxInfo) {
51 REPORTER_ASSERT(reporter, reporter); 51 REPORTER_ASSERT(reporter, reporter);
52 REPORTER_ASSERT(reporter, ctxInfo.fGrContext); 52 REPORTER_ASSERT(reporter, ctxInfo.fGrContext);
53 } 53 }
54 #endif 54 #endif
OLDNEW
« tests/Test.h ('K') | « tests/Test.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698