summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Wasserbäch <kai@dev.carbon-project.org>2011-08-27 17:51:56 +0200
committerBrian Paul <brianp@vmware.com>2011-08-29 08:03:01 -0600
commit7ea550621e25f9b2f344b2ed60551ceec91b3fcf (patch)
tree11b7dffd286180cebf932866a4226cb821ac789d
parent28f8ff6b622d63e8ffe322ab2cdf5197941f1a40 (diff)
st/xorg: Fix include style
As explained in the thread starting at [0], the internal include style should be »#include "path/to/header.h"« for non-system includes. [0] <http://news.gmane.org/find-root.php?message_id=%3c4E5802BE.6020206%40vmware.com%3e> Signed-off-by: Kai Wasserbäch <kai@dev.carbon-project.org> Signed-off-by: Brian Paul <brianp@vmware.com>
-rw-r--r--src/gallium/state_trackers/xorg/xorg_exa.h2
-rw-r--r--src/gallium/state_trackers/xorg/xvmc/attributes.c2
-rw-r--r--src/gallium/state_trackers/xorg/xvmc/block.c2
-rw-r--r--src/gallium/state_trackers/xorg/xvmc/context.c14
-rw-r--r--src/gallium/state_trackers/xorg/xvmc/subpicture.c18
-rw-r--r--src/gallium/state_trackers/xorg/xvmc/surface.c14
-rw-r--r--src/gallium/state_trackers/xorg/xvmc/xvmc_private.h10
7 files changed, 31 insertions, 31 deletions
diff --git a/src/gallium/state_trackers/xorg/xorg_exa.h b/src/gallium/state_trackers/xorg/xorg_exa.h
index 30b6f0ce460..47501f9affe 100644
--- a/src/gallium/state_trackers/xorg/xorg_exa.h
+++ b/src/gallium/state_trackers/xorg/xorg_exa.h
@@ -3,7 +3,7 @@
#include "xorg_tracker.h"
-#include <pipe/p_state.h>
+#include "pipe/p_state.h"
struct cso_context;
struct xorg_shaders;
diff --git a/src/gallium/state_trackers/xorg/xvmc/attributes.c b/src/gallium/state_trackers/xorg/xvmc/attributes.c
index 817af531a32..b115d520932 100644
--- a/src/gallium/state_trackers/xorg/xvmc/attributes.c
+++ b/src/gallium/state_trackers/xorg/xvmc/attributes.c
@@ -32,7 +32,7 @@
#include <X11/extensions/Xvlib.h>
#include <X11/extensions/XvMClib.h>
-#include <vl/vl_compositor.h>
+#include "vl/vl_compositor.h"
#include "xvmc_private.h"
diff --git a/src/gallium/state_trackers/xorg/xvmc/block.c b/src/gallium/state_trackers/xorg/xvmc/block.c
index 6b0b21273f5..64f8497e77c 100644
--- a/src/gallium/state_trackers/xorg/xvmc/block.c
+++ b/src/gallium/state_trackers/xorg/xvmc/block.c
@@ -30,7 +30,7 @@
#include <X11/Xlib.h>
#include <X11/extensions/XvMClib.h>
-#include <util/u_memory.h>
+#include "util/u_memory.h"
#include "xvmc_private.h"
diff --git a/src/gallium/state_trackers/xorg/xvmc/context.c b/src/gallium/state_trackers/xorg/xvmc/context.c
index f21ebda76d3..172f16cfb63 100644
--- a/src/gallium/state_trackers/xorg/xvmc/context.c
+++ b/src/gallium/state_trackers/xorg/xvmc/context.c
@@ -30,15 +30,15 @@
#include <X11/Xlibint.h>
#include <X11/extensions/XvMClib.h>
-#include <pipe/p_screen.h>
-#include <pipe/p_video_decoder.h>
-#include <pipe/p_video_state.h>
-#include <pipe/p_state.h>
+#include "pipe/p_screen.h"
+#include "pipe/p_video_decoder.h"
+#include "pipe/p_video_state.h"
+#include "pipe/p_state.h"
-#include <util/u_memory.h>
+#include "util/u_memory.h"
-#include <vl/vl_csc.h>
-#include <vl_winsys.h>
+#include "vl/vl_csc.h"
+#include "vl_winsys.h"
#include "xvmc_private.h"
diff --git a/src/gallium/state_trackers/xorg/xvmc/subpicture.c b/src/gallium/state_trackers/xorg/xvmc/subpicture.c
index 7d6ff061eb7..95a63c886c8 100644
--- a/src/gallium/state_trackers/xorg/xvmc/subpicture.c
+++ b/src/gallium/state_trackers/xorg/xvmc/subpicture.c
@@ -31,17 +31,17 @@
#include <X11/extensions/XvMClib.h>
#include <xorg/fourcc.h>
-#include <pipe/p_screen.h>
-#include <pipe/p_video_decoder.h>
-#include <pipe/p_state.h>
+#include "pipe/p_screen.h"
+#include "pipe/p_video_decoder.h"
+#include "pipe/p_state.h"
-#include <util/u_memory.h>
-#include <util/u_math.h>
-#include <util/u_format.h>
-#include <util/u_sampler.h>
-#include <util/u_rect.h>
+#include "util/u_memory.h"
+#include "util/u_math.h"
+#include "util/u_format.h"
+#include "util/u_sampler.h"
+#include "util/u_rect.h"
-#include <vl_winsys.h>
+#include "vl_winsys.h"
#include "xvmc_private.h"
diff --git a/src/gallium/state_trackers/xorg/xvmc/surface.c b/src/gallium/state_trackers/xorg/xvmc/surface.c
index 79bd9c618ce..521bc42ba82 100644
--- a/src/gallium/state_trackers/xorg/xvmc/surface.c
+++ b/src/gallium/state_trackers/xorg/xvmc/surface.c
@@ -30,15 +30,15 @@
#include <X11/Xlibint.h>
-#include <pipe/p_video_decoder.h>
-#include <pipe/p_video_state.h>
-#include <pipe/p_state.h>
+#include "pipe/p_video_decoder.h"
+#include "pipe/p_video_state.h"
+#include "pipe/p_state.h"
-#include <util/u_inlines.h>
-#include <util/u_memory.h>
-#include <util/u_math.h>
+#include "util/u_inlines.h"
+#include "util/u_memory.h"
+#include "util/u_math.h"
-#include <vl_winsys.h>
+#include "vl_winsys.h"
#include "xvmc_private.h"
diff --git a/src/gallium/state_trackers/xorg/xvmc/xvmc_private.h b/src/gallium/state_trackers/xorg/xvmc/xvmc_private.h
index fd14ac916ee..43ae7171389 100644
--- a/src/gallium/state_trackers/xorg/xvmc/xvmc_private.h
+++ b/src/gallium/state_trackers/xorg/xvmc/xvmc_private.h
@@ -31,13 +31,13 @@
#include <X11/Xlib.h>
#include <X11/extensions/XvMClib.h>
-#include <pipe/p_video_state.h>
+#include "pipe/p_video_state.h"
-#include <util/u_debug.h>
-#include <util/u_math.h>
+#include "util/u_debug.h"
+#include "util/u_math.h"
-#include <vl/vl_csc.h>
-#include <vl/vl_compositor.h>
+#include "vl/vl_csc.h"
+#include "vl/vl_compositor.h"
#define BLOCK_SIZE_SAMPLES 64
#define BLOCK_SIZE_BYTES (BLOCK_SIZE_SAMPLES * 2)