summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/ast.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-10-18 02:59:46 +0200
committerLioncash <mathew1800@gmail.com>2019-10-18 02:59:48 +0200
commit074b38b7a918a52f9085490f0da44b6e0dc23639 (patch)
treeaa50ef01406e848d63c8ba061a6864775db18f18 /src/video_core/shader/ast.h
parentvideo_core/shader/ast: Make ASTManager::Print a const member function (diff)
downloadyuzu-074b38b7a918a52f9085490f0da44b6e0dc23639.tar
yuzu-074b38b7a918a52f9085490f0da44b6e0dc23639.tar.gz
yuzu-074b38b7a918a52f9085490f0da44b6e0dc23639.tar.bz2
yuzu-074b38b7a918a52f9085490f0da44b6e0dc23639.tar.lz
yuzu-074b38b7a918a52f9085490f0da44b6e0dc23639.tar.xz
yuzu-074b38b7a918a52f9085490f0da44b6e0dc23639.tar.zst
yuzu-074b38b7a918a52f9085490f0da44b6e0dc23639.zip
Diffstat (limited to 'src/video_core/shader/ast.h')
-rw-r--r--src/video_core/shader/ast.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/ast.h b/src/video_core/shader/ast.h
index 8183ffa3f..a2f0044ba 100644
--- a/src/video_core/shader/ast.h
+++ b/src/video_core/shader/ast.h
@@ -332,9 +332,9 @@ public:
void Decompile();
- void ShowCurrentState(std::string_view state);
+ void ShowCurrentState(std::string_view state) const;
- void SanityCheck();
+ void SanityCheck() const;
void Clear();