Lines Matching refs:sycci
793 VkSamplerYcbcrConversionCreateInfo sycci = {0};
794 sycci.sType = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO;
795 sycci.pNext = NULL;
796 sycci.format = VK_FORMAT_G8_B8R8_2PLANE_420_UNORM;
797 sycci.ycbcrModel = VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709;
798 sycci.ycbcrRange = VK_SAMPLER_YCBCR_RANGE_ITU_FULL;
799 sycci.components.r = VK_COMPONENT_SWIZZLE_IDENTITY;
800 sycci.components.g = VK_COMPONENT_SWIZZLE_IDENTITY;
801 sycci.components.b = VK_COMPONENT_SWIZZLE_IDENTITY;
802 sycci.components.a = VK_COMPONENT_SWIZZLE_IDENTITY;
804 sycci.xChromaOffset = VK_CHROMA_LOCATION_COSITED_EVEN;
805 sycci.yChromaOffset = VK_CHROMA_LOCATION_COSITED_EVEN;
808 sycci.xChromaOffset = VK_CHROMA_LOCATION_MIDPOINT;
809 sycci.yChromaOffset = VK_CHROMA_LOCATION_MIDPOINT;
811 sycci.chromaFilter = VK_FILTER_LINEAR;
812 sycci.forceExplicitReconstruction = VK_FALSE;
813 VkResult res = VKSCR(CreateSamplerYcbcrConversion)(screen->dev, &sycci, NULL, &obj->sampler_conversion);