summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_shader_disk_cache.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-01-14 02:36:52 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-02-07 02:20:57 +0100
commit145c3ac89e14c5400e617d4af08c3b8c251cf7c8 (patch)
tree581e011f906a7ff4db4df9d6aaf20280a3ac1112 /src/video_core/renderer_opengl/gl_shader_disk_cache.h
parentgl_shader_decompiler: Remove name entries (diff)
downloadyuzu-145c3ac89e14c5400e617d4af08c3b8c251cf7c8.tar
yuzu-145c3ac89e14c5400e617d4af08c3b8c251cf7c8.tar.gz
yuzu-145c3ac89e14c5400e617d4af08c3b8c251cf7c8.tar.bz2
yuzu-145c3ac89e14c5400e617d4af08c3b8c251cf7c8.tar.lz
yuzu-145c3ac89e14c5400e617d4af08c3b8c251cf7c8.tar.xz
yuzu-145c3ac89e14c5400e617d4af08c3b8c251cf7c8.tar.zst
yuzu-145c3ac89e14c5400e617d4af08c3b8c251cf7c8.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_shader_disk_cache.h')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_disk_cache.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_disk_cache.h b/src/video_core/renderer_opengl/gl_shader_disk_cache.h
new file mode 100644
index 000000000..cb40e9926
--- /dev/null
+++ b/src/video_core/renderer_opengl/gl_shader_disk_cache.h
@@ -0,0 +1,41 @@
+// Copyright 2019 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <tuple>
+
+#include "common/common_types.h"
+#include "video_core/engines/maxwell_3d.h"
+
+namespace OpenGL {
+
+using ProgramCode = std::vector<u64>;
+using Maxwell = Tegra::Engines::Maxwell3D::Regs;
+
+struct BaseBindings {
+private:
+ auto Tie() const {
+ return std::tie(cbuf, gmem, sampler);
+ }
+
+public:
+ u32 cbuf{};
+ u32 gmem{};
+ u32 sampler{};
+
+ bool operator<(const BaseBindings& rhs) const {
+ return Tie() < rhs.Tie();
+ }
+
+ bool operator==(const BaseBindings& rhs) const {
+ return Tie() == rhs.Tie();
+ }
+
+ bool operator!=(const BaseBindings& rhs) const {
+ return !this->operator==(rhs);
+ }
+};
+
+} // namespace OpenGL \ No newline at end of file