diff options
author | Marcin Slusarz <[email protected]> | 2011-04-16 22:15:52 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-04-17 01:15:52 +0200 |
commit | b5dfc38eea8a4b497574ca791452c11fa4163c8a (patch) | |
tree | e28f6cb2fd089445f37ef19cb6fe240020610c97 /src/gallium/drivers/nv50/nv50_screen.c | |
parent | 25a7f662145f56ad15dbdf3da203a8a85594276f (diff) |
gallium: include u_format.h for util_format_is_supported
Without it gcc complains:
nv50_screen.c: In function ‘nv50_screen_is_format_supported’:
nv50_screen.c:48: warning: implicit declaration of function ‘util_format_is_supported’
and handles it wrongly - util_format_is_supported returns boolean, which is typedef'ed
to uchar, but function without prototype is assumed to return int.
For me nv50_screen_is_format_supported was returning true for float formats without
--enable-texture-float...
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_screen.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_screen.c b/src/gallium/drivers/nv50/nv50_screen.c index e0eea3ed750..641ad7e2780 100644 --- a/src/gallium/drivers/nv50/nv50_screen.c +++ b/src/gallium/drivers/nv50/nv50_screen.c @@ -20,6 +20,7 @@ * SOFTWARE. */ +#include "util/u_format.h" #include "util/u_format_s3tc.h" #include "pipe/p_screen.h" |