diff options
author | Roland Scheidegger <sroland@vmware.com> | 2010-04-01 19:26:35 +0200 |
---|---|---|
committer | Roland Scheidegger <sroland@vmware.com> | 2010-04-01 19:26:35 +0200 |
commit | a01ff99a19986e6beb7903431e60a074945b09bc (patch) | |
tree | 5abc4e509859ef018b058ca7810f526c1146de30 | |
parent | 26aeded562ce947a6deeb867fe22bf8daf7b1a1a (diff) |
gallium: fix missing includes
-rw-r--r-- | src/gallium/drivers/identity/id_context.c | 1 | ||||
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_sampler.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/identity/id_context.c b/src/gallium/drivers/identity/id_context.c index 4b70c10cf7..3b7eaecc02 100644 --- a/src/gallium/drivers/identity/id_context.c +++ b/src/gallium/drivers/identity/id_context.c @@ -28,6 +28,7 @@ #include "pipe/p_context.h" #include "util/u_memory.h" +#include "util/u_inlines.h" #include "id_context.h" #include "id_objects.h" diff --git a/src/gallium/drivers/softpipe/sp_state_sampler.c b/src/gallium/drivers/softpipe/sp_state_sampler.c index 3dad118e8a..2692f06c92 100644 --- a/src/gallium/drivers/softpipe/sp_state_sampler.c +++ b/src/gallium/drivers/softpipe/sp_state_sampler.c @@ -30,6 +30,7 @@ */ #include "util/u_memory.h" +#include "util/u_inlines.h" #include "draw/draw_context.h" #include "draw/draw_context.h" |