kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "SkCommonFlagsConfig.h" |
brianosman | b6095ae | 2016-06-16 13:32:51 -0700 | [diff] [blame] | 9 | #include "SkColorSpace.h" |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 10 | #include "Test.h" |
| 11 | #include <initializer_list> |
| 12 | |
bsalomon | 3724e57 | 2016-03-30 18:56:19 -0700 | [diff] [blame] | 13 | using sk_gpu_test::GrContextFactory; |
| 14 | |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 15 | namespace { |
| 16 | // The code |
| 17 | // SkCommandLineFlags::StringArray FLAGS_config1 = make_string_array({"a", "b"}) |
| 18 | // can be used to construct string array that one gets with command line flags. |
| 19 | // For example, the call above is equivalent of |
| 20 | // DEFINE_string(config1, "a b", ""); |
| 21 | // in cases where the default command line flag value ("a b") is used. |
| 22 | // make_string_array can be used to construct StringArray strings that have spaces in |
| 23 | // them. |
| 24 | SkCommandLineFlags::StringArray make_string_array(std::initializer_list<const char*> strings) { |
| 25 | SkTArray<SkString> array; |
| 26 | for (auto& s : strings) { |
| 27 | array.push_back(SkString(s)); |
| 28 | } |
| 29 | return SkCommandLineFlags::StringArray(array); |
| 30 | } |
| 31 | } |
| 32 | DEF_TEST(ParseConfigs_Gpu, reporter) { |
| 33 | // Parses a normal config and returns correct "tag". |
| 34 | // Gpu config defaults work. |
| 35 | SkCommandLineFlags::StringArray config1 = make_string_array({"gpu"}); |
| 36 | SkCommandLineConfigArray configs; |
| 37 | ParseConfigs(config1, &configs); |
| 38 | |
| 39 | REPORTER_ASSERT(reporter, configs.count() == 1); |
| 40 | REPORTER_ASSERT(reporter, configs[0]->getTag().equals("gpu")); |
| 41 | REPORTER_ASSERT(reporter, configs[0]->getViaParts().count() == 0); |
| 42 | #if SK_SUPPORT_GPU |
| 43 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()); |
| 44 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getContextType() |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 45 | == GrContextFactory::kNativeGL_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 46 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseNVPR() == false); |
csmartdalton | e0d3629 | 2016-07-29 08:14:20 -0700 | [diff] [blame] | 47 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseInstanced() == false); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 48 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseDIText() == false); |
| 49 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getSamples() == 0); |
brianosman | d93c120 | 2016-03-10 07:49:08 -0800 | [diff] [blame] | 50 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getColorType() == kN32_SkColorType); |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 51 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getColorSpace() == nullptr); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 52 | #endif |
| 53 | } |
| 54 | |
| 55 | DEF_TEST(ParseConfigs_OutParam, reporter) { |
| 56 | // Clears the out parameter. |
| 57 | SkCommandLineFlags::StringArray config1 = make_string_array({"gpu"}); |
| 58 | SkCommandLineConfigArray configs; |
| 59 | ParseConfigs(config1, &configs); |
| 60 | REPORTER_ASSERT(reporter, configs.count() == 1); |
| 61 | REPORTER_ASSERT(reporter, configs[0]->getTag().equals("gpu")); |
bsalomon | b8797bb | 2016-04-05 08:49:38 -0700 | [diff] [blame] | 62 | |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 63 | SkCommandLineFlags::StringArray config2 = make_string_array({"8888"}); |
| 64 | ParseConfigs(config2, &configs); |
| 65 | REPORTER_ASSERT(reporter, configs.count() == 1); |
| 66 | REPORTER_ASSERT(reporter, configs[0]->getTag().equals("8888")); |
bsalomon | b8797bb | 2016-04-05 08:49:38 -0700 | [diff] [blame] | 67 | |
| 68 | SkCommandLineFlags::StringArray config3 = make_string_array({"gl"}); |
| 69 | ParseConfigs(config3, &configs); |
| 70 | REPORTER_ASSERT(reporter, configs.count() == 1); |
| 71 | REPORTER_ASSERT(reporter, configs[0]->getTag().equals("gl")); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | DEF_TEST(ParseConfigs_DefaultConfigs, reporter) { |
| 75 | // Parses all default configs and returns correct "tag". |
| 76 | |
| 77 | SkCommandLineFlags::StringArray config1 = make_string_array({ |
| 78 | "565", "8888", "debug", "gpu", "gpudebug", "gpudft", "gpunull", "msaa16", "msaa4", |
csmartdalton | e0d3629 | 2016-07-29 08:14:20 -0700 | [diff] [blame] | 79 | "nonrendering", "null", "nullgpu", "nvpr16", "nvpr4", "nvprdit16", "nvprdit4", "pdf", "skp", |
| 80 | "svg", "xps", "angle", "angle-gl", "commandbuffer", "mesa", "hwui", "gpuf16", "gpusrgb", |
| 81 | "gl", "glnvpr4", "glnvprdit4", "glsrgb", "glmsaa4", "vk", "glinst", "glinst4", "glinstdit4", |
| 82 | "glinst16", "glinstdit16", "esinst", "esinst4", "esinstdit4" |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 83 | }); |
| 84 | |
| 85 | SkCommandLineConfigArray configs; |
| 86 | ParseConfigs(config1, &configs); |
| 87 | |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 88 | auto srgbColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named); |
| 89 | |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 90 | REPORTER_ASSERT(reporter, configs.count() == config1.count()); |
| 91 | for (int i = 0; i < config1.count(); ++i) { |
| 92 | REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i])); |
| 93 | REPORTER_ASSERT(reporter, configs[i]->getViaParts().count() == 0); |
| 94 | } |
| 95 | #if SK_SUPPORT_GPU |
| 96 | REPORTER_ASSERT(reporter, !configs[0]->asConfigGpu()); |
| 97 | REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu()); |
| 98 | REPORTER_ASSERT(reporter, configs[2]->asConfigGpu()); |
| 99 | REPORTER_ASSERT(reporter, configs[3]->asConfigGpu()); |
| 100 | REPORTER_ASSERT(reporter, configs[4]->asConfigGpu()); |
| 101 | REPORTER_ASSERT(reporter, configs[5]->asConfigGpu()->getUseDIText()); |
| 102 | REPORTER_ASSERT(reporter, configs[6]->asConfigGpu()); |
| 103 | REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getSamples() == 16); |
| 104 | REPORTER_ASSERT(reporter, configs[8]->asConfigGpu()->getSamples() == 4); |
| 105 | REPORTER_ASSERT(reporter, !configs[9]->asConfigGpu()); |
| 106 | REPORTER_ASSERT(reporter, !configs[10]->asConfigGpu()); |
| 107 | REPORTER_ASSERT(reporter, configs[11]->asConfigGpu()); |
| 108 | REPORTER_ASSERT(reporter, configs[12]->asConfigGpu()->getSamples() == 16); |
| 109 | REPORTER_ASSERT(reporter, configs[12]->asConfigGpu()->getUseNVPR()); |
cdalton | c28afdb | 2016-03-29 20:05:07 -0700 | [diff] [blame] | 110 | REPORTER_ASSERT(reporter, !configs[12]->asConfigGpu()->getUseDIText()); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 111 | REPORTER_ASSERT(reporter, configs[13]->asConfigGpu()->getSamples() == 4); |
| 112 | REPORTER_ASSERT(reporter, configs[13]->asConfigGpu()->getUseNVPR()); |
cdalton | c28afdb | 2016-03-29 20:05:07 -0700 | [diff] [blame] | 113 | REPORTER_ASSERT(reporter, !configs[13]->asConfigGpu()->getUseDIText()); |
| 114 | REPORTER_ASSERT(reporter, configs[14]->asConfigGpu()->getSamples() == 16); |
| 115 | REPORTER_ASSERT(reporter, configs[14]->asConfigGpu()->getUseNVPR()); |
| 116 | REPORTER_ASSERT(reporter, configs[14]->asConfigGpu()->getUseDIText()); |
| 117 | REPORTER_ASSERT(reporter, configs[15]->asConfigGpu()->getSamples() == 4); |
| 118 | REPORTER_ASSERT(reporter, configs[15]->asConfigGpu()->getUseNVPR()); |
| 119 | REPORTER_ASSERT(reporter, configs[15]->asConfigGpu()->getUseDIText()); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 120 | REPORTER_ASSERT(reporter, !configs[16]->asConfigGpu()); |
| 121 | REPORTER_ASSERT(reporter, !configs[17]->asConfigGpu()); |
| 122 | REPORTER_ASSERT(reporter, !configs[18]->asConfigGpu()); |
cdalton | c28afdb | 2016-03-29 20:05:07 -0700 | [diff] [blame] | 123 | REPORTER_ASSERT(reporter, !configs[19]->asConfigGpu()); |
halcanary | 3c4521a | 2016-04-04 12:14:46 -0700 | [diff] [blame] | 124 | REPORTER_ASSERT(reporter, !configs[24]->asConfigGpu()); |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 125 | REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorType() == kRGBA_F16_SkColorType); |
brianosman | 0e22eb8 | 2016-08-30 07:07:59 -0700 | [diff] [blame] | 126 | REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()); |
msarett | 600c737 | 2016-09-07 12:03:53 -0700 | [diff] [blame] | 127 | REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->gammaIsLinear()); |
brianosman | 0e22eb8 | 2016-08-30 07:07:59 -0700 | [diff] [blame] | 128 | REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->xyz() == |
| 129 | srgbColorSpace->xyz()); |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 130 | REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorType() == kN32_SkColorType); |
| 131 | REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorSpace() == srgbColorSpace.get()); |
csmartdalton | e0d3629 | 2016-07-29 08:14:20 -0700 | [diff] [blame] | 132 | REPORTER_ASSERT(reporter, configs[33]->asConfigGpu()->getContextType() == |
| 133 | GrContextFactory::kGL_ContextType); |
| 134 | REPORTER_ASSERT(reporter, configs[33]->asConfigGpu()->getUseInstanced()); |
| 135 | REPORTER_ASSERT(reporter, configs[34]->asConfigGpu()->getContextType() == |
| 136 | GrContextFactory::kGL_ContextType); |
| 137 | REPORTER_ASSERT(reporter, configs[34]->asConfigGpu()->getUseInstanced()); |
| 138 | REPORTER_ASSERT(reporter, configs[34]->asConfigGpu()->getSamples() == 4); |
| 139 | REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getContextType() == |
| 140 | GrContextFactory::kGL_ContextType); |
| 141 | REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getUseInstanced()); |
| 142 | REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getUseDIText()); |
| 143 | REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getSamples() == 4); |
| 144 | REPORTER_ASSERT(reporter, configs[36]->asConfigGpu()->getContextType() == |
| 145 | GrContextFactory::kGL_ContextType); |
| 146 | REPORTER_ASSERT(reporter, configs[36]->asConfigGpu()->getUseInstanced()); |
| 147 | REPORTER_ASSERT(reporter, configs[36]->asConfigGpu()->getSamples() == 16); |
| 148 | REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getContextType() == |
| 149 | GrContextFactory::kGL_ContextType); |
| 150 | REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getUseInstanced()); |
| 151 | REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getUseDIText()); |
| 152 | REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getSamples() == 16); |
| 153 | REPORTER_ASSERT(reporter, configs[38]->asConfigGpu()->getContextType() == |
| 154 | GrContextFactory::kGLES_ContextType); |
| 155 | REPORTER_ASSERT(reporter, configs[38]->asConfigGpu()->getUseInstanced()); |
| 156 | REPORTER_ASSERT(reporter, configs[39]->asConfigGpu()->getContextType() == |
| 157 | GrContextFactory::kGLES_ContextType); |
| 158 | REPORTER_ASSERT(reporter, configs[39]->asConfigGpu()->getUseInstanced()); |
| 159 | REPORTER_ASSERT(reporter, configs[39]->asConfigGpu()->getSamples() == 4); |
| 160 | REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getContextType() == |
| 161 | GrContextFactory::kGLES_ContextType); |
| 162 | REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getUseInstanced()); |
| 163 | REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getUseDIText()); |
| 164 | REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getSamples() == 4); |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 165 | |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 166 | #if SK_ANGLE |
| 167 | #ifdef SK_BUILD_FOR_WIN |
halcanary | 3c4521a | 2016-04-04 12:14:46 -0700 | [diff] [blame] | 168 | REPORTER_ASSERT(reporter, configs[20]->asConfigGpu()); |
| 169 | #else |
| 170 | REPORTER_ASSERT(reporter, !configs[20]->asConfigGpu()); |
| 171 | #endif |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 172 | REPORTER_ASSERT(reporter, configs[21]->asConfigGpu()); |
| 173 | #else |
halcanary | 3c4521a | 2016-04-04 12:14:46 -0700 | [diff] [blame] | 174 | REPORTER_ASSERT(reporter, !configs[20]->asConfigGpu()); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 175 | REPORTER_ASSERT(reporter, !configs[21]->asConfigGpu()); |
| 176 | #endif |
cdalton | c28afdb | 2016-03-29 20:05:07 -0700 | [diff] [blame] | 177 | #if SK_COMMAND_BUFFER |
halcanary | 3c4521a | 2016-04-04 12:14:46 -0700 | [diff] [blame] | 178 | REPORTER_ASSERT(reporter, configs[22]->asConfigGpu()); |
| 179 | #else |
| 180 | REPORTER_ASSERT(reporter, !configs[22]->asConfigGpu()); |
| 181 | #endif |
| 182 | #if SK_MESA |
cdalton | c28afdb | 2016-03-29 20:05:07 -0700 | [diff] [blame] | 183 | REPORTER_ASSERT(reporter, configs[23]->asConfigGpu()); |
| 184 | #else |
| 185 | REPORTER_ASSERT(reporter, !configs[23]->asConfigGpu()); |
| 186 | #endif |
bsalomon | b8797bb | 2016-04-05 08:49:38 -0700 | [diff] [blame] | 187 | REPORTER_ASSERT(reporter, configs[27]->asConfigGpu()); |
| 188 | REPORTER_ASSERT(reporter, configs[28]->asConfigGpu()); |
| 189 | REPORTER_ASSERT(reporter, configs[28]->asConfigGpu()->getSamples() == 4); |
| 190 | REPORTER_ASSERT(reporter, configs[28]->asConfigGpu()->getUseNVPR()); |
| 191 | REPORTER_ASSERT(reporter, configs[29]->asConfigGpu()); |
| 192 | REPORTER_ASSERT(reporter, configs[29]->asConfigGpu()->getSamples() == 4); |
| 193 | REPORTER_ASSERT(reporter, configs[29]->asConfigGpu()->getUseNVPR()); |
| 194 | REPORTER_ASSERT(reporter, configs[29]->asConfigGpu()->getUseDIText()); |
| 195 | REPORTER_ASSERT(reporter, configs[30]->asConfigGpu()); |
| 196 | REPORTER_ASSERT(reporter, configs[30]->asConfigGpu()->getColorType() == kN32_SkColorType); |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 197 | REPORTER_ASSERT(reporter, configs[30]->asConfigGpu()->getColorSpace() == srgbColorSpace.get()); |
bsalomon | b8797bb | 2016-04-05 08:49:38 -0700 | [diff] [blame] | 198 | REPORTER_ASSERT(reporter, configs[31]->asConfigGpu()); |
| 199 | REPORTER_ASSERT(reporter, configs[31]->asConfigGpu()->getSamples() == 4); |
bsalomon | dc0fcd4 | 2016-04-11 14:21:33 -0700 | [diff] [blame] | 200 | #ifdef SK_VULKAN |
| 201 | REPORTER_ASSERT(reporter, configs[32]->asConfigGpu()); |
| 202 | #endif |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 203 | #endif |
| 204 | } |
| 205 | |
| 206 | DEF_TEST(ParseConfigs_ExtendedGpuConfigsCorrect, reporter) { |
| 207 | SkCommandLineFlags::StringArray config1 = make_string_array({ |
kkinnunen | e3c2f80 | 2015-12-29 08:57:32 -0800 | [diff] [blame] | 208 | "gpu(nvpr=true,dit=false)", |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 209 | "gpu(api=angle)", |
| 210 | "gpu(api=angle-gl)", |
| 211 | "gpu(api=mesa,samples=77)", |
| 212 | "gpu(dit=true,api=commandbuffer)", |
| 213 | "gpu()", |
bsalomon | b8797bb | 2016-04-05 08:49:38 -0700 | [diff] [blame] | 214 | "gpu(api=gles)", |
bsalomon | dc0fcd4 | 2016-04-11 14:21:33 -0700 | [diff] [blame] | 215 | "gpu(api=gl)", |
| 216 | "gpu(api=vulkan)", |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 217 | }); |
| 218 | |
| 219 | SkCommandLineConfigArray configs; |
| 220 | ParseConfigs(config1, &configs); |
| 221 | REPORTER_ASSERT(reporter, configs.count() == config1.count()); |
| 222 | for (int i = 0; i < config1.count(); ++i) { |
| 223 | REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i])); |
| 224 | } |
| 225 | #if SK_SUPPORT_GPU |
| 226 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 227 | GrContextFactory::kNativeGL_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 228 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseNVPR()); |
kkinnunen | e3c2f80 | 2015-12-29 08:57:32 -0800 | [diff] [blame] | 229 | REPORTER_ASSERT(reporter, !configs[0]->asConfigGpu()->getUseDIText()); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 230 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getSamples() == 0); |
| 231 | #if SK_ANGLE |
| 232 | #ifdef SK_BUILD_FOR_WIN |
| 233 | REPORTER_ASSERT(reporter, configs[1]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 234 | GrContextFactory::kANGLE_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 235 | #else |
| 236 | REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu()); |
| 237 | #endif |
| 238 | REPORTER_ASSERT(reporter, configs[2]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 239 | GrContextFactory::kANGLE_GL_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 240 | #else |
| 241 | REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu()); |
| 242 | REPORTER_ASSERT(reporter, !configs[2]->asConfigGpu()); |
| 243 | #endif |
| 244 | #if SK_MESA |
| 245 | REPORTER_ASSERT(reporter, configs[3]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 246 | GrContextFactory::kMESA_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 247 | #else |
| 248 | REPORTER_ASSERT(reporter, !configs[3]->asConfigGpu()); |
| 249 | #endif |
| 250 | #if SK_COMMAND_BUFFER |
| 251 | REPORTER_ASSERT(reporter, configs[4]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 252 | GrContextFactory::kCommandBuffer_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 253 | |
| 254 | #else |
| 255 | REPORTER_ASSERT(reporter, !configs[4]->asConfigGpu()); |
| 256 | #endif |
| 257 | REPORTER_ASSERT(reporter, configs[5]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 258 | GrContextFactory::kNativeGL_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 259 | REPORTER_ASSERT(reporter, !configs[5]->asConfigGpu()->getUseNVPR()); |
| 260 | REPORTER_ASSERT(reporter, !configs[5]->asConfigGpu()->getUseDIText()); |
| 261 | REPORTER_ASSERT(reporter, configs[5]->asConfigGpu()->getSamples() == 0); |
| 262 | REPORTER_ASSERT(reporter, configs[6]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 263 | GrContextFactory::kGLES_ContextType); |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 264 | REPORTER_ASSERT(reporter, !configs[6]->asConfigGpu()->getUseNVPR()); |
| 265 | REPORTER_ASSERT(reporter, !configs[6]->asConfigGpu()->getUseDIText()); |
| 266 | REPORTER_ASSERT(reporter, configs[6]->asConfigGpu()->getSamples() == 0); |
bsalomon | b8797bb | 2016-04-05 08:49:38 -0700 | [diff] [blame] | 267 | REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getContextType() == |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 268 | GrContextFactory::kGL_ContextType); |
bsalomon | b8797bb | 2016-04-05 08:49:38 -0700 | [diff] [blame] | 269 | REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseNVPR()); |
| 270 | REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseDIText()); |
| 271 | REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getSamples() == 0); |
bsalomon | dc0fcd4 | 2016-04-11 14:21:33 -0700 | [diff] [blame] | 272 | #ifdef SK_VULKAN |
| 273 | REPORTER_ASSERT(reporter, configs[8]->asConfigGpu()->getContextType() == |
| 274 | GrContextFactory::kVulkan_ContextType); |
| 275 | REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseNVPR()); |
| 276 | REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseDIText()); |
| 277 | REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getSamples() == 0); |
| 278 | #endif |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 279 | #endif |
| 280 | } |
| 281 | |
| 282 | DEF_TEST(ParseConfigs_ExtendedGpuConfigsIncorrect, reporter) { |
| 283 | SkCommandLineFlags::StringArray config1 = make_string_array({ |
| 284 | "gpu(nvpr=1)", // Number as bool. |
| 285 | "gpu(api=gl,)", // Trailing in comma. |
| 286 | "gpu(api=angle-glu)", // Unknown api. |
| 287 | "gpu(api=,samples=0)", // Empty api. |
| 288 | "gpu(samples=true)", // Value true as a number. |
| 289 | "gpu(samples=0,samples=0)", // Duplicate option key. |
| 290 | "gpu(,samples=0)", // Leading comma. |
| 291 | "gpu(samples=54", // Missing closing parenthesis. |
| 292 | ",,", |
| 293 | "gpu(", // Missing parenthesis. |
| 294 | "samples=54" // No backend. |
| 295 | "gpu(nvpr=true )", // Space. |
| 296 | }); |
| 297 | |
| 298 | SkCommandLineConfigArray configs; |
| 299 | ParseConfigs(config1, &configs); |
| 300 | REPORTER_ASSERT(reporter, configs.count() == config1.count()); |
| 301 | for (int i = 0; i < config1.count(); ++i) { |
| 302 | REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i])); |
| 303 | REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(config1[i])); |
| 304 | #if SK_SUPPORT_GPU |
| 305 | REPORTER_ASSERT(reporter, !configs[i]->asConfigGpu()); |
| 306 | #endif |
| 307 | } |
| 308 | } |
| 309 | |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 310 | DEF_TEST(ParseConfigs_ExtendedGpuConfigsSurprises, reporter) { |
| 311 | // These just list explicitly some properties of the system. |
| 312 | SkCommandLineFlags::StringArray config1 = make_string_array({ |
| 313 | // Options are not canonized -> two same configs have a different tag. |
| 314 | "gpu(nvpr=true,dit=true)", "gpu(dit=true,nvpr=true)", |
bsalomon | 85b4b53 | 2016-04-05 11:06:27 -0700 | [diff] [blame] | 315 | "gpu(api=debug)", "gpu(api=gl)", "gpu(api=gles)", "" |
| 316 | "gpu", "gpu()", "gpu(samples=0)", "gpu(api=gles,samples=0)" |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 317 | }); |
| 318 | SkCommandLineConfigArray configs; |
| 319 | ParseConfigs(config1, &configs); |
| 320 | REPORTER_ASSERT(reporter, configs.count() == config1.count()); |
| 321 | for (int i = 0; i < config1.count(); ++i) { |
| 322 | REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i])); |
| 323 | #if SK_SUPPORT_GPU |
| 324 | REPORTER_ASSERT(reporter, configs[i]->getBackend().equals("gpu")); |
| 325 | REPORTER_ASSERT(reporter, configs[i]->asConfigGpu()); |
| 326 | #else |
| 327 | REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(config1[i])); |
| 328 | #endif |
| 329 | } |
| 330 | } |
| 331 | DEF_TEST(ParseConfigs_ViaParsing, reporter) { |
| 332 | SkCommandLineFlags::StringArray config1 = make_string_array({ |
| 333 | "a-b-c-8888", |
| 334 | "zz-qq-gpu", |
| 335 | "a-angle-gl" |
| 336 | }); |
| 337 | |
| 338 | SkCommandLineConfigArray configs; |
| 339 | ParseConfigs(config1, &configs); |
| 340 | const struct { |
| 341 | const char* backend; |
| 342 | const char* vias[3]; |
| 343 | } expectedConfigs[] = { |
| 344 | {"8888", {"a", "b", "c"}}, |
| 345 | {"gpu", {"zz", "qq", nullptr}}, |
brianosman | 577e025 | 2016-07-27 09:21:51 -0700 | [diff] [blame] | 346 | #if SK_ANGLE |
| 347 | { "gpu",{ "a", nullptr, nullptr } } // With SK_ANGLE, angle-gl becomes gpu(api=angle-gl) |
| 348 | #else |
| 349 | { "angle-gl",{ "a", nullptr, nullptr } } // The angle-gl tag is only tag that contains |
| 350 | // hyphen. |
| 351 | #endif |
kkinnunen | 3e980c3 | 2015-12-23 01:33:00 -0800 | [diff] [blame] | 352 | }; |
| 353 | for (int i = 0; i < config1.count(); ++i) { |
| 354 | REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i])); |
| 355 | REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend)); |
| 356 | for (int j = 0; j < static_cast<int>(SK_ARRAY_COUNT(expectedConfigs[i].vias)); ++j) { |
| 357 | if (!expectedConfigs[i].vias[j]) { |
| 358 | REPORTER_ASSERT(reporter, configs[i]->getViaParts().count() == j); |
| 359 | break; |
| 360 | } |
| 361 | REPORTER_ASSERT(reporter, |
| 362 | configs[i]->getViaParts()[j].equals(expectedConfigs[i].vias[j])); |
| 363 | } |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | DEF_TEST(ParseConfigs_ViaParsingExtendedForm, reporter) { |
| 368 | SkCommandLineFlags::StringArray config1 = make_string_array({ |
| 369 | "zz-qq-gpu(api=gles)", |
| 370 | "a-gpu(samples=1", |
| 371 | "abc-def-angle-gl(samples=1)", |
| 372 | }); |
| 373 | |
| 374 | SkCommandLineConfigArray configs; |
| 375 | ParseConfigs(config1, &configs); |
| 376 | const struct { |
| 377 | const char* backend; |
| 378 | const char* vias[3]; |
| 379 | } expectedConfigs[] = { |
| 380 | #if SK_SUPPORT_GPU |
| 381 | {"gpu", {"zz", "qq", nullptr}}, |
| 382 | #else |
| 383 | {"gpu(api=gles)", {"zz", "qq", nullptr}}, |
| 384 | #endif |
| 385 | {"gpu(samples=1", {"a", nullptr, nullptr}}, // This is not extended form, but via still |
| 386 | // works as expected. |
| 387 | {"gl(samples=1)", {"abc", "def", "angle"}} // This is not extended form. Also |
| 388 | // angle-gl is not a "backend" in this case. |
| 389 | }; |
| 390 | for (int i = 0; i < config1.count(); ++i) { |
| 391 | REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i])); |
| 392 | REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend)); |
| 393 | for (int j = 0; j < static_cast<int>(SK_ARRAY_COUNT(expectedConfigs[i].vias)); ++j) { |
| 394 | if (!expectedConfigs[i].vias[j]) { |
| 395 | REPORTER_ASSERT(reporter, configs[i]->getViaParts().count() == |
| 396 | static_cast<int>(j)); |
| 397 | break; |
| 398 | } |
| 399 | REPORTER_ASSERT(reporter, |
| 400 | configs[i]->getViaParts()[j].equals(expectedConfigs[i].vias[j])); |
| 401 | } |
| 402 | } |
| 403 | #if SK_SUPPORT_GPU |
| 404 | REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()); |
| 405 | REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu()); |
| 406 | REPORTER_ASSERT(reporter, !configs[2]->asConfigGpu()); |
| 407 | #endif |
| 408 | } |