diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2021-01-01 18:31:25 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2021-01-01 18:31:25 +0000 |
| commit | ae2fd744e5655fcc1c9bcb0ec280f16eb67d4123 (patch) | |
| tree | 3b27ed85995f9fa95b5c9882ee588df84572daef /TextureLoader | |
| parent | GLTFLoader: added convenience constructor for Model::CreateInfo (diff) | |
| download | DiligentTools-ae2fd744e5655fcc1c9bcb0ec280f16eb67d4123.tar.gz DiligentTools-ae2fd744e5655fcc1c9bcb0ec280f16eb67d4123.zip | |
Updated copyright notice
Diffstat (limited to 'TextureLoader')
| -rw-r--r-- | TextureLoader/include/DDSLoader.h | 2 | ||||
| -rw-r--r-- | TextureLoader/include/JPEGCodec.h | 2 | ||||
| -rw-r--r-- | TextureLoader/include/PNGCodec.h | 2 | ||||
| -rw-r--r-- | TextureLoader/include/dxgiformat.h | 2 | ||||
| -rw-r--r-- | TextureLoader/include/pch.h | 2 | ||||
| -rw-r--r-- | TextureLoader/interface/Image.h | 2 | ||||
| -rw-r--r-- | TextureLoader/interface/TextureLoader.h | 2 | ||||
| -rw-r--r-- | TextureLoader/interface/TextureUtilities.h | 2 | ||||
| -rw-r--r-- | TextureLoader/src/DDSLoader.cpp | 2 | ||||
| -rw-r--r-- | TextureLoader/src/Image.cpp | 2 | ||||
| -rw-r--r-- | TextureLoader/src/JPEGCodec.c | 2 | ||||
| -rw-r--r-- | TextureLoader/src/KTXLoader.cpp | 2 | ||||
| -rw-r--r-- | TextureLoader/src/PNGCodec.c | 2 | ||||
| -rw-r--r-- | TextureLoader/src/TextureLoader.cpp | 2 | ||||
| -rw-r--r-- | TextureLoader/src/TextureUtilities.cpp | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/TextureLoader/include/DDSLoader.h b/TextureLoader/include/DDSLoader.h index 28d6b43..b3fafe3 100644 --- a/TextureLoader/include/DDSLoader.h +++ b/TextureLoader/include/DDSLoader.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/include/JPEGCodec.h b/TextureLoader/include/JPEGCodec.h index 50bca4b..1c7e072 100644 --- a/TextureLoader/include/JPEGCodec.h +++ b/TextureLoader/include/JPEGCodec.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/include/PNGCodec.h b/TextureLoader/include/PNGCodec.h index 7379220..3df5493 100644 --- a/TextureLoader/include/PNGCodec.h +++ b/TextureLoader/include/PNGCodec.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/include/dxgiformat.h b/TextureLoader/include/dxgiformat.h index f21a609..e3754f8 100644 --- a/TextureLoader/include/dxgiformat.h +++ b/TextureLoader/include/dxgiformat.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/include/pch.h b/TextureLoader/include/pch.h index 35a7fbd..5f38125 100644 --- a/TextureLoader/include/pch.h +++ b/TextureLoader/include/pch.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/interface/Image.h b/TextureLoader/interface/Image.h index 9b15e30..39332af 100644 --- a/TextureLoader/interface/Image.h +++ b/TextureLoader/interface/Image.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/interface/TextureLoader.h b/TextureLoader/interface/TextureLoader.h index f62f598..72b0ebe 100644 --- a/TextureLoader/interface/TextureLoader.h +++ b/TextureLoader/interface/TextureLoader.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/interface/TextureUtilities.h b/TextureLoader/interface/TextureUtilities.h index 10174a8..708f37d 100644 --- a/TextureLoader/interface/TextureUtilities.h +++ b/TextureLoader/interface/TextureUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/src/DDSLoader.cpp b/TextureLoader/src/DDSLoader.cpp index 69c73e7..d6a4335 100644 --- a/TextureLoader/src/DDSLoader.cpp +++ b/TextureLoader/src/DDSLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/src/Image.cpp b/TextureLoader/src/Image.cpp index fe88d74..8e9d320 100644 --- a/TextureLoader/src/Image.cpp +++ b/TextureLoader/src/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/src/JPEGCodec.c b/TextureLoader/src/JPEGCodec.c index d5398a5..4f7028f 100644 --- a/TextureLoader/src/JPEGCodec.c +++ b/TextureLoader/src/JPEGCodec.c @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/src/KTXLoader.cpp b/TextureLoader/src/KTXLoader.cpp index 3c13402..28fa86e 100644 --- a/TextureLoader/src/KTXLoader.cpp +++ b/TextureLoader/src/KTXLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/src/PNGCodec.c b/TextureLoader/src/PNGCodec.c index 96a3046..9ccb920 100644 --- a/TextureLoader/src/PNGCodec.c +++ b/TextureLoader/src/PNGCodec.c @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/src/TextureLoader.cpp b/TextureLoader/src/TextureLoader.cpp index 3c12a0f..d402fed 100644 --- a/TextureLoader/src/TextureLoader.cpp +++ b/TextureLoader/src/TextureLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/TextureLoader/src/TextureUtilities.cpp b/TextureLoader/src/TextureUtilities.cpp index ca131b9..5f5b49e 100644 --- a/TextureLoader/src/TextureUtilities.cpp +++ b/TextureLoader/src/TextureUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2019-2020 Diligent Graphics LLC + * Copyright 2019-2021 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * Licensed under the Apache License, Version 2.0 (the "License"); |
