Home
last modified time | relevance | path

Searched refs:formats (Results 1351 - 1375 of 2160) sorted by relevance

1...<<51525354555657585960>>...87

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineDepthTests.cpp91 tcu::TestStatus testSupportsAtLeastOneDepthStencilFormat (Context& context, const std::vector<VkFormat> formats) in testSupportsAtLeastOneDepthStencilFormat() argument
96 DE_ASSERT(!formats.empty()); in testSupportsAtLeastOneDepthStencilFormat()
98 for (size_t formatNdx = 0; formatNdx < formats.size(); formatNdx++) in testSupportsAtLeastOneDepthStencilFormat()
100 const VkFormat format = formats[formatNdx]; in testSupportsAtLeastOneDepthStencilFormat()
109 if (formatNdx < formats.size() - 1) in testSupportsAtLeastOneDepthStencilFormat()
115 return tcu::TestStatus::pass(std::string("Supported depth/stencil formats: ") + supportedFormatsMsg.str()); in testSupportsAtLeastOneDepthStencilFormat()
117 return tcu::TestStatus::fail("All depth/stencil formats are unsupported"); in testSupportsAtLeastOneDepthStencilFormat()
1304 // Sets where at least one of the formats must be supported in createDepthTests()
1327 // Uses different depth formats in createDepthTests()
H A DvktPipelineVertexInputTests.cpp390 // double formats with more than 2 components will take 2 locations in getConsumedLocations()
1235 // Create vertex attribute array and check if their VK formats are supported in VertexInputInstance()
1829 // Scaled formats in createSingleAttributeCases()
1849 // SRGB formats in createSingleAttributeCases()
1857 // Double formats in createSingleAttributeCases()
1863 // Packed formats in createSingleAttributeCases()
1978 const std::vector<VkFormat>& formats = compatibleFormats[newAttributeInfos[i].glslType].compatibleVkFormats; in createMultipleAttributeCases() local
1979 newAttributeInfos[i].vkType = formats[randomFunc.getUint32() % formats.size()]; in createMultipleAttributeCases()
2000 // Required vertex formats, unpacke in createMultipleAttributeTests()
2222 const std::vector<VkFormat>& formats = compatibleFormats[glslType].compatibleVkFormats; createMaxAttributeTests() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp137 // Auxiliar class to group depth formats by compatibility in bit size and format. Note there is at most one alternative format for
1074 // formats containing just depth component in verifyDepth()
1395 FormatData formats[] = in initTests() local
1497 // iterate over depth/stencil formats in initTests()
1498 for (size_t formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in initTests()
1500 const FormatData& formatData = formats[formatNdx]; in initTests()
1636 // All formats with stencil and depth aspects have incompatible formats and sizes in the depth in initTests()
1638 // format has no compatible formats that can be used. in initTests()
1681 // iterate over depth/stencil formats in initTests()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesImageSparseResidency.cpp1037 auto formats = getTestFormats(imageType); in getSparseResidencyTestFormats() local
1040 formats.push_back(TestFormat{ VK_FORMAT_A8_UNORM_KHR }); in getSparseResidencyTestFormats()
1042 return formats; in getSparseResidencyTestFormats()
1063 for (size_t formatNdx = 0; formatNdx < imageParameters[imageTypeNdx].formats.size(); ++formatNdx) in createImageSparseResidencyTestsCommon()
1065 const VkFormat format = imageParameters[imageTypeNdx].formats[formatNdx].format; in createImageSparseResidencyTestsCommon()
1073 // skip test for images with odd sizes for some YCbCr formats in createImageSparseResidencyTestsCommon()
/third_party/skia/src/gpu/vk/
H A DGrVkCaps.cpp803 void GrVkCaps::setColorType(GrColorType colorType, std::initializer_list<VkFormat> formats) { in setColorType() argument
812 for (auto it = formats.begin(); it != formats.end(); ++it) { in setColorType()
823 for (auto it = formats.begin(); it != formats.end(); ++it) { in setColorType()
858 // Go through all the formats and init their support surface and data GrColorTypes. in initFormatTable()
1316 // Map GrColorTypes (used for creating GrSurfaces) to VkFormats. The order in which the formats in initFormatTable()
1430 // All external formats have a valid ycbcrInfo used for sampling and a non zero external format. in backend_format_is_external()
1571 // We don't support the ability to upload to external formats or formats tha in supportedWritePixelsColorType()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineDepthTests.cpp89 tcu::TestStatus testSupportsAtLeastOneDepthStencilFormat (Context& context, const std::vector<VkFormat> formats) in testSupportsAtLeastOneDepthStencilFormat() argument
94 DE_ASSERT(!formats.empty()); in testSupportsAtLeastOneDepthStencilFormat()
96 for (size_t formatNdx = 0; formatNdx < formats.size(); formatNdx++) in testSupportsAtLeastOneDepthStencilFormat()
98 const VkFormat format = formats[formatNdx]; in testSupportsAtLeastOneDepthStencilFormat()
107 if (formatNdx < formats.size() - 1) in testSupportsAtLeastOneDepthStencilFormat()
113 return tcu::TestStatus::pass(std::string("Supported depth/stencil formats: ") + supportedFormatsMsg.str()); in testSupportsAtLeastOneDepthStencilFormat()
115 return tcu::TestStatus::fail("All depth/stencil formats are unsupported"); in testSupportsAtLeastOneDepthStencilFormat()
1279 // Sets where at least one of the formats must be supported in createDepthTests()
1304 de::MovePtr<tcu::TestCaseGroup> formatTests (new tcu::TestCaseGroup(testCtx, "format", "Uses different depth formats")); in createDepthTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp137 // Auxiliar class to group depth formats by compatibility in bit size and format. Note there is at most one alternative format for
1074 // formats containing just depth component in verifyDepth()
1395 FormatData formats[] = in initTests() local
1495 // iterate over depth/stencil formats in initTests()
1496 for (size_t formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in initTests()
1498 const FormatData& formatData = formats[formatNdx]; in initTests()
1634 // All formats with stencil and depth aspects have incompatible formats and sizes in the depth in initTests()
1636 // format has no compatible formats that can be used. in initTests()
1679 // iterate over depth/stencil formats in initTests()
[all...]
/kernel/linux/linux-5.10/drivers/usb/gadget/function/
H A Duvc_configfs.c919 struct list_head formats; member
986 list_add_tail(&format_ptr->entry, &src_hdr->formats); in uvcg_streaming_header_allow_link()
1018 list_for_each_entry_safe(format_ptr, tmp, &src_hdr->formats, entry) in uvcg_streaming_header_drop_link()
1096 INIT_LIST_HEAD(&h->formats); in uvcg_streaming_header_make()
2056 list_for_each_entry(f, &h->formats, entry) { in __uvcg_iter_strm_cls()
2155 list_for_each_entry(f, &h->formats, entry) { in __uvcg_fill_strm()
/kernel/linux/linux-5.10/sound/soc/codecs/
H A Dtscs454.c3341 .formats = TSCS454_FORMATS,},
3347 .formats = TSCS454_FORMATS,},
3361 .formats = TSCS454_FORMATS,},
3367 .formats = TSCS454_FORMATS,},
3381 .formats = TSCS454_FORMATS,},
3387 .formats = TSCS454_FORMATS,},
H A Dak4118.c257 .formats = SNDRV_PCM_FMTBIT_S16_LE |
H A Dak5558.c265 .formats = AK5558_FORMATS,
H A Dcs4349.c250 .formats = CS4349_PCM_FORMATS,
H A Dcs4341.c188 .formats = SNDRV_PCM_FMTBIT_S16_LE |
H A Dmax98371.c338 .formats = MAX98371_FORMATS,
H A Dpcm1681.c260 .formats = PCM1681_PCM_FORMATS,
/kernel/linux/linux-6.6/sound/soc/codecs/
H A Dtscs454.c3346 .formats = TSCS454_FORMATS,},
3352 .formats = TSCS454_FORMATS,},
3366 .formats = TSCS454_FORMATS,},
3372 .formats = TSCS454_FORMATS,},
3386 .formats = TSCS454_FORMATS,},
3392 .formats = TSCS454_FORMATS,},
/kernel/linux/linux-5.10/sound/pci/hda/
H A Dpatch_si3054.c176 .formats = SNDRV_PCM_FMTBIT_S16_LE,
/kernel/linux/linux-5.10/sound/sh/
H A Dsh_dac_audio.c86 .formats = SNDRV_PCM_FMTBIT_U8,
/kernel/linux/linux-5.10/sound/drivers/pcsp/
H A Dpcsp_lib.c286 .formats = (SNDRV_PCM_FMTBIT_U8
/kernel/linux/linux-5.10/sound/core/
H A Dpcm_dmaengine.c422 * hw.formats set to 0, meaning no restrictions are in place. in snd_dmaengine_pcm_refine_runtime_hwparams()
428 * Prepare formats mask for valid/allowed sample types. If the in snd_dmaengine_pcm_refine_runtime_hwparams()
450 hw->formats |= pcm_format_to_bits(i); in snd_dmaengine_pcm_refine_runtime_hwparams()
/kernel/linux/linux-5.10/sound/soc/fsl/
H A Dfsl_mqs.c165 .formats = FSL_MQS_FORMATS,
H A Dimx-pcm-fiq.c164 .formats = SNDRV_PCM_FMTBIT_S16_LE,
/kernel/linux/linux-5.10/sound/soc/img/
H A Dimg-parallel-out.c200 .formats = SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S24_LE
/kernel/linux/linux-5.10/sound/soc/meson/
H A Daxg-fifo.c32 .formats = AXG_FIFO_FORMATS,
H A Daxg-card.c33 .formats = SNDRV_PCM_FMTBIT_S24_LE,

Completed in 37 milliseconds

1...<<51525354555657585960>>...87