summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-04-21 23:17:58 +0200
committerGitHub <noreply@github.com>2020-04-21 23:17:58 +0200
commitf293b1561132cbdf70551201a219ef5e5fc62338 (patch)
tree70e76d4c1b4ea7a08c87ac1bc4c5934c96748c59 /src/video_core/engines/maxwell_3d.h
parentMerge pull request #3698 from lioncash/warning (diff)
parentfixed_pipeline_state: Hash and compare the whole structure (diff)
downloadyuzu-f293b1561132cbdf70551201a219ef5e5fc62338.tar
yuzu-f293b1561132cbdf70551201a219ef5e5fc62338.tar.gz
yuzu-f293b1561132cbdf70551201a219ef5e5fc62338.tar.bz2
yuzu-f293b1561132cbdf70551201a219ef5e5fc62338.tar.lz
yuzu-f293b1561132cbdf70551201a219ef5e5fc62338.tar.xz
yuzu-f293b1561132cbdf70551201a219ef5e5fc62338.tar.zst
yuzu-f293b1561132cbdf70551201a219ef5e5fc62338.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 5cf6a4cc3..59d5752d2 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1149,7 +1149,7 @@ public:
/// Returns whether the vertex array specified by index is supposed to be
/// accessed per instance or not.
- bool IsInstancingEnabled(u32 index) const {
+ bool IsInstancingEnabled(std::size_t index) const {
return is_instanced[index];
}
} instanced_arrays;