aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/texture_cache/surface_view.h
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-04-16 01:39:51 -0300
committerGitHub <noreply@github.com>2020-04-16 01:39:51 -0300
commitd196ce0f716e8644eb1255946bdba757f5668053 (patch)
treeda1fca50af6699f191ee03621411f626e81536ce /src/video_core/texture_cache/surface_view.h
parent4209dba1f698838ecfde0306f23c8e043cd4cb80 (diff)
parent5fbe8785d2db2719fb8546d2f9e0ff0f99c02194 (diff)
Merge pull request #3688 from lioncash/nequal
surface_view: Add missing operator!= to ViewParams
Diffstat (limited to 'src/video_core/texture_cache/surface_view.h')
-rw-r--r--src/video_core/texture_cache/surface_view.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/surface_view.h b/src/video_core/texture_cache/surface_view.h
index b17fd11a9..90a8bb0ae 100644
--- a/src/video_core/texture_cache/surface_view.h
+++ b/src/video_core/texture_cache/surface_view.h
@@ -21,6 +21,7 @@ struct ViewParams {
std::size_t Hash() const;
bool operator==(const ViewParams& rhs) const;
+ bool operator!=(const ViewParams& rhs) const;
bool IsLayered() const {
switch (target) {