summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/ast.h
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2019-10-18 06:05:25 +0200
committerGitHub <noreply@github.com>2019-10-18 06:05:25 +0200
commitdc5eedef7155a15558478fcae4ab31928008bf94 (patch)
tree02db9def9f701825cfe28ebd09374b401d80e7df /src/video_core/shader/ast.h
parentMerge pull request #2993 from lioncash/vulkan-expr (diff)
parentvideo_core/shader/ast: Make ShowCurrentState() and SanityCheck() const member functions (diff)
downloadyuzu-dc5eedef7155a15558478fcae4ab31928008bf94.tar
yuzu-dc5eedef7155a15558478fcae4ab31928008bf94.tar.gz
yuzu-dc5eedef7155a15558478fcae4ab31928008bf94.tar.bz2
yuzu-dc5eedef7155a15558478fcae4ab31928008bf94.tar.lz
yuzu-dc5eedef7155a15558478fcae4ab31928008bf94.tar.xz
yuzu-dc5eedef7155a15558478fcae4ab31928008bf94.tar.zst
yuzu-dc5eedef7155a15558478fcae4ab31928008bf94.zip
Diffstat (limited to 'src/video_core/shader/ast.h')
-rw-r--r--src/video_core/shader/ast.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/shader/ast.h b/src/video_core/shader/ast.h
index d7bf11821..a2f0044ba 100644
--- a/src/video_core/shader/ast.h
+++ b/src/video_core/shader/ast.h
@@ -328,13 +328,13 @@ public:
void InsertReturn(Expr condition, bool kills);
- std::string Print();
+ std::string Print() const;
void Decompile();
- void ShowCurrentState(std::string_view state);
+ void ShowCurrentState(std::string_view state) const;
- void SanityCheck();
+ void SanityCheck() const;
void Clear();