mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-15 03:28:12 +02:00
Signed-off-by: Edward O'Callaghan <funfunctor@folklore1984.net> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
11 lines
209 B
C
11 lines
209 B
C
#ifndef RADV_UTIL_H
|
|
#define RADV_UTIL_H
|
|
|
|
#ifdef HAVE___BUILTIN_POPCOUNT
|
|
#define util_bitcount(i) __builtin_popcount(i)
|
|
#else
|
|
extern unsigned int
|
|
util_bitcount(unsigned int n);
|
|
#endif
|
|
|
|
#endif /* RADV_UTIL_H */
|