mesa: prefix a bunch of #include lines with "main/".
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 18 Sep 2008 18:26:54 +0000 (12:26 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 18 Sep 2008 18:26:54 +0000 (12:26 -0600)
This is another step toward removing a whole bunch of -I flags from
the cc commands.  Still need to address driver code...

105 files changed:
src/mesa/drivers/common/driverfuncs.c
src/mesa/glapi/glapi.c
src/mesa/main/dispatch.c
src/mesa/math/m_debug_clip.c
src/mesa/math/m_debug_norm.c
src/mesa/math/m_debug_xform.c
src/mesa/math/m_matrix.c
src/mesa/math/m_translate.c
src/mesa/math/m_vector.c
src/mesa/math/m_vector.h
src/mesa/math/m_xform.h
src/mesa/ppc/common_ppc.c
src/mesa/ppc/common_ppc_features.h
src/mesa/shader/arbprogparse.c
src/mesa/shader/arbprogparse.h
src/mesa/shader/arbprogram.c
src/mesa/shader/atifragshader.c
src/mesa/shader/grammar/grammar_mesa.h
src/mesa/shader/nvfragparse.c
src/mesa/shader/nvprogram.c
src/mesa/shader/nvvertparse.c
src/mesa/shader/prog_debug.c
src/mesa/shader/prog_execute.c
src/mesa/shader/prog_instruction.c
src/mesa/shader/prog_print.c
src/mesa/shader/prog_statevars.c
src/mesa/shader/prog_statevars.h
src/mesa/shader/program.c
src/mesa/shader/program.h
src/mesa/shader/shader_api.c
src/mesa/shader/shader_api.h
src/mesa/sources
src/mesa/swrast/s_aaline.c
src/mesa/swrast/s_aaline.h
src/mesa/swrast/s_aatriangle.c
src/mesa/swrast/s_aatriangle.h
src/mesa/swrast/s_accum.c
src/mesa/swrast/s_accum.h
src/mesa/swrast/s_alpha.c
src/mesa/swrast/s_alpha.h
src/mesa/swrast/s_atifragshader.c
src/mesa/swrast/s_bitmap.c
src/mesa/swrast/s_blend.c
src/mesa/swrast/s_blend.h
src/mesa/swrast/s_blit.c
src/mesa/swrast/s_buffers.c
src/mesa/swrast/s_context.c
src/mesa/swrast/s_copypix.c
src/mesa/swrast/s_depth.c
src/mesa/swrast/s_depth.h
src/mesa/swrast/s_drawpix.c
src/mesa/swrast/s_drawpix.h
src/mesa/swrast/s_feedback.c
src/mesa/swrast/s_feedback.h
src/mesa/swrast/s_fog.c
src/mesa/swrast/s_fog.h
src/mesa/swrast/s_imaging.c
src/mesa/swrast/s_lines.c
src/mesa/swrast/s_lines.h
src/mesa/swrast/s_logic.c
src/mesa/swrast/s_logic.h
src/mesa/swrast/s_masking.c
src/mesa/swrast/s_masking.h
src/mesa/swrast/s_points.c
src/mesa/swrast/s_points.h
src/mesa/swrast/s_readpix.c
src/mesa/swrast/s_span.c
src/mesa/swrast/s_span.h
src/mesa/swrast/s_stencil.c
src/mesa/swrast/s_stencil.h
src/mesa/swrast/s_texcombine.c
src/mesa/swrast/s_texcombine.h
src/mesa/swrast/s_texfilter.c
src/mesa/swrast/s_texfilter.h
src/mesa/swrast/s_texstore.c
src/mesa/swrast/s_triangle.c
src/mesa/swrast/s_triangle.h
src/mesa/swrast/s_zoom.c
src/mesa/swrast/s_zoom.h
src/mesa/swrast_setup/ss_context.c
src/mesa/swrast_setup/ss_context.h
src/mesa/swrast_setup/ss_triangle.c
src/mesa/swrast_setup/ss_triangle.h
src/mesa/tnl/t_draw.c
src/mesa/tnl/t_pipeline.h
src/mesa/tnl/t_vb_cull.c
src/mesa/tnl/t_vb_fog.c
src/mesa/tnl/t_vb_light.c
src/mesa/tnl/t_vb_normals.c
src/mesa/tnl/t_vb_points.c
src/mesa/tnl/t_vb_render.c
src/mesa/tnl/t_vb_texgen.c
src/mesa/tnl/t_vb_texmat.c
src/mesa/tnl/t_vb_vertex.c
src/mesa/tnl/t_vertex.c
src/mesa/tnl/t_vertex.h
src/mesa/tnl/t_vertex_generic.c
src/mesa/tnl/t_vertex_sse.c
src/mesa/tnl/t_vp_build.c
src/mesa/tnl/t_vp_build.h
src/mesa/x86/3dnow.c
src/mesa/x86/common_x86.c
src/mesa/x86/rtasm/x86sse.c
src/mesa/x86/sse.c
src/mesa/x86/x86.c

index e61b9f59cf50b11c39b7cfb77bda4144e2ab1882..f6411f303b05ee8c7e8ec50c307005521b204ff3 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "imports.h"
-#include "arrayobj.h"
-#include "buffers.h"
-#include "context.h"
-#include "framebuffer.h"
-#include "mipmap.h"
-#include "queryobj.h"
-#include "renderbuffer.h"
-#include "texcompress.h"
-#include "texformat.h"
-#include "teximage.h"
-#include "texobj.h"
-#include "texstore.h"
+#include "main/glheader.h"
+#include "main/imports.h"
+#include "main/arrayobj.h"
+#include "main/buffers.h"
+#include "main/context.h"
+#include "main/framebuffer.h"
+#include "main/mipmap.h"
+#include "main/queryobj.h"
+#include "main/renderbuffer.h"
+#include "main/texcompress.h"
+#include "main/texformat.h"
+#include "main/teximage.h"
+#include "main/texobj.h"
+#include "main/texstore.h"
 #if FEATURE_ARB_vertex_buffer_object
-#include "bufferobj.h"
+#include "main/bufferobj.h"
 #endif
 #if FEATURE_EXT_framebuffer_object
-#include "fbobject.h"
-#include "texrender.h"
+#include "main/fbobject.h"
+#include "main/texrender.h"
 #endif
 
 #include "shader/program.h"
 #include "shader/prog_execute.h"
 #include "shader/shader_api.h"
-#include "driverfuncs.h"
 #include "tnl/tnl.h"
 #include "swrast/swrast.h"
 
+#include "driverfuncs.h"
+
 
 
 /**
index 08a26980e19625a2886daeccaab194aec79747d2..e939947cc9456476aaaf372616e435ef6e2e0110 100644 (file)
@@ -57,7 +57,7 @@
 
 #else
 
-#include "glheader.h"
+#include "main/glheader.h"
 
 #endif
 
index 05c1c36c0d2311d919158e50f3265613cbcf9dd8..34127cb248ad07a84d21491ccf7c7585e8be73fa 100644 (file)
 
 #ifndef GLX_USE_APPLEGL
 
-#include "glheader.h"
-#include "glapi.h"
-#include "glapitable.h"
-#include "glthread.h"
+#include "main/glheader.h"
+#include "glapi/glapi.h"
+#include "glapi/glapitable.h"
+#include "glapi/glthread.h"
 
 
 #if !(defined(USE_X86_ASM) || defined(USE_X86_64_ASM) || defined(USE_SPARC_ASM))
@@ -87,8 +87,8 @@
 #define GLAPIENTRY
 #endif
 
-#include "dispatch.h"
-#include "glapitemp.h"
+#include "glapi/dispatch.h"
+#include "glapi/glapitemp.h"
 
 #endif /* USE_X86_ASM */
 
index ab288183597af0314b117f7537525ed1f6a59331..460fed4a7547365d088f245cb7df7e30da13dbee 100644 (file)
  *    Gareth Hughes
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
 
 #include "m_matrix.h"
 #include "m_xform.h"
index 11cae6bba7a5e89482243204952b2c3c13f75588..89c632e7d59d1370379551a592c65bf0ecaab472 100644 (file)
  *    Gareth Hughes
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
 
 #include "m_matrix.h"
 #include "m_xform.h"
index 2af837cf64bbe8dde6a5e272f0e7ff0f6f5a89cd..ec22c7052db941a283418a71d6555bee5ecfef4a 100644 (file)
  * Updated for P6 architecture by Gareth Hughes.
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
 
 #include "m_matrix.h"
 #include "m_xform.h"
index b4ba1bc2a08b97cd56137229a9c034bff996ec89..84b4cae4adbfd7462825d4ef023495afb1077be9 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "imports.h"
-#include "macros.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/imports.h"
 
 #include "m_matrix.h"
 
index c7423e9d9db4d1c3ae08eaf66b9ba8c17cf002bd..4a20f45ee434f2f96f2f7a77cc114771be4d2fc8 100644 (file)
@@ -28,9 +28,9 @@
  */
 
 
-#include "glheader.h"
-#include "mtypes.h"            /* GLchan hack */
-#include "colormac.h"
+#include "main/glheader.h"
+#include "main/mtypes.h"               /* GLchan hack */
+#include "main/colormac.h"
 
 #include "m_translate.h"
 
index 3ad81d468b2f5bf5961b5a1f32315f62fd38b509..c5e2fd1de123715c669e1dde9c5cc7ca7641a7d2 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "imports.h"
-#include "macros.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/imports.h"
 
 #include "m_vector.h"
 
index 222b47f6e197c2862c19cae4e0738354d29dc4a0..647388ac7d0ebf127479e6458f4a0d5b034690ba 100644 (file)
@@ -1,9 +1,8 @@
-
 /*
  * Mesa 3-D graphics library
- * Version:  3.5
+ * Version:  7.3
  *
- * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2008  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -31,8 +30,8 @@
 #ifndef _M_VECTOR_H_
 #define _M_VECTOR_H_
 
-#include "glheader.h"
-#include "mtypes.h"            /* hack for GLchan */
+#include "main/glheader.h"
+#include "main/mtypes.h"               /* hack for GLchan */
 
 
 #define VEC_DIRTY_0        0x1
index 99b071a46b6bc3a07f00551be3aa1fc187bf9eb2..24e8ddbd57cfbb6bab37175d79fe0ebdeaa6318e 100644 (file)
@@ -1,8 +1,8 @@
 /*
  * Mesa 3-D graphics library
- * Version:  6.5.1
+ * Version:  7.3
  *
- * Copyright (C) 1999-2006  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2008  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -27,8 +27,8 @@
 #define _M_XFORM_H
 
 
-#include "glheader.h"
-#include "config.h"
+#include "main/glheader.h"
+#include "main/config.h"
 #include "math/m_vector.h"
 #include "math/m_matrix.h"
 
index 13526df78c98ab316d1831909fb788090093c207..786e1817acf4698d848633dd7b4d87aba3e295f4 100644 (file)
@@ -38,6 +38,9 @@
 #include <elf.h>
 #endif
 
+#include "common_ppc_features.h"
+
+
 unsigned long _mesa_ppc_cpu_features = 0;
 
 /**
index 4d46ca04c9d75b70ebb8b97353d3bb78c3247dac..9cde422d72d5b54fd83b645e3ad46942fb79e4d2 100644 (file)
@@ -48,4 +48,7 @@ extern unsigned long _mesa_ppc_cpu_features;
 #define cpu_has_fpu ((_mesa_ppc_cpu_features & PPC_FEATURE_HAS_FPU) != 0)
 
 #endif /* USE_PPC_ASM */
+
+extern void _mesa_init_all_ppc_transform_asm( void );
+
 #endif /* COMMON_PPC_FEATURES_H */
index f10233e5fedc24314230171d0adf15197eae5f91..8ce5348c09c8d2abb8606b26b61210531d7e6b0a 100644 (file)
 
 #include "main/glheader.h"
 #include "main/imports.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/mtypes.h"
 #include "shader/grammar/grammar_mesa.h"
 #include "arbprogparse.h"
 #include "program.h"
 #include "prog_parameter.h"
 #include "prog_statevars.h"
-#include "context.h"
-#include "macros.h"
-#include "mtypes.h"
 #include "prog_instruction.h"
 
 
index 4574e5cd553ca63b2930c0f90fafc8ff062ae81a..980d39fb9fe5b5cf0b33b1ba11be79ff9ac91e11 100644 (file)
@@ -26,7 +26,7 @@
 #ifndef ARBPROGPARSE_H
 #define ARBPROGPARSE_H
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 
 extern void
 _mesa_parse_arb_vertex_program(GLcontext *ctx, GLenum target,
index 81c20a01507067c362042e0459738f2778e5d6d2..760dac23993ed14f52001e894fed73798a1a31a7 100644 (file)
  */
 
 
-#include "glheader.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/hash.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/mtypes.h"
 #include "arbprogram.h"
 #include "arbprogparse.h"
-#include "context.h"
-#include "hash.h"
-#include "imports.h"
-#include "macros.h"
-#include "mtypes.h"
 #include "program.h"
 
 
index 854c91187415179d94ad57849ce4a7a6ca15990e..ac087d415c5df2f829c5bf80bd8d8e946b978fa0 100644 (file)
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "hash.h"
-#include "imports.h"
-#include "macros.h"
-#include "enums.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/hash.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/enums.h"
+#include "main/mtypes.h"
 #include "atifragshader.h"
 
 #define MESA_DEBUG_ATI_FS 0
index c14033a9d45779676bd59de50d86c17d2ac8f5fb..6c92c5812da6138b9e3e9cc8a202f9927081767e 100644 (file)
@@ -26,7 +26,7 @@
 #define GRAMMAR_MESA_H
 
 
-#include "imports.h"
+#include "main/imports.h"
 /* NOTE: include Mesa 3-D specific headers here */
 
 
index 0f1a1eade4afcd7ae75667125527d94f986104d2..20e47813729a91caf0e526542c265a36031b5ee7 100644 (file)
  * including any use thereof or modifications thereto.
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "imports.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "program.h"
 #include "prog_parameter.h"
 #include "prog_instruction.h"
 #include "nvfragparse.h"
-#include "program.h"
 
 
 #define INPUT_1V     1
index 409c61cdc114e5bbe078c6d5c82bdaffea723d15..88272fff3ffc06fc76b9eeac4f11fb0847d11beb 100644 (file)
  * including any use thereof or modifications thereto.
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "hash.h"
-#include "imports.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/hash.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "program.h"
 #include "prog_parameter.h"
 #include "prog_instruction.h"
 #include "nvfragparse.h"
 #include "nvvertparse.h"
 #include "nvprogram.h"
-#include "program.h"
 
 
 
index ac96d4a60edca4e91e90856dfb3e1e75999ad62f..08538c0ee4fbec8907de60dff6063d3868f60cf4 100644 (file)
  * including any use thereof or modifications thereto.
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "imports.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/imports.h"
+#include "main/macros.h"
 #include "nvprogram.h"
 #include "nvvertparse.h"
 #include "prog_instruction.h"
index 57929fcbcae279665abb90ca419c169ba377cf24..7bcb2ef734a0e595c9b9d719fedb523455a46873 100644 (file)
@@ -23,9 +23,9 @@
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/macros.h"
 #include "nvfragparse.h"
 #include "nvvertparse.h"
 #include "program.h"
index b9b7712f3f7683c6958c6445f3708e7338f3cc6f..e9957d3a5f07140f0a49047159eaaced575fb520 100644 (file)
@@ -35,9 +35,9 @@
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
 #include "program.h"
 #include "prog_execute.h"
 #include "prog_instruction.h"
index bea5d0551e47e464d1d1f4d533794104a734dbc7..1033496d9789554e3cc3a8011a2ad35f4ced9480 100644 (file)
@@ -23,9 +23,9 @@
  */
 
 
-#include "glheader.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 #include "prog_instruction.h"
 
 
index 7343b761a2f76290e730a589e0e0b23606e7d81b..32708ed7069ac660ff43262366f74581f375bab6 100644 (file)
@@ -28,9 +28,9 @@
  * \author Brian Paul
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/imports.h"
 #include "prog_instruction.h"
 #include "prog_parameter.h"
 #include "prog_print.h"
index 91392650a362af69bda75800e9d7bdc1d71e1eca..63f028567d1d4b9c551d9d4db5ee36dbf8c8ca6e 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "hash.h"
-#include "imports.h"
-#include "macros.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/hash.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/mtypes.h"
 #include "prog_statevars.h"
 #include "prog_parameter.h"
 #include "nvvertparse.h"
index da75ca77a14552e59074015693f15dc53ed71de3..2efe166e1a872d593c86bea7f405a055b5d45e26 100644 (file)
@@ -25,7 +25,7 @@
 #ifndef PROG_STATEVARS_H
 #define PROG_STATEVARS_H
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 
 
 /**
index 693d73baa2cfd2a94ce840f04ac6ceccfa1a4403..9f9d5955eaf5faccc0456c9648a3b46f92d64c83 100644 (file)
@@ -29,9 +29,9 @@
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "hash.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/hash.h"
 #include "program.h"
 #include "prog_parameter.h"
 #include "prog_instruction.h"
index d227aaa1ca4806b7109a19881db06cb79e15648a..48176162c35fb62e7061cb52721032797d323ca6 100644 (file)
@@ -40,7 +40,7 @@
 #ifndef PROGRAM_H
 #define PROGRAM_H
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 
 
 extern struct gl_program _mesa_DummyProgram;
index 430d165a82401bf42c974a1ac365999e70780b57..7c5a20bbbeb9eac5db5599a84dc9d5543b6086ea 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "hash.h"
-#include "macros.h"
-#include "program.h"
-#include "prog_parameter.h"
-#include "prog_print.h"
-#include "prog_statevars.h"
-#include "prog_uniform.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/hash.h"
+#include "main/macros.h"
+#include "shader/program.h"
+#include "shader/prog_parameter.h"
+#include "shader/prog_print.h"
+#include "shader/prog_statevars.h"
+#include "shader/prog_uniform.h"
 #include "shader/shader_api.h"
 #include "shader/slang/slang_compile.h"
 #include "shader/slang/slang_link.h"
index 5521c585b53de1d1583b9ee94de616be610127a0..e7f12669156200b08135325e5a1f2a36d3625cea 100644 (file)
@@ -27,8 +27,8 @@
 #define SHADER_API_H
 
 
-#include "glheader.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/mtypes.h"
 
 
 /**
index 2db1843239c6138a0691253594030f2603ea14c5..bc8498d0e706f5b9479c6e15006b855eeb41046c 100644 (file)
@@ -281,6 +281,9 @@ COMMON_DRIVER_OBJECTS = $(COMMON_DRIVER_SOURCES:.c=.o)
 
 
 ### Include directories
+### XXX we should be able to trim this down to just -Iinclude/ and -Isrc/mesa/
+### since most #includes have been changed from #include "mtypes.h" to
+### #include "main/mtypes.h", etc.
 
 INCLUDE_DIRS = \
        -I$(TOP)/include \
index d6a9afb4212ed3d9c934e75dd80252862b490314..9bfa8f2e619340ebfecddeb5296968a256799bfd 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "imports.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/mtypes.h"
 #include "swrast/s_aaline.h"
 #include "swrast/s_context.h"
 #include "swrast/s_span.h"
 #include "swrast/swrast.h"
-#include "mtypes.h"
 
 
 #define SUB_PIXEL 4
index 41e7e5fd4d4902d29bdb4e20f791c2d2c56ed7de..f1d708ec801a841f3cf6f642afd370fcdbc3fb5d 100644 (file)
@@ -28,7 +28,6 @@
 #define S_AALINE_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index 66891f9fec8a97f61f428b96cca5f567f16d7b09..078f16aea09d2fe93821a84a657235cd20887cea 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
 #include "s_aatriangle.h"
 #include "s_context.h"
 #include "s_span.h"
index ebb828eb19fe0ed8499343b1ec53b1fd5885226d..4b57fa73a2702f8563b038aae6489a6d5249e0b4 100644 (file)
@@ -28,7 +28,6 @@
 #define S_AATRIANGLE_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index b74f794d09060d0717f350b64292befd5faf38fc..ff741777e75b0ac4302f09b4cfd615ad8cdba2ec 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "fbobject.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/fbobject.h"
 
 #include "s_accum.h"
 #include "s_context.h"
index 97d2bef4c3191489af0b249d1b25cf147b431b0e..42e38cf02b3c74e94781323b0fc6124c36ade756 100644 (file)
@@ -27,7 +27,7 @@
 #define S_ACCUM_H
 
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 
 
 extern void
index 3c55d3e9e339d5c77bc6c90777b4afc62af29ccb..5761bb00b4e55482205f321cb8e6cba47191474c 100644 (file)
  * \brief Functions to apply alpha test.
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/macros.h"
 
 #include "s_alpha.h"
 #include "s_context.h"
index a85ef8a83ad6760b34d0a8b3bd69099fd8b58bd8..7a5b72e650af879b3cadd16946fc37285e02f591 100644 (file)
@@ -28,7 +28,6 @@
 #define S_ALPHA_H
 
 
-#include "mtypes.h"
 #include "s_context.h"
 
 
index 55ec757ee069b67f8aa1ce1c999da90e819709cb..21cbd3cf37f90c80a42ca922641b910e165ae5ca 100644 (file)
@@ -1,5 +1,4 @@
 /*
- *
  * Copyright (C) 2004  David Airlie   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
 #include "shader/program.h"
 #include "shader/atifragshader.h"
 #include "swrast/s_atifragshader.h"
index f3dda12e252dcf21a183e3cd1a4522e54d509b3d..35b34e654ff45c8f6441f576173e9489e1b915ec 100644 (file)
  * \author Brian Paul
  */
 
-#include "glheader.h"
-#include "bufferobj.h"
-#include "image.h"
-#include "macros.h"
-#include "pixel.h"
+#include "main/glheader.h"
+#include "main/bufferobj.h"
+#include "main/image.h"
+#include "main/macros.h"
+#include "main/pixel.h"
 
 #include "s_context.h"
 #include "s_span.h"
index 4531f0ae02cf7c161ea376e7f40f2cfabd5a583c..95c83432a9c6cf9dbb85621c160b68ca6f816b64 100644 (file)
 
 
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/macros.h"
 
 #include "s_blend.h"
 #include "s_context.h"
index 0b8cbed1a0199422677997d7968b6b9aa67a9357..8d5a81635d5d80b884110b98e29c179db9a31abf 100644 (file)
@@ -27,7 +27,6 @@
 #define S_BLEND_H
 
 
-#include "mtypes.h"
 #include "s_context.h"
 
 
index af4350990c0470386d106319e1b873402f4a975e..bc4b2ac62517a8e02d1b52a940b5998be9a62426 100644 (file)
@@ -23,8 +23,8 @@
  */
 
 
-#include "glheader.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/macros.h"
 #include "s_context.h"
 
 
index 0d1e9bac1c9fd3094d4635cef6cacfab336f1d84..9e87d6d485725c9f01975c98d0fecfd6158fd2bb 100644 (file)
 
 /** XXX This file should be named s_clear.c */
 
-#include "glheader.h"
-#include "colormac.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "s_accum.h"
 #include "s_context.h"
index b64156a82d322d3c9b24c255bd0ff30c05a2e5a3..62857ddeb0dfe9889a62cbecb55e46705a35aca0 100644 (file)
  *    Brian Paul
  */
 
-#include "imports.h"
-#include "bufferobj.h"
-#include "context.h"
-#include "colormac.h"
-#include "mtypes.h"
-#include "teximage.h"
-#include "swrast.h"
+#include "main/imports.h"
+#include "main/bufferobj.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/mtypes.h"
+#include "main/teximage.h"
 #include "shader/prog_parameter.h"
 #include "shader/prog_statevars.h"
+#include "swrast.h"
 #include "s_blend.h"
 #include "s_context.h"
 #include "s_lines.h"
index 3962721a61cf12f032c00394821eac6d836dd94d..fc5990b261c1370a43156f8360fca7446b8879f2 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "convolve.h"
-#include "histogram.h"
-#include "image.h"
-#include "macros.h"
-#include "imports.h"
-#include "pixel.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/convolve.h"
+#include "main/histogram.h"
+#include "main/image.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/pixel.h"
 
 #include "s_context.h"
 #include "s_depth.h"
index 408174c990fb165941a8ee0df4015852e42347b5..293eb8628e619972c9b978163f371b710b74685b 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "fbobject.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/fbobject.h"
 
 #include "s_depth.h"
 #include "s_context.h"
index d1ed050efd69d847055f7d4a15c776dd2e98b955..368862568303a560326701058b13c71c5a875c9b 100644 (file)
@@ -27,7 +27,6 @@
 #define S_DEPTH_H
 
 
-#include "mtypes.h"
 #include "s_context.h"
 
 
index 730798c90847524e39db4ca2dfd3695c119f6cca..b0ba2a4a4e95b99bef12e4c63c7501facbf43456 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "bufferobj.h"
-#include "context.h"
-#include "convolve.h"
-#include "image.h"
-#include "macros.h"
-#include "imports.h"
-#include "pixel.h"
-#include "state.h"
+#include "main/glheader.h"
+#include "main/bufferobj.h"
+#include "main/context.h"
+#include "main/convolve.h"
+#include "main/image.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/pixel.h"
+#include "main/state.h"
 
 #include "s_context.h"
 #include "s_drawpix.h"
index 66067115ddb2d561b532e4aeb5f7cf1e60f68fbc..706c42a0f897bbacd48e9af523282a7e365b529e 100644 (file)
@@ -28,7 +28,6 @@
 #define S_DRAWPIXELS_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 /* XXX kill this header? */
index 07b7409ab57b9313cb8dbe6937ad7fa5cc8b6fbc..aa79531277ced51fd90ce03de7c30b81c794215f 100644 (file)
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "enums.h"
-#include "feedback.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/enums.h"
+#include "main/feedback.h"
+#include "main/macros.h"
 
 #include "s_context.h"
 #include "s_feedback.h"
index 73f45c10be58aef190176dfc62faf8c352800ad4..9feab75dbb06724e709e55d9ea287b3b5e3f65b3 100644 (file)
@@ -28,7 +28,6 @@
 #define S_FEEDBACK_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index 7b143f6e5bbad78c714beedcccd448192b843a45..b9ba265db6d45f92f7679578d6c1d6a512f291b7 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
 
 #include "s_context.h"
 #include "s_fog.h"
index 9639bee2cc340a04664cb5aff268289f40e9dfd3..50760d88af752790f457ef2643b49f665a4f583c 100644 (file)
@@ -28,7 +28,6 @@
 #define S_FOG_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index 73aaba1ec9fe4919f3f11814af3ead827c9bc975..591857c3423e4f29d0c26b78dd530c152b27e510 100644 (file)
  * extensions into either swrast or a sister module.  
  */
 
+#include "main/glheader.h"
+#include "main/colortab.h"
+#include "main/convolve.h"
 #include "s_context.h"
 #include "s_span.h"
-#include "colortab.h"
-#include "convolve.h"
 
 
 void
index 3de438760b52cf9f5fb36a404fbee353e77231d1..23cb9b57eff77489f833680e6eb13416c53b97b7 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/macros.h"
 #include "s_aaline.h"
 #include "s_context.h"
 #include "s_depth.h"
index 5372b99b915a7076c4066301f666f9c66a8d2761..22979a02b6013a4b41787cb583d1bd233909dbf0 100644 (file)
@@ -27,7 +27,7 @@
 #ifndef S_LINES_H
 #define S_LINES_H
 
-#include "mtypes.h"
+#include "swrast.h"
 
 void
 _swrast_choose_line( GLcontext *ctx );
index 0af9063968a40e7d99ec0d48c644640ea1d7a322..f0274b4c0b19f76b6f9630aef77e47eda8117287 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "imports.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/imports.h"
+#include "main/macros.h"
 
 #include "s_context.h"
 #include "s_logic.h"
index 0bc2c3f8a82f56e6025fa040d79f629324c69ecd..ba20cd7b325d1f01e1c8b18079516fb67b66f1fd 100644 (file)
@@ -27,7 +27,6 @@
 #define S_LOGIC_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index a69720e83aeba48a89d3febfbfe86e7bccfa2627..df779b0739218d897d353cd6d7d43fa50c6f701c 100644 (file)
@@ -28,8 +28,8 @@
  */
 
 
-#include "glheader.h"
-#include "macros.h"
+#include "main/glheader.h"
+#include "main/macros.h"
 
 #include "s_context.h"
 #include "s_masking.h"
index 0596cb3f458b8ad7c4fdff3bae598c13c5170b44..3260ca34e324a9e5d1418c4943fc68e826a9b5e3 100644 (file)
@@ -27,7 +27,6 @@
 #define S_MASKING_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index 1a8fd7d6db2f77dcfd273ffaa71ea40184310967..846c485f15a390dd4e43eae2cbd04be3828b215b 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "texstate.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/texstate.h"
 #include "s_context.h"
 #include "s_feedback.h"
 #include "s_points.h"
index 40b442e951f5f95c4a89928fb70316ee6dd583ad..9e39c601efb25e6f9c1707b9c703a5f7023a1e1b 100644 (file)
@@ -27,7 +27,7 @@
 #ifndef S_POINTS_H
 #define S_POINTS_H
 
-#include "mtypes.h"
+#include "swrast.h"
 
 extern void
 _swrast_choose_point( GLcontext *ctx );
index 9140d12ea076924dc06c8a7da661f7165d7e190a..f26304517075e2e3a90d711718e85fad2ce9f1cc 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "bufferobj.h"
-#include "colormac.h"
-#include "convolve.h"
-#include "context.h"
-#include "feedback.h"
-#include "image.h"
-#include "macros.h"
-#include "imports.h"
-#include "pixel.h"
-#include "state.h"
+#include "main/glheader.h"
+#include "main/bufferobj.h"
+#include "main/colormac.h"
+#include "main/convolve.h"
+#include "main/context.h"
+#include "main/feedback.h"
+#include "main/image.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/pixel.h"
+#include "main/state.h"
 
 #include "s_context.h"
 #include "s_depth.h"
index 4c58f8de876be24efc89434d2a81fa32b4ee8e41..214c2a1b6f338b4cf758d8876758d1aef19ae060 100644 (file)
  * \author Brian Paul
  */
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "image.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/image.h"
 
 #include "s_atifragshader.h"
 #include "s_alpha.h"
index 512134db0f83bd1b0a07ec5f845b35a2eaae10e4..c4b47df58fff21d40b2075a2ced9299b51ce77b6 100644 (file)
@@ -27,7 +27,6 @@
 #define S_SPAN_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index cae1e09929bbfe98415bc795d34a36468fa2f1a8..c925922463e61a8ac0b3bf1071b998185fdeb78f 100644 (file)
@@ -23,9 +23,9 @@
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "imports.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/imports.h"
 
 #include "s_context.h"
 #include "s_depth.h"
index 1fcb538fecfbe8d2efe0456c599f8f170bc35dfa..cd6cbc57b0b8a9270e75d1b3d52ab7abb670df11 100644 (file)
@@ -27,7 +27,6 @@
 #define S_STENCIL_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index 4ac7222daa585a0fd034cf149101fde8728cd370..4e3d329075ca4e7e4ec545284a4d83d887cccdfd 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "imports.h"
-#include "macros.h"
-#include "pixel.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/pixel.h"
 
 #include "s_context.h"
 #include "s_texcombine.h"
index 3bf70e0b86e7df4d54a541eb5395dbf38d53192c..9ed96efb879dfbdf2943e15ba65cebc108ef61da 100644 (file)
@@ -27,7 +27,6 @@
 #define S_TEXCOMBINE_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 extern void
index ee6131649a66b7fe6761c1a94b5c523b3bd7b93e..9e44fba3daf146c4c39634acef67a1278f595dac 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "imports.h"
-#include "texformat.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/imports.h"
+#include "main/texformat.h"
 
 #include "s_context.h"
 #include "s_texfilter.h"
index e4445e79a0900e50c040c0527bb03e34e5eacf5b..2e265d685c5774ec3f2c32ea2dd6a6be660a3dd4 100644 (file)
@@ -27,7 +27,6 @@
 #define S_TEXFILTER_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index 547d5b9ea0dbb7bfa5b424c6aa6c3e865dd1cd53..15d52aa587c62c95b15f2915f85120ad14a2a7a1 100644 (file)
 
 
 
-#include "glheader.h"
-#include "imports.h"
-#include "colormac.h"
-#include "context.h"
-#include "convolve.h"
-#include "image.h"
-#include "macros.h"
-#include "mipmap.h"
-#include "texformat.h"
-#include "teximage.h"
-#include "texstore.h"
+#include "main/glheader.h"
+#include "main/imports.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/convolve.h"
+#include "main/image.h"
+#include "main/macros.h"
+#include "main/mipmap.h"
+#include "main/texformat.h"
+#include "main/teximage.h"
+#include "main/texstore.h"
 
 #include "s_context.h"
 #include "s_depth.h"
index 59e15645f3f5f851baded0f95b6ad63bdfa909e1..2033ab55291ff8b9781fb950dbbaee0f65b3d25d 100644 (file)
  * functions to draw triangles.
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
-#include "imports.h"
-#include "macros.h"
-#include "texformat.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/imports.h"
+#include "main/macros.h"
+#include "main/texformat.h"
 
 #include "s_aatriangle.h"
 #include "s_context.h"
index 0de812500c595919d992a0ca2fa2feda04cbe6b2..b81932c7304192ba3590acdd89d1f1b4bac9572c 100644 (file)
@@ -28,7 +28,6 @@
 #define S_TRIANGLES_H
 
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index 4473078b78ad7e4a24645378851615b50fcb1e83..a48eae19259c6b90d435a897b67f6b950cc73756 100644 (file)
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
 
-#include "glheader.h"
-#include "macros.h"
-#include "imports.h"
-#include "colormac.h"
+#include "main/glheader.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/colormac.h"
 
 #include "s_context.h"
 #include "s_span.h"
index 6ca11ac2111d9c75d4bf0eef3abba3a6efcb4188..d2815b41a0eaa4b0551d2507ed49f4126ba2a32a 100644 (file)
@@ -25,7 +25,6 @@
 #ifndef S_ZOOM_H
 #define S_ZOOM_H
 
-#include "mtypes.h"
 #include "swrast.h"
 
 
index a4f949ddfe8fc631ec35df7b69ac1cbd556520e1..f4d90c514bbac658fbdfe90fcb65f34f0db2fe34 100644 (file)
  *    Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#include "glheader.h"
-#include "imports.h"
-#include "colormac.h"
-#include "ss_context.h"
-#include "ss_triangle.h"
-#include "swrast_setup.h"
+#include "main/glheader.h"
+#include "main/imports.h"
+#include "main/colormac.h"
 #include "tnl/tnl.h"
 #include "tnl/t_context.h"
 #include "tnl/t_pipeline.h"
 #include "tnl/t_vertex.h"
+#include "swrast_setup.h"
+#include "ss_context.h"
+#include "ss_triangle.h"
+
 
 /* Need to check lighting state and vertex program state to know
  * if two-sided lighting is in effect.
index 11f9ded3ffb0d730aa2d62136571070fccc5e190..1ec293fade165c909b0ddf816902a4f080e6cbe7 100644 (file)
@@ -28,7 +28,7 @@
 #ifndef SS_CONTEXT_H
 #define SS_CONTEXT_H
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 #include "swrast/swrast.h"
 #include "swrast_setup.h"
 #include "tnl/t_context.h"
index 5a0f1f2429c7f3abb6f432ef9600094f8b1e1d32..54e24c4c44e8d8ee35acd377dc3cc97ecd74e693 100644 (file)
  *    Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#include "glheader.h"
-#include "colormac.h"
-#include "macros.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/macros.h"
+#include "main/mtypes.h"
 
 #include "tnl/t_context.h"
 
index 78833269e6e82a86d04519a1823b64f6a7aa5519..007fa2e9141a3d8d7e540876d512096c986a37c8 100644 (file)
@@ -29,7 +29,6 @@
 #ifndef SS_TRIANGLE_H
 #define SS_TRIANGLE_H
 
-#include "mtypes.h"
 #include "ss_context.h"
 
 
index 46b8b536a27837d9a9038399aee527b0da632c62..fd647c1f4ab0a10feeafd40f8f1148c3a2fbfba5 100644 (file)
  *    Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "imports.h"
-#include "state.h"
-#include "mtypes.h"
-#include "macros.h"
-#include "enums.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/imports.h"
+#include "main/state.h"
+#include "main/mtypes.h"
+#include "main/macros.h"
+#include "main/enums.h"
 
 #include "t_context.h"
 #include "t_pipeline.h"
index 0952854b8554d38f0b5fc507bb207fa4bee8e4bc..d110010f04eb75a8136a9fb6e554c7cd29fdcfa7 100644 (file)
@@ -30,7 +30,7 @@
 #ifndef _T_PIPELINE_H_
 #define _T_PIPELINE_H_
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 #include "t_context.h"
 
 extern void _tnl_run_pipeline( GLcontext *ctx );
index 21a32e5b1d8a048ca9148ba8b8259523c652a00e..712901acf3020a38c90d737fe43da0618fffcc8a 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "math/m_xform.h"
 
index 99e5a09c755a990c4ae8527a2d6556ebcdf88891..f3a7bd49f40189a4ca81ebc92e0365a9d315138a 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "math/m_xform.h"
 
index 12f2cc7735e14a97f85c4577d72d8d48f2965f14..f47f99397c9ad29bf59664884f66325f1d25d879 100644 (file)
 
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "light.h"
-#include "macros.h"
-#include "imports.h"
-#include "simple_list.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/light.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/simple_list.h"
+#include "main/mtypes.h"
 
 #include "math/m_translate.h"
 
index 01fad0cee21f9c0d22d37eaa500bb0129d59fefb..a4821cc1cccf7230a53752d6012b7c591ad84032 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "math/m_xform.h"
 
index 1ac14fedf9998ac2666b719d33356f49d838b2db..01d055c1dd8803682aa121f55da46955fd05f9e3 100644 (file)
@@ -25,8 +25,8 @@
  *    Brian Paul
  */
 
-#include "mtypes.h"
-#include "imports.h"
+#include "main/mtypes.h"
+#include "main/imports.h"
 #include "t_context.h"
 #include "t_pipeline.h"
 
index c38f0745e1bf8df56643457905c7ea84ccd45f11..c1bebc99423589651e0e1dcd15d7124e89d4bc13 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "context.h"
-#include "enums.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/enums.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "t_pipeline.h"
 
index e98ab743c5eec5a9285c811ee6cf16db238ee76a..14d3876e54713c4cac4f118366025dc9f2756781 100644 (file)
  * including any use thereof or modifications thereto.
  */
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "math/m_xform.h"
 
index 674d36f8cbef3472e73c0be5eb586d4aea7061c6..0abe8cc35dd94d39f81ec6643c2d9c917f25dc6a 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "math/m_xform.h"
 
index 276305b5e67fd76e0bd2e1f65c0de21f33849481..30aa7c4086835b880466844b06e312e373b5aa4a 100644 (file)
  */
 
 
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "mtypes.h"
+#include "main/glheader.h"
+#include "main/colormac.h"
+#include "main/context.h"
+#include "main/macros.h"
+#include "main/imports.h"
+#include "main/mtypes.h"
 
 #include "math/m_xform.h"
 
index a6728c318fe3171be817885335216c0fc87a8d5b..b661524c87088913c399bdc29989da3c0c728191 100644 (file)
@@ -25,9 +25,9 @@
  *    Keith Whitwell <keithw@tungstengraphics.com>
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
 
 #include "t_context.h"
 #include "t_vertex.h"
index fda8f151d3eb497b9b9092cadce243ec05f8442c..712311a1463e5797bbc921fd60a5186dbb4f9682 100644 (file)
@@ -28,7 +28,7 @@
 #ifndef _TNL_VERTEX_H
 #define _TNL_VERTEX_H
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 #include "t_context.h"
 
 /* New mechanism to specify hardware vertices so that tnl can build
index 236a5bedc801a20ec545bac415d2344088d1402a..db70ad4dad5ec08bc2605535c89b395c94e10c39 100644 (file)
  *    Keith Whitwell <keithw@tungstengraphics.com>
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/simple_list.h"
 #include "t_context.h"
 #include "t_vertex.h"
-#include "simple_list.h"
 
 
 
index f1c98fe2d1246bbb9547b9389505739234a3b93a..76043bd1b54ce16a817e3c5d7f1dcf6d86db2910 100644 (file)
  *    Keith Whitwell <keithw@tungstengraphics.com>
  */
 
-#include "glheader.h"
-#include "context.h"
-#include "colormac.h"
+#include "main/glheader.h"
+#include "main/context.h"
+#include "main/colormac.h"
+#include "main/simple_list.h"
+#include "main/enums.h"
 #include "t_context.h"
 #include "t_vertex.h"
-#include "simple_list.h"
-#include "enums.h"
 
 #if defined(USE_SSE_ASM)
 
index cb879da93f3c058064d36d542029542d73c2e986..1a2d9b8a57fe4f1220c3dab9d189558a0267437c 100644 (file)
@@ -30,9 +30,9 @@
  */
 
 
-#include "glheader.h"
-#include "macros.h"
-#include "enums.h"
+#include "main/glheader.h"
+#include "main/macros.h"
+#include "main/enums.h"
 #include "shader/program.h"
 #include "shader/prog_instruction.h"
 #include "shader/prog_parameter.h"
index 4a98fff026d03929f96666c8f76196a5e14228d9..2ad3abe45aae256a907a60141b3278340b94aa02 100644 (file)
@@ -26,7 +26,7 @@
 #ifndef _T_ARB_BUILD_H
 #define _T_ARB_BUILD_H
 
-#include "mtypes.h"
+#include "main/mtypes.h"
 
 extern void _tnl_UpdateFixedFunctionProgram( GLcontext *ctx );
 
index 032aa661f44d38993b6671ff49584e1bd21bcfea..be3d40de715069661e64e9f31512a1477d70a5fe 100644 (file)
@@ -29,8 +29,8 @@
  * Holger Waechtler <holger@akaflieg.extern.tu-berlin.de>
  */
 
-#include "glheader.h"
-#include "context.h"
+#include "main/glheader.h"
+#include "main/context.h"
 #include "math/m_xform.h"
 #include "tnl/t_context.h"
 
index 0caa36a5a0cc78ffae42519f0a16f34f5ba5d793..5321547935878e4291666ae17df344900c6dd98d 100644 (file)
@@ -48,8 +48,8 @@
 #include <machine/cpu.h>
 #endif
 
+#include "main/imports.h"
 #include "common_x86_asm.h"
-#include "imports.h"
 
 
 int _mesa_x86_cpu_features = 0;
index 772471c7230a7308348ebd9f157f71b2b4e83394..e68f8dfec137ad699aec058cc75aceb0d491d824 100644 (file)
@@ -1,6 +1,6 @@
 #if defined(__i386__) || defined(__386__)
 
-#include "imports.h"
+#include "main/imports.h"
 #include "x86sse.h"
 
 #define DISASSEM 0
index 4b016a1e85060444efa3d995acfd074942ff45e1..1c185387c6406fb56d124bfa67c2d0b9e26e1b9f 100644 (file)
@@ -27,8 +27,8 @@
  * Andre Werthmann <wertmann@cs.uni-potsdam.de>
  */
 
-#include "glheader.h"
-#include "context.h"
+#include "main/glheader.h"
+#include "main/context.h"
 #include "math/m_xform.h"
 #include "tnl/t_context.h"
 
index 6b74e9e375f2196e4bf23b90b43c99e706bdb79d..69f76103983f4026472f03ef82dda66bcfdf4e56 100644 (file)
@@ -28,8 +28,8 @@
  * Intel x86 assembly code by Josh Vanderhoof
  */
 
-#include "glheader.h"
-#include "context.h"
+#include "main/glheader.h"
+#include "main/context.h"
 #include "math/m_xform.h"
 #include "tnl/t_context.h"