diff options
author | Kai Wasserbäch <[email protected]> | 2011-08-27 17:51:49 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-29 08:02:54 -0600 |
commit | 19bcd21ed151cf1716f2f87dff0f712231aa2ce7 (patch) | |
tree | 5944de3589cee42cb2480e4e936d39cc9b5ff766 /src/gallium/auxiliary/vl/vl_zscan.c | |
parent | 137ba91aadd7a3a24c1a7d76dd8bd5f7aa477fd2 (diff) |
vl: 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 <[email protected]>
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_zscan.c')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_zscan.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gallium/auxiliary/vl/vl_zscan.c b/src/gallium/auxiliary/vl/vl_zscan.c index fde27f396c5..b720d538f9c 100644 --- a/src/gallium/auxiliary/vl/vl_zscan.c +++ b/src/gallium/auxiliary/vl/vl_zscan.c @@ -27,18 +27,18 @@ #include <assert.h> -#include <pipe/p_screen.h> -#include <pipe/p_context.h> +#include "pipe/p_screen.h" +#include "pipe/p_context.h" -#include <util/u_draw.h> -#include <util/u_sampler.h> -#include <util/u_inlines.h> -#include <util/u_memory.h> +#include "util/u_draw.h" +#include "util/u_sampler.h" +#include "util/u_inlines.h" +#include "util/u_memory.h" -#include <tgsi/tgsi_ureg.h> +#include "tgsi/tgsi_ureg.h" -#include <vl/vl_defines.h> -#include <vl/vl_types.h> +#include "vl_defines.h" +#include "vl_types.h" #include "vl_zscan.h" #include "vl_vertex_buffers.h" |