Move WindowDriver implementations to platform folder
This commit is contained in:
@@ -23,9 +23,9 @@ set(ENGINE_SRC
|
|||||||
core/debug.cpp
|
core/debug.cpp
|
||||||
drivers/dx12/render_driver.cpp
|
drivers/dx12/render_driver.cpp
|
||||||
drivers/vulkan/render_driver.cpp
|
drivers/vulkan/render_driver.cpp
|
||||||
drivers/wayland/window_driver.cpp
|
platform/linux/wayland/window_driver.cpp
|
||||||
drivers/win32/window_driver.cpp
|
platform/linux/x11/window_driver.cpp
|
||||||
drivers/x11/window_driver.cpp
|
platform/windows/window_driver.cpp
|
||||||
platform/window_driver.cpp
|
platform/window_driver.cpp
|
||||||
render/renderer.cpp
|
render/renderer.cpp
|
||||||
render/render_device.cpp
|
render/render_device.cpp
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#ifdef NOVA_WAYLAND
|
#ifdef NOVA_WAYLAND
|
||||||
|
|
||||||
#include "drivers/wayland/window_driver.h"
|
#include "platform/linux/wayland/window_driver.h"
|
||||||
|
|
||||||
#ifdef NOVA_VULKAN
|
#ifdef NOVA_VULKAN
|
||||||
#include <vulkan/vulkan.h>
|
#include <vulkan/vulkan.h>
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#ifdef NOVA_X11
|
#ifdef NOVA_X11
|
||||||
|
|
||||||
#include "drivers/x11/window_driver.h"
|
#include "platform/linux/x11/window_driver.h"
|
||||||
|
|
||||||
#ifdef NOVA_VULKAN
|
#ifdef NOVA_VULKAN
|
||||||
#include "drivers/vulkan/render_driver.h"
|
#include "drivers/vulkan/render_driver.h"
|
||||||
@@ -4,9 +4,9 @@
|
|||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "drivers/wayland/window_driver.h" // IWYU pragma: keep
|
#include "platform/linux/wayland/window_driver.h" // IWYU pragma: keep
|
||||||
#include "drivers/win32/window_driver.h" // IWYU pragma: keep
|
#include "platform/linux/x11/window_driver.h" // IWYU pragma: keep
|
||||||
#include "drivers/x11/window_driver.h" // IWYU pragma: keep
|
#include "platform/windows/window_driver.h" // IWYU pragma: keep
|
||||||
|
|
||||||
#include <nova/core/debug.h>
|
#include <nova/core/debug.h>
|
||||||
#include <nova/platform/window_driver.h>
|
#include <nova/platform/window_driver.h>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#ifdef NOVA_WINDOWS
|
#ifdef NOVA_WINDOWS
|
||||||
|
|
||||||
#include "drivers/win32/window_driver.h"
|
#include "platform/windows/window_driver.h"
|
||||||
|
|
||||||
#ifdef NOVA_VULKAN
|
#ifdef NOVA_VULKAN
|
||||||
#include <vulkan/vulkan.h>
|
#include <vulkan/vulkan.h>
|
||||||
Reference in New Issue
Block a user