summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/vl
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-09-30 09:07:33 -0600
committerBrian Paul <brianp@vmware.com>2013-09-30 18:50:37 -0600
commit81bb98e928861260170c16f5c3e0d80492251d6b (patch)
treec1b63d3ef977dff33e50bae5feb2104e43249491 /src/gallium/auxiliary/vl
parent48b9720272184d884b21524ae0b5318d42019793 (diff)
downloadexternal_mesa3d-81bb98e928861260170c16f5c3e0d80492251d6b.zip
external_mesa3d-81bb98e928861260170c16f5c3e0d80492251d6b.tar.gz
external_mesa3d-81bb98e928861260170c16f5c3e0d80492251d6b.tar.bz2
gallium: include u_surface.h instead of u_rect.h
u_rect.h was including u_surface.h just to avoid touching a bunch of other source files after some functions were moved from u_rect.h to u_surface.h. This patch cleans up that hack. Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Diffstat (limited to 'src/gallium/auxiliary/vl')
-rw-r--r--src/gallium/auxiliary/vl/vl_mpeg12_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c b/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
index f838e74..f91f90b 100644
--- a/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
+++ b/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
@@ -29,8 +29,8 @@
#include <assert.h>
#include "util/u_memory.h"
-#include "util/u_rect.h"
#include "util/u_sampler.h"
+#include "util/u_surface.h"
#include "util/u_video.h"
#include "vl_mpeg12_decoder.h"