diff options
author | Kai Wasserbäch <[email protected]> | 2011-08-27 17:51:52 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-29 08:02:55 -0600 |
commit | 51ecb33c6b218af8e7c401a701b51f52331a1782 (patch) | |
tree | c2e4ef498aec9bfffb80ba96308850d0aa50733c /src/gallium/include/pipe/p_video_state.h | |
parent | 8fb7f1a8a4cbab5365491b4b41e50ff3f03306c8 (diff) |
include/pipe: 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/include/pipe/p_video_state.h')
-rw-r--r-- | src/gallium/include/pipe/p_video_state.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/include/pipe/p_video_state.h b/src/gallium/include/pipe/p_video_state.h index f655ed411f4..e8087000f70 100644 --- a/src/gallium/include/pipe/p_video_state.h +++ b/src/gallium/include/pipe/p_video_state.h @@ -28,11 +28,11 @@ #ifndef PIPE_VIDEO_STATE_H #define PIPE_VIDEO_STATE_H -#include <pipe/p_defines.h> -#include <pipe/p_format.h> -#include <pipe/p_state.h> -#include <pipe/p_screen.h> -#include <util/u_inlines.h> +#include "pipe/p_defines.h" +#include "pipe/p_format.h" +#include "pipe/p_state.h" +#include "pipe/p_screen.h" +#include "util/u_inlines.h" #ifdef __cplusplus extern "C" { |