Home
last modified time | relevance | path

Searched refs:mockOptions (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/tests/
DGrCCPRTest.cpp144 GrMockOptions mockOptions; in run() local
145 mockOptions.fInstanceAttribSupport = true; in run()
146 mockOptions.fHalfFloatVertexAttributeSupport = true; in run()
147 mockOptions.fMapBufferFlags = GrCaps::kCanMap_MapFlag; in run()
148 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_F16].fRenderability = in run()
150 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_F16].fTexturable = true; in run()
151 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_8].fRenderability = in run()
153 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_8].fTexturable = true; in run()
154 mockOptions.fGeometryShaderSupport = true; in run()
155 mockOptions.fIntegerSupport = true; in run()
[all …]
DLazyProxyTest.cpp203 GrMockOptions mockOptions; variable
204 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_F16].fRenderability =
206 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_F16].fTexturable = true;
207 sk_sp<GrContext> ctx = GrContext::MakeMock(&mockOptions, GrContextOptions());
227 GrMockOptions mockOptions; variable
228 sk_sp<GrContext> ctx = GrContext::MakeMock(&mockOptions, GrContextOptions());
374 GrMockOptions mockOptions; variable
375 sk_sp<GrContext> ctx = GrContext::MakeMock(&mockOptions, GrContextOptions());
439 GrMockOptions mockOptions; variable
440 sk_sp<GrContext> ctx = GrContext::MakeMock(&mockOptions, GrContextOptions());
DGrPorterDuffTest.cpp31 GrMockOptions mockOptions; variable
32 mockOptions.fDualSourceBlendingSupport = true;
33 auto context = GrContext::MakeMock(&mockOptions, GrContextOptions());
/third_party/skia/bench/
DTessellateBench.cpp30 GrMockOptions mockOptions; in make_mock_context() local
31 mockOptions.fDrawInstancedSupport = true; in make_mock_context()
32 mockOptions.fMaxTessellationSegments = 64; in make_mock_context()
33 mockOptions.fMapBufferFlags = GrCaps::kCanMap_MapFlag; in make_mock_context()
34 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_8].fRenderability = in make_mock_context()
36 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_8].fTexturable = true; in make_mock_context()
37 mockOptions.fIntegerSupport = true; in make_mock_context()
43 return GrDirectContext::MakeMock(&mockOptions, ctxOptions); in make_mock_context()
/third_party/skia/tests/
DLazyProxyTest.cpp213 GrMockOptions mockOptions; variable
214 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_F16].fRenderability =
216 mockOptions.fConfigOptions[(int)GrColorType::kAlpha_F16].fTexturable = true;
217 sk_sp<GrDirectContext> ctx = GrDirectContext::MakeMock(&mockOptions, GrContextOptions());
240 GrMockOptions mockOptions; variable
241 sk_sp<GrDirectContext> ctx = GrDirectContext::MakeMock(&mockOptions, GrContextOptions());
404 GrMockOptions mockOptions; variable
405 sk_sp<GrDirectContext> ctx = GrDirectContext::MakeMock(&mockOptions, GrContextOptions());
DGrMipMappedTest.cpp419 GrMockOptions mockOptions; variable
420 mockOptions.fMipmapSupport = true;
423 sk_sp<GrDirectContext> dContext = GrDirectContext::MakeMock(&mockOptions, ctxOptions);
DGrPorterDuffTest.cpp31 GrMockOptions mockOptions; variable
32 mockOptions.fDualSourceBlendingSupport = true;
33 sk_sp<GrDirectContext> context = GrDirectContext::MakeMock(&mockOptions, GrContextOptions());
/third_party/flutter/skia/src/gpu/
DGrLegacyDirectContext.cpp155 sk_sp<GrContext> GrContext::MakeMock(const GrMockOptions* mockOptions) { in MakeMock() argument
157 return MakeMock(mockOptions, defaultOptions); in MakeMock()
160 sk_sp<GrContext> GrContext::MakeMock(const GrMockOptions* mockOptions, in MakeMock() argument
164 context->fGpu = GrMockGpu::Make(mockOptions, options, context.get()); in MakeMock()
/third_party/skia/src/gpu/mock/
DGrMockGpu.cpp49 sk_sp<GrGpu> GrMockGpu::Make(const GrMockOptions* mockOptions, in Make() argument
52 if (!mockOptions) { in Make()
53 mockOptions = &kDefaultOptions; in Make()
55 return sk_sp<GrGpu>(new GrMockGpu(direct, *mockOptions, contextOptions)); in Make()
/third_party/flutter/skia/src/gpu/mock/
DGrMockGpu.cpp46 sk_sp<GrGpu> GrMockGpu::Make(const GrMockOptions* mockOptions, in Make() argument
49 if (!mockOptions) { in Make()
50 mockOptions = &kDefaultOptions; in Make()
52 return sk_sp<GrGpu>(new GrMockGpu(context, *mockOptions, contextOptions)); in Make()
/third_party/skia/src/gpu/
DGrDirectContext.cpp1062 sk_sp<GrDirectContext> GrDirectContext::MakeMock(const GrMockOptions* mockOptions) { in MakeMock() argument
1064 return MakeMock(mockOptions, defaultOptions); in MakeMock()
1067 sk_sp<GrDirectContext> GrDirectContext::MakeMock(const GrMockOptions* mockOptions, in MakeMock() argument
1071 direct->fGpu = GrMockGpu::Make(mockOptions, options, direct.get()); in MakeMock()
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ios/
Dsimulators_test.dart464 final DebuggingOptions mockOptions = DebuggingOptions.disabled(mockInfo);
465 await device.startApp(package, prebuiltApplication: true, debuggingOptions: mockOptions);