diff options
author | Lioncash <mathew1800@gmail.com> | 2019-11-27 11:51:13 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-11-27 11:51:13 +0100 |
commit | 930e3115261aca06ce1a78b68b17637cc53b8582 (patch) | |
tree | 0890c687109f9562126a682e0cff43c4a6f5cf86 /src | |
parent | video_core/const_buffer_locker: Remove #pragma once from cpp file (diff) | |
download | yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar.gz yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar.bz2 yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar.lz yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar.xz yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar.zst yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/shader/const_buffer_locker.cpp | 3 | ||||
-rw-r--r-- | src/video_core/shader/const_buffer_locker.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/const_buffer_locker.cpp b/src/video_core/shader/const_buffer_locker.cpp index 9adcd8163..5dce43b1f 100644 --- a/src/video_core/shader/const_buffer_locker.cpp +++ b/src/video_core/shader/const_buffer_locker.cpp @@ -3,8 +3,7 @@ // Refer to the license.txt file included. #include <algorithm> -#include <memory> -#include "common/assert.h" + #include "common/common_types.h" #include "video_core/engines/maxwell_3d.h" #include "video_core/engines/shader_type.h" diff --git a/src/video_core/shader/const_buffer_locker.h b/src/video_core/shader/const_buffer_locker.h index 50a8ce42a..d32e2d657 100644 --- a/src/video_core/shader/const_buffer_locker.h +++ b/src/video_core/shader/const_buffer_locker.h @@ -4,6 +4,7 @@ #pragma once +#include <optional> #include <unordered_map> #include "common/common_types.h" #include "common/hash.h" |