[Intel-gfx] [PATCH i-g-t] lib: add missing includes to headers

Thomas Wood thomas.wood at intel.com
Mon Jun 16 17:21:35 CEST 2014


Signed-off-by: Thomas Wood <thomas.wood at intel.com>
---
 lib/debug.h       | 3 +++
 lib/gen7_render.h | 2 ++
 lib/igt_aux.h     | 1 +
 lib/igt_fb.h      | 2 ++
 lib/igt_kms.h     | 1 +
 lib/rendercopy.h  | 3 +++
 6 files changed, 12 insertions(+)

diff --git a/lib/debug.h b/lib/debug.h
index af9cf39..ca4b31e 100644
--- a/lib/debug.h
+++ b/lib/debug.h
@@ -28,6 +28,9 @@
 #ifndef _DEBUG_H_
 #define _DEBUG_H_
 
+#include <stdint.h>
+#include <stdio.h>
+
 #define DEBUG_PROTOCOL_VERSION 1
 #define COMMUNICATION_OFFSET 0xc00
 #define COMMUNICATION_QWORD 0xc0
diff --git a/lib/gen7_render.h b/lib/gen7_render.h
index 992d839..7a6dc05 100644
--- a/lib/gen7_render.h
+++ b/lib/gen7_render.h
@@ -1,6 +1,8 @@
 #ifndef GEN7_RENDER_H
 #define GEN7_RENDER_H
 
+#include <stdint.h>
+
 #define INTEL_MASK(high, low) (((1 << ((high) - (low) + 1)) - 1) << (low))
 
 #define GEN7_3D(Pipeline,Opcode,Subopcode) ((3 << 29) | \
diff --git a/lib/igt_aux.h b/lib/igt_aux.h
index db0dea8..a90d8d9 100644
--- a/lib/igt_aux.h
+++ b/lib/igt_aux.h
@@ -29,6 +29,7 @@
 #define IGT_AUX_H
 
 #include <intel_bufmgr.h>
+#include <stdbool.h>
 
 /* auxialiary igt helpers from igt_aux.c */
 /* generally useful helpers */
diff --git a/lib/igt_fb.h b/lib/igt_fb.h
index c6558bf..6d030e6 100644
--- a/lib/igt_fb.h
+++ b/lib/igt_fb.h
@@ -36,6 +36,8 @@ typedef struct _cairo_surface cairo_surface_t;
 typedef struct _cairo cairo_t;
 #endif
 
+#include <stddef.h>
+#include <stdbool.h>
 #include <drm_fourcc.h>
 #include <xf86drmMode.h>
 
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 17bf0a2..7d015b4 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -30,6 +30,7 @@
 
 #include <stdbool.h>
 #include <stdint.h>
+#include <stddef.h>
 
 #include <xf86drmMode.h>
 
diff --git a/lib/rendercopy.h b/lib/rendercopy.h
index bb9051e..20619d6 100644
--- a/lib/rendercopy.h
+++ b/lib/rendercopy.h
@@ -1,3 +1,6 @@
+#include "intel_batchbuffer.h"
+
+
 static inline void emit_vertex_2s(struct intel_batchbuffer *batch,
 				  int16_t x, int16_t y)
 {
-- 
1.9.3




More information about the Intel-gfx mailing list