diff options
| author | Assiduous <61806567+TheMostDiligent@users.noreply.github.com> | 2021-03-18 05:06:50 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-18 05:06:50 +0000 |
| commit | 1de4b5caf9a2f779b2a160c210b425e1c63bb1a9 (patch) | |
| tree | fcac53b85a8f10b5a6a698cdc7c3ccd21f700625 /NativeApp/include | |
| parent | Updated readme (diff) | |
| parent | Fix misc. typos (diff) | |
| download | DiligentTools-1de4b5caf9a2f779b2a160c210b425e1c63bb1a9.tar.gz DiligentTools-1de4b5caf9a2f779b2a160c210b425e1c63bb1a9.zip | |
Merge pull request #21 from luzpaz/typos
Fix misc. typos
Diffstat (limited to 'NativeApp/include')
| -rw-r--r-- | NativeApp/include/AppBase.hpp | 2 | ||||
| -rw-r--r-- | NativeApp/include/Linux/LinuxAppBase.hpp | 2 | ||||
| -rw-r--r-- | NativeApp/include/NativeAppBase.hpp | 2 | ||||
| -rw-r--r-- | NativeApp/include/UWP/UWPAppBase.hpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/NativeApp/include/AppBase.hpp b/NativeApp/include/AppBase.hpp index 34d99fa..3a9eddb 100644 --- a/NativeApp/include/AppBase.hpp +++ b/NativeApp/include/AppBase.hpp @@ -110,7 +110,7 @@ public: /// Called by the framework to request the desired initial window size. /// This method is called before the platform-specific window is created. - /// An application may override this method to speciy required initial + /// An application may override this method to specify required initial /// window width and height. virtual void GetDesiredInitialWindowSize(int& width, int& height) { diff --git a/NativeApp/include/Linux/LinuxAppBase.hpp b/NativeApp/include/Linux/LinuxAppBase.hpp index 809f831..33c2b26 100644 --- a/NativeApp/include/Linux/LinuxAppBase.hpp +++ b/NativeApp/include/Linux/LinuxAppBase.hpp @@ -56,7 +56,7 @@ class LinuxAppBase : public AppBase public: /// Called when GL context is initialized - /// An application must override this method to perform requred + /// An application must override this method to perform required /// initialization operations after OpenGL context has been initialized /// by the framework /// \param [in] display - XLib display. diff --git a/NativeApp/include/NativeAppBase.hpp b/NativeApp/include/NativeAppBase.hpp index 803e8ad..522bf27 100644 --- a/NativeApp/include/NativeAppBase.hpp +++ b/NativeApp/include/NativeAppBase.hpp @@ -77,7 +77,7 @@ } #else -# error Usnupported paltform +# error Usnupported platform #endif diff --git a/NativeApp/include/UWP/UWPAppBase.hpp b/NativeApp/include/UWP/UWPAppBase.hpp index 359ce7a..3434dbb 100644 --- a/NativeApp/include/UWP/UWPAppBase.hpp +++ b/NativeApp/include/UWP/UWPAppBase.hpp @@ -52,7 +52,7 @@ public: // Notifies the app that it is being suspended. virtual void OnSuspending() {} - // Notifes the app that it is no longer suspended. + // Notifies the app that it is no longer suspended. virtual void OnResuming() {} // Notifies renderers that device resources need to be released. |
