include/pipe: Fix include style
authorKai Wasserbäch <kai@dev.carbon-project.org>
Sat, 27 Aug 2011 15:51:52 +0000 (17:51 +0200)
committerBrian Paul <brianp@vmware.com>
Mon, 29 Aug 2011 14:02:55 +0000 (08:02 -0600)
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>
src/gallium/include/pipe/p_video_decoder.h
src/gallium/include/pipe/p_video_state.h

index 2aa4001c1798a7f95e10b6dde71dd059470e4acd..31e411c791ed7aebfff7442de90ac387053e142b 100644 (file)
@@ -32,7 +32,7 @@
 extern "C" {
 #endif
 
-#include <pipe/p_video_state.h>
+#include "pipe/p_video_state.h"
 
 struct pipe_screen;
 struct pipe_surface;
index f655ed411f4f4545d698a7d0cddae53a21d0d36f..e8087000f703322968d8b3e91b79d767fdd63ffd 100644 (file)
 #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" {