diff options
author | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-08-19 04:27:18 -0700 |
---|---|---|
committer | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-08-29 12:17:34 -0700 |
commit | 348509269ead23cb7f953c174d400e6e3d17d723 (patch) | |
tree | b72ea058928189d5f56b605ca21447206df23834 /src/intel/Makefile.sources | |
parent | 8bd35d8bd2bff51b39baf559efd9f3a0e20fd2b0 (diff) | |
download | external_mesa3d-348509269ead23cb7f953c174d400e6e3d17d723.zip external_mesa3d-348509269ead23cb7f953c174d400e6e3d17d723.tar.gz external_mesa3d-348509269ead23cb7f953c174d400e6e3d17d723.tar.bz2 |
i965: Move blorp into src/intel/blorp
At this point, blorp is completely driver agnostic and can be safely moved
into its own folder. Soon, we hope to start using it for doing blits in
the Vulkan driver.
Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Diffstat (limited to 'src/intel/Makefile.sources')
-rw-r--r-- | src/intel/Makefile.sources | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index a8ba0b9..fcf85ea 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -1,3 +1,11 @@ +BLORP_FILES = \ + blorp/blorp.c \ + blorp/blorp.h \ + blorp/blorp_blit.c \ + blorp/blorp_clear.c \ + blorp/blorp_genX_exec.h \ + blorp/blorp_priv.h + GENXML_GENERATED_FILES = \ genxml/gen4_pack.h \ genxml/gen45_pack.h \ |