From 2b9389202e0d1c8451aff176233cf211feef59dd Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 16 Jul 2019 20:18:48 -0400 Subject: VideoCommon: Remove unused MathUtil.h include from VideoCommon.h This header doesn't actually make use of MathUtil.h within itself, so this can be removed. Many other source files used VideoCommon.h as an indirect include to include MathUtil.h, so these includes can also be adjusted. While we're at it, we can also migrate valid inclusions of VideoCommon.h into cpp files where it can feasibly be done to minimize propagating it via other headers. --- Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Source/Core/VideoBackends/Vulkan/VulkanContext.cpp') diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp index 1f0955c921..1df8080f84 100644 --- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp +++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp @@ -14,6 +14,7 @@ #include "VideoBackends/Vulkan/VulkanContext.h" #include "VideoCommon/DriverDetails.h" +#include "VideoCommon/VideoCommon.h" namespace Vulkan { -- cgit v1.2.3