Home
last modified time | relevance | path

Searched refs:BackendTestConfig (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/tests/
DParamGenerator.h117 struct BackendTestConfig;
122 const BackendTestConfig* params,
127 auto MakeParamGenerator(std::vector<BackendTestConfig>&& first, in MakeParamGenerator()
134 auto MakeParamGenerator(std::vector<BackendTestConfig>&& first, std::vector<Params>&&... params) { in MakeParamGenerator()
DDawnTest.h132 struct BackendTestConfig { struct
133 BackendTestConfig(wgpu::BackendType backendType,
154 AdapterTestParam(const BackendTestConfig& config, argument
164 BackendTestConfig D3D12Backend(std::initializer_list<const char*> forceEnabledWorkarounds = {},
167 BackendTestConfig MetalBackend(std::initializer_list<const char*> forceEnabledWorkarounds = {},
170 BackendTestConfig NullBackend(std::initializer_list<const char*> forceEnabledWorkarounds = {},
173 BackendTestConfig OpenGLBackend(std::initializer_list<const char*> forceEnabledWorkarounds = {},
176 BackendTestConfig OpenGLESBackend(std::initializer_list<const char*> forceEnabledWorkarounds = {},
179 BackendTestConfig VulkanBackend(std::initializer_list<const char*> forceEnabledWorkarounds = {},
216 const BackendTestConfig* params,
[all …]
DDawnTest.cpp114 BackendTestConfig::BackendTestConfig(wgpu::BackendType backendType, in BackendTestConfig() function in BackendTestConfig
122 BackendTestConfig D3D12Backend(std::initializer_list<const char*> forceEnabledWorkarounds, in D3D12Backend()
124 return BackendTestConfig(wgpu::BackendType::D3D12, forceEnabledWorkarounds, in D3D12Backend()
128 BackendTestConfig MetalBackend(std::initializer_list<const char*> forceEnabledWorkarounds, in MetalBackend()
130 return BackendTestConfig(wgpu::BackendType::Metal, forceEnabledWorkarounds, in MetalBackend()
134 BackendTestConfig NullBackend(std::initializer_list<const char*> forceEnabledWorkarounds, in NullBackend()
136 return BackendTestConfig(wgpu::BackendType::Null, forceEnabledWorkarounds, in NullBackend()
140 BackendTestConfig OpenGLBackend(std::initializer_list<const char*> forceEnabledWorkarounds, in OpenGLBackend()
142 return BackendTestConfig(wgpu::BackendType::OpenGL, forceEnabledWorkarounds, in OpenGLBackend()
146 BackendTestConfig OpenGLESBackend(std::initializer_list<const char*> forceEnabledWorkarounds, in OpenGLESBackend()
[all …]