Lines Matching refs:ycbcrCreateInfo
38 VkSamplerYcbcrConversionCreateInfo ycbcrCreateInfo; in Create() local
39 ycbcrCreateInfo.sType = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO; in Create()
40 ycbcrCreateInfo.pNext = nullptr; in Create()
41 ycbcrCreateInfo.format = info.fFormat; in Create()
42 ycbcrCreateInfo.ycbcrModel = info.fYcbcrModel; in Create()
43 ycbcrCreateInfo.ycbcrRange = info.fYcbcrRange; in Create()
47 ycbcrCreateInfo.components = {VK_COMPONENT_SWIZZLE_IDENTITY, VK_COMPONENT_SWIZZLE_IDENTITY, in Create()
49 ycbcrCreateInfo.xChromaOffset = info.fXChromaOffset; in Create()
50 ycbcrCreateInfo.yChromaOffset = info.fYChromaOffset; in Create()
51 ycbcrCreateInfo.chromaFilter = info.fChromaFilter; in Create()
52 ycbcrCreateInfo.forceExplicitReconstruction = info.fForceExplicitReconstruction; in Create()
62 ycbcrCreateInfo.pNext = &externalFormat; in Create()
72 ycbcrCreateInfo.pNext = &externalFormat; in Create()
85 GR_VK_CALL_RESULT(gpu, result, CreateSamplerYcbcrConversion(gpu->device(), &ycbcrCreateInfo, in Create()