Browse Source
Merge pull request #2203 from lioncash/engines-include
video_core/engines: Remove unnecessary includes
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with
11 additions and
11 deletions
-
src/video_core/engines/fermi_2d.cpp
-
src/video_core/engines/fermi_2d.h
-
src/video_core/engines/kepler_compute.cpp
-
src/video_core/engines/kepler_compute.h
-
src/video_core/engines/kepler_memory.h
-
src/video_core/engines/maxwell_dma.cpp
-
src/video_core/engines/maxwell_dma.h
-
src/video_core/engines/shader_bytecode.h
-
src/video_core/renderer_base.cpp
-
src/video_core/renderer_vulkan/vk_buffer_cache.cpp
|
|
|
@ -2,12 +2,11 @@ |
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/memory.h"
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/math_util.h"
|
|
|
|
#include "video_core/engines/fermi_2d.h"
|
|
|
|
#include "video_core/engines/maxwell_3d.h"
|
|
|
|
#include "video_core/rasterizer_interface.h"
|
|
|
|
#include "video_core/textures/decoders.h"
|
|
|
|
|
|
|
|
namespace Tegra::Engines { |
|
|
|
|
|
|
|
|
|
|
|
@ -5,7 +5,7 @@ |
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include <array> |
|
|
|
#include "common/assert.h" |
|
|
|
#include <cstddef> |
|
|
|
#include "common/bit_field.h" |
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
|
|
|
|
@ -2,9 +2,8 @@ |
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/memory.h"
|
|
|
|
#include "video_core/engines/kepler_compute.h"
|
|
|
|
#include "video_core/memory_manager.h"
|
|
|
|
|
|
|
|
|
|
|
|
@ -5,8 +5,7 @@ |
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include <array> |
|
|
|
#include "common/assert.h" |
|
|
|
#include "common/bit_field.h" |
|
|
|
#include <cstddef> |
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
#include "video_core/gpu.h" |
|
|
|
|
|
|
|
@ -5,6 +5,7 @@ |
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include <array> |
|
|
|
#include <cstddef> |
|
|
|
#include "common/bit_field.h" |
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
|
|
|
|
@ -3,6 +3,7 @@ |
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/memory.h"
|
|
|
|
#include "video_core/engines/maxwell_3d.h"
|
|
|
|
|
|
|
|
@ -5,6 +5,7 @@ |
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include <array> |
|
|
|
#include <cstddef> |
|
|
|
#include "common/bit_field.h" |
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
|
|
|
|
@ -6,7 +6,6 @@ |
|
|
|
|
|
|
|
#include <bitset> |
|
|
|
#include <optional> |
|
|
|
#include <string> |
|
|
|
#include <tuple> |
|
|
|
#include <vector> |
|
|
|
|
|
|
|
|
|
|
|
@ -2,6 +2,7 @@ |
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
#include "core/settings.h"
|
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
|
|
|
|
@ -8,7 +8,7 @@ |
|
|
|
#include <tuple>
|
|
|
|
|
|
|
|
#include "common/alignment.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "core/memory.h"
|
|
|
|
#include "video_core/renderer_vulkan/declarations.h"
|
|
|
|
#include "video_core/renderer_vulkan/vk_buffer_cache.h"
|
|
|
|
|