On Mon, Apr 30, 2018 at 3:15 PM, Jason Ekstrand <[email protected]> wrote:
> --- > src/intel/vulkan/anv_device.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c > index adcd506..e82f294 100644 > --- a/src/intel/vulkan/anv_device.c > +++ b/src/intel/vulkan/anv_device.c > @@ -757,8 +757,10 @@ void anv_GetPhysicalDeviceFeatures( > .shaderStorageImageArrayDynamicIndexing = true, > .shaderClipDistance = true, > .shaderCullDistance = true, > - .shaderFloat64 = pdevice->info.gen >= 8, > - .shaderInt64 = pdevice->info.gen >= 8, > + .shaderFloat64 = pdevice->info.gen >= 8 > && > + > pdevice->info.has_64bit_types, > + .shaderInt64 = pdevice->info.gen >= 8 > && > + > pdevice->info.has_64bit_types, > .shaderInt16 = false, > .shaderResourceMinLod = false, > .variableMultisampleRate = true, > -- > 2.5.0.400.gff86faf > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev s/withou/without in subject. With typo fixed: Reviewed-by: Anuj Phogat <[email protected]>
_______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
