1
0
Fork 0

Rename Display to Window.

It makes more sense to be consistent and always call it window.
This commit is contained in:
Henrik Hautakoski 2023-08-22 07:12:47 +02:00
parent 416a71f744
commit 24da7f45e0
33 changed files with 257 additions and 255 deletions

View file

@ -25,7 +25,7 @@ set( ENGINE_SRC
# Platform
source/Platform/PlatformApplication.cpp
source/Platform/PlatformDisplay.cpp
source/Platform/PlatformWindow.cpp
# Math
source/Math/Color.cpp
@ -40,11 +40,11 @@ set( ENGINE_SRC
source/Input/Keyboard.cpp
source/Input/Mouse.cpp
# Display
source/Display/Display.cpp
source/Display/DisplayDescription.cpp
source/Display/DisplayMode.cpp
source/Display/GLContext.cpp
# Window
source/Window/Window.cpp
source/Window/WindowDescription.cpp
source/Window/DisplayMode.cpp
source/Window/GLContext.cpp
# GfxDriver
source/GfxDriver/ShaderProgram.cpp
@ -95,7 +95,7 @@ set(ENGINE_GFXDRIVER_OPENGL_SRC
set(ENGINE_PLATFORM_WIN32_SRC
source/Platform/Win32/Win32Application.cpp
source/Platform/Win32/Win32Display.cpp
source/Platform/Win32/Win32Window.cpp
source/Platform/Win32/Win32GLContext.cpp
source/Platform/Win32/Win32Input.cpp
source/Platform/Win32/Win32Internal.cpp