Lines Matching defs:other
467 VkVideoCoreProfile(const VkVideoCoreProfile& other)
469 copyProfile(other);
472 VkVideoCoreProfile& operator=(const VkVideoCoreProfile& other)
474 copyProfile(other);
478 bool operator==(const VkVideoCoreProfile& other) const
480 if (m_profile.videoCodecOperation != other.m_profile.videoCodecOperation)
485 if (m_profile.chromaSubsampling != other.m_profile.chromaSubsampling)
490 if (m_profile.lumaBitDepth != other.m_profile.lumaBitDepth)
495 if (m_profile.chromaBitDepth != other.m_profile.chromaBitDepth)
506 auto* theirs = (VkVideoDecodeH264ProfileInfoKHR*)other.m_profile.pNext;
518 auto* theirs = (VkVideoDecodeH265ProfileInfoKHR*)other.m_profile.pNext;
534 bool operator!=(const VkVideoCoreProfile& other) const
536 return !(*this == other);