From: Kai Wasserbäch Date: Sat, 27 Aug 2011 15:51:52 +0000 (+0200) Subject: include/pipe: Fix include style X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=51ecb33c6b218af8e7c401a701b51f52331a1782;p=mesa.git 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] Signed-off-by: Kai Wasserbäch Signed-off-by: Brian Paul --- diff --git a/src/gallium/include/pipe/p_video_decoder.h b/src/gallium/include/pipe/p_video_decoder.h index 2aa4001c179..31e411c791e 100644 --- a/src/gallium/include/pipe/p_video_decoder.h +++ b/src/gallium/include/pipe/p_video_decoder.h @@ -32,7 +32,7 @@ extern "C" { #endif -#include +#include "pipe/p_video_state.h" struct pipe_screen; struct pipe_surface; 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 -#include -#include -#include -#include +#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" {