diff options
author | Kai Wasserbäch <kai@dev.carbon-project.org> | 2011-08-27 17:51:53 +0200 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2011-08-29 08:02:55 -0600 |
commit | 92bc1111f3c5dd3616bd591129aebd3f4307e5b4 (patch) | |
tree | e8629498dba2bcc068a9448c0ee36f5ba2c9bcd0 /src/gallium/state_trackers/d3d1x/dxgid3d11 | |
parent | 51ecb33c6b218af8e7c401a701b51f52331a1782 (diff) | |
download | external_mesa3d-92bc1111f3c5dd3616bd591129aebd3f4307e5b4.zip external_mesa3d-92bc1111f3c5dd3616bd591129aebd3f4307e5b4.tar.gz external_mesa3d-92bc1111f3c5dd3616bd591129aebd3f4307e5b4.tar.bz2 |
d3d1x: 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 <kai@dev.carbon-project.org>
Signed-off-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/gallium/state_trackers/d3d1x/dxgid3d11')
-rw-r--r-- | src/gallium/state_trackers/d3d1x/dxgid3d11/dxgid3d11.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/d3d1x/dxgid3d11/dxgid3d11.cpp b/src/gallium/state_trackers/d3d1x/dxgid3d11/dxgid3d11.cpp index 1b1cb90..b93ffb2 100644 --- a/src/gallium/state_trackers/d3d1x/dxgid3d11/dxgid3d11.cpp +++ b/src/gallium/state_trackers/d3d1x/dxgid3d11/dxgid3d11.cpp @@ -27,8 +27,8 @@ #include "d3d1xstutil.h" #include "galliumd3d11.h" #include <dxgi.h> -#include <pipe/p_screen.h> -#include <pipe/p_context.h> +#include "pipe/p_screen.h" +#include "pipe/p_context.h" HRESULT D3D11CreateDevice( IDXGIAdapter *adapter, |