diff options
author | Kenneth Graunke <[email protected]> | 2017-02-26 22:35:52 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-02-27 22:56:59 -0800 |
commit | b8cd78eaa1288a3b409b08751033a96fc0983114 (patch) | |
tree | 892e2386cad05de3161daf3da2174111199c6c48 /src | |
parent | 4d0d81379e6cdb1b2af952cdad95b1d958e96ef3 (diff) |
i965: Move intel_resolve_map.[ch] from i965_compiler_FILES to i965_FILES
I have no idea why these were part of the compiler files. They're
miptree related code, and the compiler doesn't appear to use them.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 5278e86339a..633c3dc00a4 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -85,9 +85,7 @@ i965_compiler_FILES = \ intel_asm_annotation.c \ intel_asm_annotation.h \ intel_debug.c \ - intel_debug.h \ - intel_resolve_map.c \ - intel_resolve_map.h + intel_debug.h i965_compiler_GENERATED_FILES = \ brw_nir_trig_workarounds.c @@ -236,6 +234,8 @@ i965_FILES = \ intel_pixel_draw.c \ intel_pixel.h \ intel_pixel_read.c \ + intel_resolve_map.c \ + intel_resolve_map.h \ intel_screen.c \ intel_screen.h \ intel_state.c \ |