diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-11 14:36:46 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-11 14:50:06 +0200 |
commit | 83b630b8c27fc3307eba36fa2b6193690bd18e4c (patch) | |
tree | a189f49f22118041d4e69cce1bb57946b3ccb44a /modules/denoise/SCsub | |
parent | 32133a11b56761df99579ad96ee29a47d2aed6b4 (diff) |
thirdparty: Cleanup after #38386, document provenance and copyright
Also renamed `delaunay.h` to `delaunay_2d.h` to match the class name.
Diffstat (limited to 'modules/denoise/SCsub')
-rw-r--r-- | modules/denoise/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/denoise/SCsub b/modules/denoise/SCsub index 8cf91b7dbd..0fa65c6296 100644 --- a/modules/denoise/SCsub +++ b/modules/denoise/SCsub @@ -17,7 +17,7 @@ thirdparty_sources = [ "core/network.cpp", "core/autoencoder.cpp", "core/transfer_function.cpp", - "weights/rtlightmap_hdr.cpp", + "weights/rtlightmap_hdr.gen.cpp", "mkl-dnn/src/common/batch_normalization.cpp", "mkl-dnn/src/common/concat.cpp", "mkl-dnn/src/common/convolution.cpp", @@ -110,7 +110,7 @@ env_thirdparty.disable_warnings() env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources) weights_in_path = thirdparty_dir + "weights/rtlightmap_hdr.tza" -weights_out_path = thirdparty_dir + "weights/rtlightmap_hdr.cpp" +weights_out_path = thirdparty_dir + "weights/rtlightmap_hdr.gen.cpp" env_thirdparty.Depends(weights_out_path, weights_in_path) env_thirdparty.CommandNoCache(weights_out_path, weights_in_path, resource_to_cpp.tza_to_cpp) |