diff options
author | Jason Ekstrand <[email protected]> | 2017-03-01 11:20:25 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-03-01 16:14:03 -0800 |
commit | d5b355ce5fd6dbff61f1f471c38aa62db9d621c4 (patch) | |
tree | 608ec05d1d64672f9cbc65ce8734d4383ba6254f /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | 8048c1953c97de75ccbe33d719ca81f67a5ba255 (diff) |
i965: Move intel_debug.h to intel/common/gen_debug.h
This is shared between the Vulkan and GL drivers as it's a requirement
of the back-end compiler. However, it doesn't really belong in the
compiler. We rename the file to match the prefix of the other stuff in
common and because libdrm defines an intel_debug.h and this avoids a
pile of possible name conflicts.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 4711be07b49..62cbdfee6a5 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -84,9 +84,7 @@ i965_compiler_FILES = \ gen6_gs_visitor.cpp \ gen6_gs_visitor.h \ intel_asm_annotation.c \ - intel_asm_annotation.h \ - intel_debug.c \ - intel_debug.h + intel_asm_annotation.h i965_compiler_GENERATED_FILES = \ brw_nir_trig_workarounds.c |