diff options
author | Kai Wasserbäch <[email protected]> | 2011-08-27 17:51:59 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-29 08:03:06 -0600 |
commit | d4e8f384776cb9fefe20e792493642e074e8b229 (patch) | |
tree | 3edd50e893f37c3f09667b1545b31154559310e9 /src | |
parent | 066875f340dd6160b60cc7d205faf3a496581220 (diff) |
winsys/g3dvl: 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')
-rw-r--r-- | src/gallium/winsys/g3dvl/dri/dri_winsys.c | 20 | ||||
-rw-r--r-- | src/gallium/winsys/g3dvl/vl_winsys.h | 4 | ||||
-rw-r--r-- | src/gallium/winsys/g3dvl/xlib/xsp_winsys.c | 14 |
3 files changed, 19 insertions, 19 deletions
diff --git a/src/gallium/winsys/g3dvl/dri/dri_winsys.c b/src/gallium/winsys/g3dvl/dri/dri_winsys.c index 276731ca588..aef88f2c817 100644 --- a/src/gallium/winsys/g3dvl/dri/dri_winsys.c +++ b/src/gallium/winsys/g3dvl/dri/dri_winsys.c @@ -25,16 +25,16 @@ * **************************************************************************/ -#include <vl_winsys.h> -#include <driclient.h> -#include <pipe/p_screen.h> -#include <pipe/p_context.h> -#include <pipe/p_state.h> -#include <util/u_memory.h> -#include <util/u_hash.h> -#include <util/u_hash_table.h> -#include <util/u_inlines.h> -#include <state_tracker/drm_driver.h> +#include "vl_winsys.h" +#include "driclient.h" +#include "pipe/p_screen.h" +#include "pipe/p_context.h" +#include "pipe/p_state.h" +#include "util/u_memory.h" +#include "util/u_hash.h" +#include "util/u_hash_table.h" +#include "util/u_inlines.h" +#include "state_tracker/drm_driver.h" #include <X11/Xlibint.h> struct vl_dri_screen diff --git a/src/gallium/winsys/g3dvl/vl_winsys.h b/src/gallium/winsys/g3dvl/vl_winsys.h index 384a8ba5f17..2782e513880 100644 --- a/src/gallium/winsys/g3dvl/vl_winsys.h +++ b/src/gallium/winsys/g3dvl/vl_winsys.h @@ -29,8 +29,8 @@ #define vl_winsys_h #include <X11/Xlib.h> -#include <pipe/p_defines.h> -#include <pipe/p_format.h> +#include "pipe/p_defines.h" +#include "pipe/p_format.h" struct pipe_screen; struct pipe_surface; diff --git a/src/gallium/winsys/g3dvl/xlib/xsp_winsys.c b/src/gallium/winsys/g3dvl/xlib/xsp_winsys.c index 92f0bd6da90..e86d92f40d0 100644 --- a/src/gallium/winsys/g3dvl/xlib/xsp_winsys.c +++ b/src/gallium/winsys/g3dvl/xlib/xsp_winsys.c @@ -27,16 +27,16 @@ #include <X11/Xlibint.h> -#include <pipe/p_state.h> +#include "pipe/p_state.h" -#include <util/u_memory.h> -#include <util/u_format.h> -#include <util/u_inlines.h> +#include "util/u_memory.h" +#include "util/u_format.h" +#include "util/u_inlines.h" -#include <state_tracker/xlib_sw_winsys.h> -#include <softpipe/sp_public.h> +#include "state_tracker/xlib_sw_winsys.h" +#include "softpipe/sp_public.h" -#include <vl_winsys.h> +#include "vl_winsys.h" struct vl_xsp_screen { |