K 10 svn:author V 6 jbeich K 8 svn:date V 27 2020-11-26T20:21:30.679595Z K 7 svn:log V 677 graphics/mesa-devel: work around userptr for anv on gen < 8 and iris compute Vulkan on Intel Broadwell or later uses softpin but older need userptr: /* We only allow 48-bit addresses with softpin because knowing the actual * address is required for the vertex cache flush workaround. */ device->supports_48bit_addresses = (device->info.gen >= 8) && device->has_softpin && device->gtt_size > (4ULL << 30 /* GiB */); device->use_softpin = device->has_softpin && device->supports_48bit_addresses; PR: 244877 Submitted by: Austin Shafer END