Standardize on using the pipe/ include prefix.
authorJosé Fonseca <jrfonseca@tungstengraphics.com>
Mon, 18 Feb 2008 11:02:42 +0000 (20:02 +0900)
committerJosé Fonseca <jrfonseca@tungstengraphics.com>
Mon, 18 Feb 2008 11:02:42 +0000 (20:02 +0900)
SConstruct
src/gallium/Makefile.template
src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
src/gallium/auxiliary/pipebuffer/pb_bufmgr_fenced.c
src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
src/gallium/drivers/i915simple/i915_state_immediate.c
src/gallium/drivers/i915simple/i915_state_inlines.h
src/gallium/drivers/softpipe/sp_state_surface.c

index 1126aff21b5776703a4141139f102972c6f58a11..4fb51f2e6dfd1fffd2a9100212e1cd1502bf348b 100644 (file)
@@ -108,7 +108,6 @@ env.Append(CPPPATH = [
        '#/include',
        '#/src/mesa',
        '#/src/mesa/main',
-       '#/src/gallium/include/pipe',
        '#/src/gallium/include',
        '#/src/gallium/auxiliary',
        '#/src/gallium/drivers',
index 6ad58c205c23fdda91a6b16287f877544f51f4c1..6698212e77ee443da6f27ee8dd737c46d56c7310 100644 (file)
@@ -16,7 +16,6 @@ OBJECTS = $(C_SOURCES:.c=.o) \
 INCLUDES = \
        -I. \
        -I$(TOP)/src/gallium/include \
-       -I$(TOP)/src/gallium/include/pipe \
        -I$(TOP)/src/gallium/auxiliary \
        -I$(TOP)/src/gallium/drivers \
        -I$(TOP)/src/mesa \
index f4fc3f6d714efd6e2d709186e742b7aed3666b4e..bc85c4b19fdd13c255c5ac0f2cb6eb9230faa646 100644 (file)
 
 #include "linked_list.h"
 
-#include "p_compiler.h"
-#include "p_debug.h"
-#include "p_winsys.h"
-#include "p_thread.h"
-#include "p_util.h"
+#include "pipe/p_compiler.h"
+#include "pipe/p_debug.h"
+#include "pipe/p_winsys.h"
+#include "pipe/p_thread.h"
+#include "pipe/p_util.h"
 
 #include "pb_buffer.h"
 #include "pb_buffer_fenced.h"
index c535d3276c9068c3a789aa363d629cd123cd9458..bffca5b2449f3fe20b03f6cea7d180a4d27590e2 100644 (file)
@@ -34,8 +34,8 @@
  */
 
 
-#include "p_debug.h"
-#include "p_util.h"
+#include "pipe/p_debug.h"
+#include "pipe/p_util.h"
 
 #include "pb_buffer.h"
 #include "pb_buffer_fenced.h"
index 8b1b51c0e2873d89ba45da3d374e35b137e56675..969aab51b57212773def9d44ba4c8cb2e9aec226 100644 (file)
 
 #include "linked_list.h"
 
-#include "p_defines.h"
-#include "p_debug.h"
-#include "p_thread.h"
-#include "p_util.h"
+#include "pipe/p_defines.h"
+#include "pipe/p_debug.h"
+#include "pipe/p_thread.h"
+#include "pipe/p_util.h"
 #include "pb_buffer.h"
 #include "pb_bufmgr.h"
 
index 04477a865a540fc51caee58ce3c9ecd9e49c7e55..beb145b7cbeb242eeed131c6e6cacb2d857086b1 100644 (file)
 
 #include "linked_list.h"
 
-#include "p_compiler.h"
-#include "p_debug.h"
-#include "p_thread.h"
-#include "p_defines.h"
-#include "p_util.h"
+#include "pipe/p_compiler.h"
+#include "pipe/p_debug.h"
+#include "pipe/p_thread.h"
+#include "pipe/p_defines.h"
+#include "pipe/p_util.h"
 
 #include "pb_buffer.h"
 #include "pb_bufmgr.h"
index 07031fc6c5ba6d6962119734e60f9b2459388ba7..dfbbcab624a1b45ea5bd82d3fcc85134e08a324b 100644 (file)
@@ -33,7 +33,7 @@
 #include "i915_context.h"
 #include "i915_state.h"
 #include "i915_reg.h"
-#include "p_util.h"
+#include "pipe/p_util.h"
 
 
 /* All state expressable with the LOAD_STATE_IMMEDIATE_1 packet.
index 0934ac79a41029ba4b8537e746f4db41189ac442..378de8f9c48d479d4b80a881cf65f412ce570e10 100644 (file)
@@ -28,8 +28,8 @@
 #ifndef I915_STATE_INLINES_H
 #define I915_STATE_INLINES_H
 
-#include "p_compiler.h"
-#include "p_defines.h"
+#include "pipe/p_compiler.h"
+#include "pipe/p_defines.h"
 #include "i915_reg.h"
 
 
index e2c6893e9f53bbcd41a264c8cd7fb2ea225be6e9..124b18b70814603ad3d9e7c163279b10b77d1ed4 100644 (file)
@@ -27,7 +27,7 @@
 
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
-#include "p_inlines.h"
+#include "pipe/p_inlines.h"
 
 #include "sp_context.h"
 #include "sp_state.h"