summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_pack_color.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-03-18 16:59:46 -0600
committerBrian <brian.paul@tungstengraphics.com>2008-03-18 17:18:10 -0600
commit18f9fa9e71abdd999e49ef78729bfe3d92304312 (patch)
tree4a2e2a43ab09798c17055ce06f1c8b732aa56725 /src/gallium/auxiliary/util/u_pack_color.h
parent8de9503d5d290c475a1940a71e58086ab3735f83 (diff)
gallium: protect against multi-#include
Diffstat (limited to 'src/gallium/auxiliary/util/u_pack_color.h')
-rw-r--r--src/gallium/auxiliary/util/u_pack_color.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_pack_color.h b/src/gallium/auxiliary/util/u_pack_color.h
index 93a18c1c7e..cd13823985 100644
--- a/src/gallium/auxiliary/util/u_pack_color.h
+++ b/src/gallium/auxiliary/util/u_pack_color.h
@@ -31,7 +31,12 @@
*/
+#ifndef U_PACK_COLOR_H
+#define U_PACK_COLOR_H
+
+
#include "pipe/p_compiler.h"
+#include "pipe/p_format.h"
/**
@@ -123,3 +128,6 @@ util_pack_z(enum pipe_format format, double z)
return 0;
}
}
+
+
+#endif /* U_PACK_COLOR_H */