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_idct.h | |
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_idct.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_idct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/vl/vl_idct.h b/src/gallium/auxiliary/vl/vl_idct.h index 98e2c795564..1d19d8146fc 100644 --- a/src/gallium/auxiliary/vl/vl_idct.h +++ b/src/gallium/auxiliary/vl/vl_idct.h @@ -28,9 +28,9 @@ #ifndef vl_idct_h #define vl_idct_h -#include <pipe/p_state.h> +#include "pipe/p_state.h" -#include <tgsi/tgsi_ureg.h> +#include "tgsi/tgsi_ureg.h" /* shader based inverse distinct cosinus transformation * expect usage of vl_vertex_buffers as a todo list |