Skip to content

zink: use correct type for u_bit_scan

Erik Faye-Lund requested to merge kusma/mesa:zink-msvc-warning-fix into main

Since we're going to iterate over each bit of this variable using u_bit_scan, we should make sure we use an unsigned int for the variable.

While this works on GCC, it's not guaranteed to work, and produces a warning on MSVC.

Merge request reports