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/intel/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/intel/Makefile.sources')
-rw-r--r-- | src/intel/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index be6bdef7b69..240371261e1 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -7,6 +7,8 @@ BLORP_FILES = \ blorp/blorp_priv.h COMMON_FILES = \ + common/gen_debug.c \ + common/gen_debug.h \ common/gen_device_info.c \ common/gen_device_info.h \ common/gen_l3_config.c \ |