anv: Stop using VK_TRUE/FALSE
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 12 Mar 2019 20:22:19 +0000 (15:22 -0500)
committerJason Ekstrand <jason.ekstrand@intel.com>
Wed, 13 Mar 2019 22:58:27 +0000 (17:58 -0500)
commit13099d4490a7445f370b3f895c2eb082cd7e2f0a
treea62e5438c80bc416ec79ec50720fa48d433a8a10
parentd6dc68e7b5b6f76a55037f6995dad101cc089d02
anv: Stop using VK_TRUE/FALSE

We've been fairly inconsistent about this so we should really choose
whether we're going to use VK_TRUE/FALSE or the C boolean values.  The
Vulkan #defines are set to 1 and 0 respectively so it's the same value
as C gives you when you cast a boolean expression to an integer.  Since
there are several places where we set a VkBool32 to a C logical
expression, let's just embrace C booleans and stop using the VK defines.

Reviewed-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
src/intel/vulkan/anv_device.c