Searched refs:ChainedStruct (Results 1 – 20 of 20) sorted by relevance
| /third_party/skia/third_party/externals/dawn/generator/templates/dawn_native/ |
| D | ChainUtils.h | 24 void FindInChain(const ChainedStruct* chain, const {{as_cppEnum(value.name)}}** out); 34 MaybeError ValidateSTypes(const ChainedStruct* chain, 38 MaybeError ValidateSingleSTypeInner(const ChainedStruct* chain, T sType) { 45 MaybeError ValidateSingleSTypeInner(const ChainedStruct* chain, T sType, Args... sTypes) { 55 MaybeError ValidateSingleSType(const ChainedStruct* chain, T sType) { 67 MaybeError ValidateSingleSType(const ChainedStruct* chain, T sType, Args... sTypes) {
|
| D | wgpu_structs.h | 37 struct ChainedStruct { 38 ChainedStruct const * nextInChain = nullptr; 44 struct {{as_cppType(type.name)}} : ChainedStruct { 52 ChainedStruct const * nextInChain = nullptr; 58 alignas(ChainedStruct) {{member_declaration}};
|
| D | wgpu_structs.cpp | 26 static_assert(sizeof(ChainedStruct) == sizeof(WGPUChainedStruct), 28 static_assert(alignof(ChainedStruct) == alignof(WGPUChainedStruct), 30 static_assert(offsetof(ChainedStruct, nextInChain) == offsetof(WGPUChainedStruct, next), 32 static_assert(offsetof(ChainedStruct, sType) == offsetof(WGPUChainedStruct, sType),
|
| D | ChainUtils.cpp | 23 void FindInChain(const ChainedStruct* chain, const {{as_cppEnum(value.name)}}** out) { 34 MaybeError ValidateSTypes(const ChainedStruct* chain,
|
| /third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
| D | WindowSurfaceTests.cpp | 87 std::unique_ptr<wgpu::ChainedStruct> chainedDescriptor = in TEST_F() 106 wgpu::ChainedStruct chainedDescriptor; in TEST_F() 129 std::unique_ptr<wgpu::ChainedStruct> chainedDescriptor1 = in TEST_F() 131 std::unique_ptr<wgpu::ChainedStruct> chainedDescriptor2 = in TEST_F() 146 std::unique_ptr<wgpu::ChainedStruct> chainedDescriptor = in TEST_F() 182 std::unique_ptr<wgpu::ChainedStruct> chainedDescriptor = in TEST_F() 222 std::unique_ptr<wgpu::ChainedStruct> chainedDescriptor = in TEST_F()
|
| D | IOSurfaceWrappingTests.cpp | 145 wgpu::ChainedStruct chainedDescriptor; in TEST_P()
|
| D | D3D12ResourceWrappingTests.cpp | 189 wgpu::ChainedStruct chainedDescriptor; in TEST_P()
|
| /third_party/skia/third_party/externals/dawn/src/utils/ |
| D | GLFWUtils.cpp | 52 std::unique_ptr<wgpu::ChainedStruct> chainedDescriptor = in CreateSurfaceForWindow() 63 std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptorForTesting( in SetupWindowAndGetSurfaceDescriptorForTesting() 72 std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptorForTesting( in SetupWindowAndGetSurfaceDescriptorForTesting() 83 std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptorForTesting(GLFWwindow*) { in SetupWindowAndGetSurfaceDescriptorForTesting()
|
| D | GLFWUtils.h | 37 std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptorForTesting(
|
| D | GLFWUtils_metal.mm | 31 std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptorForTesting(
|
| /third_party/skia/third_party/externals/dawn/generator/templates/ |
| D | api.h | 100 typedef struct {{c_prefix}}ChainedStruct { 101 struct {{c_prefix}}ChainedStruct const * next; 103 } {{c_prefix}}ChainedStruct; 115 {{c_prefix}}ChainedStruct{{Out}} {{const}}* nextInChain; 118 {{c_prefix}}ChainedStruct{{Out}} chain;
|
| D | api_cpp.h | 201 struct ChainedStruct { 202 ChainedStruct const * nextInChain = nullptr; 207 ChainedStruct * nextInChain = nullptr; 215 struct {{as_cppType(type.name)}} : ChainedStruct{{Out}} { 223 ChainedStruct{{Out}} {{const}} * nextInChain = nullptr; 229 alignas(ChainedStruct{{Out}}) {{member_declaration}};
|
| D | webgpu_cpp.cpp | 56 static_assert(sizeof(ChainedStruct) == sizeof(WGPUChainedStruct), 58 static_assert(alignof(ChainedStruct) == alignof(WGPUChainedStruct), 60 static_assert(offsetof(ChainedStruct, nextInChain) == offsetof(WGPUChainedStruct, next), 62 static_assert(offsetof(ChainedStruct, sType) == offsetof(WGPUChainedStruct, sType),
|
| /third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/ |
| D | WireCmd.cpp | 489 {% set ChainedStruct = "WGPUChainedStructOut" if out else "WGPUChainedStruct" %} 621 {{ChainedStruct}}* outStruct; 622 WIRE_TRY(GetSpace(allocator, sizeof({{ChainedStruct}}), &outStruct));
|
| /third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/ |
| D | WireExtensionTests.cpp | 28 TEST_F(WireExtensionTests, ChainedStruct) { in TEST_F() argument
|
| /third_party/skia/third_party/externals/dawn/src/tests/white_box/ |
| D | EGLImageWrappingTests.cpp | 202 wgpu::ChainedStruct chainedDescriptor; in TEST_P()
|
| D | VulkanImageWrappingTestsDmaBuf.cpp | 208 wgpu::ChainedStruct chainedDescriptor; in TEST_P()
|
| D | VulkanImageWrappingTestsOpaqueFD.cpp | 289 wgpu::ChainedStruct chainedDescriptor; in TEST_P()
|
| /third_party/skia/third_party/externals/dawn/src/dawn_native/ |
| D | ShaderModule.cpp | 986 const ChainedStruct* chainedDescriptor = descriptor->nextInChain; in ValidateShaderModuleDescriptor()
|
| /third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
| D | BindGroupValidationTests.cpp | 96 wgpu::ChainedStruct chainedDescriptor; in TEST_F()
|