/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
D | PipelineAndPassCompatibilityTests.cpp | 24 wgpu::TextureFormat kFormat = wgpu::TextureFormat::Depth24PlusStencil8; variable 90 kFormat, depthStencilReadOnlyInPass, depthStencilReadOnlyInPass); in TEST_F() 93 CreatePipeline(kFormat, depthWriteInPipeline, stencilWriteInPipeline); in TEST_F() 114 desc.depthStencilFormat = kFormat; in TEST_F() 123 CreatePipeline(kFormat, depthWriteInPipeline, stencilWriteInPipeline); in TEST_F() 146 desc.depthStencilFormat = kFormat; in TEST_F() 153 kFormat, !depthStencilReadOnlyInBundle, !depthStencilReadOnlyInBundle); in TEST_F() 162 kFormat, depthStencilReadOnlyInPass, depthStencilReadOnlyInPass); in TEST_F()
|
D | StorageTextureValidationTests.cpp | 295 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::R32Float; in TEST_F() local 300 CreateComputeShaderWithStorageTexture(bindingType, kFormat, dimension); in TEST_F() 312 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::R32Float; in TEST_F() local 317 device, {{0, wgpu::ShaderStage::Compute, bindingType, kFormat, dimension}})); in TEST_F() 696 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; in TEST_F() local 697 wgpu::Texture storageTexture = CreateTexture(wgpu::TextureUsage::StorageBinding, kFormat); in TEST_F() 699 wgpu::Texture outputAttachment = CreateTexture(wgpu::TextureUsage::RenderAttachment, kFormat); in TEST_F() 705 device, {{0, wgpu::ShaderStage::Fragment, storageTextureType, kFormat}}); in TEST_F() 724 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; in TEST_F() local 726 wgpu::TextureUsage::StorageBinding | wgpu::TextureUsage::TextureBinding, kFormat); in TEST_F() [all …]
|
D | TextureSubresourceTests.cpp | 24 static constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; member in __anonadcde06b0111::TextureSubresourceTest 35 texDesc.format = kFormat; in CreateTexture() 43 viewDesc.format = kFormat; in CreateTextureView() 90 kFormat}}); in TestRenderPass()
|
D | ResourceUsageTrackingTests.cpp | 77 static constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; member in __anonf2ecc5980111::ResourceUsageTrackingTest 855 {1, wgpu::ShaderStage::Compute, wgpu::StorageTextureAccess::WriteOnly, kFormat}}); in TEST_F() 941 {{0, wgpu::ShaderStage::Fragment, wgpu::StorageTextureAccess::WriteOnly, kFormat}}); in TEST_F() 980 {{0, wgpu::ShaderStage::Compute, wgpu::StorageTextureAccess::WriteOnly, kFormat}, in TEST_F() 981 {1, wgpu::ShaderStage::Compute, wgpu::StorageTextureAccess::WriteOnly, kFormat}}); in TEST_F() 1007 descriptor.format = kFormat; in TEST_F() 1112 {{0, wgpu::ShaderStage::Compute, wgpu::StorageTextureAccess::WriteOnly, kFormat}}); in TEST_F() 1140 {{0, wgpu::ShaderStage::Compute, wgpu::StorageTextureAccess::WriteOnly, kFormat}}); in TEST_F() 1179 {{0, wgpu::ShaderStage::Fragment, wgpu::StorageTextureAccess::WriteOnly, kFormat}}); in TEST_F() 1210 {{0, wgpu::ShaderStage::Compute, wgpu::StorageTextureAccess::WriteOnly, kFormat}}); in TEST_F() [all …]
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | ExternalTextureTests.cpp | 42 static constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; member in __anoncba1d58f0111::ExternalTextureTests 48 wgpu::Texture texture = Create2DTexture(device, kWidth, kHeight, kFormat, kSampledUsage); in TEST_P() 56 externalDesc.format = kFormat; in TEST_P() 85 Create2DTexture(device, kWidth, kHeight, kFormat, in TEST_P() 88 Create2DTexture(device, kWidth, kHeight, kFormat, in TEST_P() 109 externalDesc.format = kFormat; in TEST_P() 128 descriptor.cTargets[0].format = kFormat; in TEST_P()
|
D | Texture3DTests.cpp | 22 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; variable 69 descriptor.format = kFormat; in TEST_P() 74 uint32_t bytesPerRow = utils::GetMinimumBytesPerRow(kFormat, copySize.width); in TEST_P() 76 utils::RequiredBytesInCopy(bytesPerRow, copySize.height, copySize, kFormat); in TEST_P() 77 const uint32_t bytesPerTexel = utils::GetTexelBlockSizeInBytes(kFormat); in TEST_P()
|
D | TextureSubresourceTests.cpp | 23 static constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; member in TextureSubresourceTest 34 texDesc.format = kFormat; in CreateTexture() 42 viewDesc.format = kFormat; in CreateTextureView() 72 descriptor.cTargets[0].format = kFormat; in DrawTriangle() 116 descriptor.cTargets[0].format = kFormat; in SampleAndDraw()
|
D | RenderPassTests.cpp | 21 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; variable 49 descriptor.cTargets[0].format = kFormat; in SetUp() 61 descriptor.format = kFormat; in CreateDefault2DTexture() 147 descriptor.cTargets[0].format = kFormat; in TEST_P()
|
D | QueueTests.cpp | 321 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::RGBA8Unorm; in DoSimpleWriteTextureTest() local 331 descriptor.format = kFormat; in DoSimpleWriteTextureTest()
|
D | CopyTests.cpp | 977 constexpr wgpu::TextureFormat kFormat = wgpu::TextureFormat::Depth32Float; in TEST_P() local 981 textureDescriptor.format = kFormat; in TEST_P() 999 kBufferCopyOffset + utils::GetTexelBlockSizeInBytes(kFormat) * kPixelsPerRow; in TEST_P()
|
/third_party/flutter/skia/third_party/externals/dawn/src/tests/end2end/ |
D | RenderPassTests.cpp | 21 constexpr dawn::TextureFormat kFormat = dawn::TextureFormat::RGBA8Unorm; variable 50 descriptor.cColorStates[0]->format = kFormat; in SetUp() 63 descriptor.format = kFormat; in CreateDefault2DTexture()
|
/third_party/node/lib/internal/ |
D | url.js | 109 const kFormat = Symbol('format'); constant 402 [kFormat]: { 456 return this[kFormat]({}); 463 return this[kFormat]({}); 706 return this[kFormat]({}); 1489 formatSymbol: kFormat,
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/dynamic_state/ |
D | vktDynamicStateInheritanceTests.cpp | 57 static const VkFormat kFormat = VK_FORMAT_B8G8R8A8_UNORM; variable 333 kFormat, 387 kFormat, {}, { VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1 } } in InheritanceTestInstance() 398 colorAttachment.format = kFormat;
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/ |
D | vktDynamicStateInheritanceTests.cpp | 57 static const VkFormat kFormat = VK_FORMAT_B8G8R8A8_UNORM; variable 333 kFormat, 387 kFormat, {}, { VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1 } } in InheritanceTestInstance() 398 colorAttachment.format = kFormat;
|
/third_party/skia/gm/ |
D | compositor_quads.cpp | 590 static const char* kFormat = "Ext(%s) - Int(%s)"; in drawBanner() local 595 config.appendf(kFormat, "yes", "yes"); in drawBanner() 597 config.appendf(kFormat, "no", "no"); in drawBanner() 600 config.appendf(kFormat, "yes", "no"); in drawBanner()
|
/third_party/flutter/skia/gm/ |
D | compositor_quads.cpp | 588 static const char* kFormat = "Ext(%s) - Int(%s)"; in drawBanner() local 593 config.appendf(kFormat, "yes", "yes"); in drawBanner() 595 config.appendf(kFormat, "no", "no"); in drawBanner() 598 config.appendf(kFormat, "yes", "no"); in drawBanner()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | numberformattesttuple.h | 27 kFormat, enumerator
|
/third_party/gn/src/gn/ |
D | commands.h | 66 extern const char kFormat[];
|
D | command_format.cc | 43 const char kFormat[] = "format"; variable
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
D | name_table.cc | 373 new_data->WriteUShort(NameTable::Offset::kFormat, 0); in SubSerialize() 443 return data_->ReadUShort(Offset::kFormat); in Format()
|
D | name_table.h | 685 kFormat = 0, enumerator
|
D | cmap_table.h | 601 kFormat = 0, enumerator
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
D | name_table.cc | 373 new_data->WriteUShort(NameTable::Offset::kFormat, 0); in SubSerialize() 443 return data_->ReadUShort(Offset::kFormat); in Format()
|
D | name_table.h | 685 kFormat = 0, enumerator
|
D | cmap_table.h | 601 kFormat = 0, enumerator
|