Skip to content

Commit e6f6a03

Browse files
NativeApp: updated copyright notice
1 parent 8d748a5 commit e6f6a03

14 files changed

Lines changed: 106 additions & 55 deletions

File tree

NativeApp/include/Android/AndroidAppBase.hpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/include/IOS/IOSAppBase.hpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/include/Linux/LinuxAppBase.hpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/include/MacOS/MacOSAppBase.hpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2019 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/include/UWP/UWPAppBase.hpp

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.
@@ -51,7 +53,7 @@ class UWPAppBase : public AppBase
5153

5254
// Notifies the app that it is being suspended.
5355
virtual void OnSuspending() {}
54-
56+
5557
// Notifies the app that it is no longer suspended.
5658
virtual void OnResuming() {}
5759

@@ -63,7 +65,7 @@ class UWPAppBase : public AppBase
6365
virtual std::shared_ptr<DX::DeviceResources> InitDeviceResources() = 0;
6466

6567
virtual void InitWindowSizeDependentResources() = 0;
66-
68+
6769
virtual void CreateRenderers() = 0;
6870

6971
protected:

NativeApp/src/Android/AndroidAppBase.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/src/Android/AndroidMain.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/src/IOS/IOSAppBase.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/src/Linux/LinuxMain.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2018 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

NativeApp/src/MacOS/MacOSAppBase.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
/* Copyright 2015-2019 Egor Yusov
2-
*
1+
/*
2+
* Copyright 2019-2021 Diligent Graphics LLC
3+
* Copyright 2015-2019 Egor Yusov
4+
*
35
* Licensed under the Apache License, Version 2.0 (the "License");
46
* you may not use this file except in compliance with the License.
57
* You may obtain a copy of the License at
6-
*
8+
*
79
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
10+
*
911
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1113
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS.

0 commit comments

Comments
 (0)