diff options
author | Michel Dänzer <[email protected]> | 2008-03-24 09:56:12 +0000 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2008-03-24 09:56:12 +0000 |
commit | a6d17bf671d6bfbb187a62ba14b9ad08fb5dafe1 (patch) | |
tree | 1b1f87b1fca3c8a3d8eaa2daefbfd5b072c27bb9 /src/gallium/auxiliary/draw | |
parent | 3b217c7fa77d397540e4b6299a35f586ad53a1a1 (diff) |
draw: Fix #include order to fix Linux build.
Diffstat (limited to 'src/gallium/auxiliary/draw')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pt_elts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_elts.c b/src/gallium/auxiliary/draw/draw_pt_elts.c index d49770e7b2d..02fb6d9f41d 100644 --- a/src/gallium/auxiliary/draw/draw_pt_elts.c +++ b/src/gallium/auxiliary/draw/draw_pt_elts.c @@ -30,8 +30,8 @@ * Keith Whitwell <[email protected]> */ -#include "draw/draw_pt.h" #include "draw/draw_private.h" +#include "draw/draw_pt.h" /* Neat get_elt func that also works for varrays drawing by encoding * the start value into a pointer. |