summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i915/i915_screen.c
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-09-13 23:42:35 -0700
committerVinson Lee <vlee@vmware.com>2010-09-13 23:42:35 -0700
commitd4d48c0579f7eb8d889ad325e8f1c9b4a95f6ed7 (patch)
tree8597286c3e019f32dd84d6a3552482b253ee960e /src/gallium/drivers/i915/i915_screen.c
parentc5867acb0d32124999f236c600480100dd7377fc (diff)
i915: Fix "implicit declaration of function 'draw_get_shader_param'" warning.
Fixes the following GCC warning. i915_screen.c: In function 'i915_get_shader_param': i915_screen.c:147: warning: implicit declaration of function 'draw_get_shader_param'
Diffstat (limited to 'src/gallium/drivers/i915/i915_screen.c')
-rw-r--r--src/gallium/drivers/i915/i915_screen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915/i915_screen.c b/src/gallium/drivers/i915/i915_screen.c
index 34bd81f9bd..98f1e7012f 100644
--- a/src/gallium/drivers/i915/i915_screen.c
+++ b/src/gallium/drivers/i915/i915_screen.c
@@ -26,6 +26,7 @@
**************************************************************************/
+#include "draw/draw_context.h"
#include "util/u_inlines.h"
#include "util/u_memory.h"
#include "util/u_string.h"