Lines Matching defs:props
85 VkPhysicalDeviceProperties2 props;
158 #define RELEASE_PROPS(props, count) \
159 if (props) { \
161 av_free((void *)((props)[i])); \
162 av_free((void *)props); \
1451 p->props.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
1452 p->props.pNext = &p->hprops;
1455 vk->GetPhysicalDeviceProperties2(hwctx->phys_dev, &p->props);
1457 p->props.properties.deviceName);
1460 p->props.properties.limits.optimalBufferCopyRowPitchAlignment);
1462 p->props.properties.limits.minMemoryMapAlignment);
1467 p->dev_is_nvidia = (p->props.properties.vendorID == 0x10de);
1468 p->dev_is_intel = (p->props.properties.vendorID == 0x8086);
1646 constraints->max_width = p->props.properties.limits.maxImageDimension2D;
1647 constraints->max_height = p->props.properties.limits.maxImageDimension2D;
1819 p->props.properties.limits.minMemoryMapAlignment);
2143 VkImageFormatProperties2 props = {
2176 &pinfo, &props);
3482 *stride = FFALIGN(*stride, p->props.properties.limits.optimalBufferCopyRowPitchAlignment);
3484 size = FFALIGN(size, p->props.properties.limits.minMemoryMapAlignment);