summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar Mat M2020-04-15 11:54:50 -0400
committerGravatar GitHub2020-04-15 11:54:50 -0400
commit64b5985f0a034fb2b1988d960b009985f9929922 (patch)
treef0b9e67be77569e7debd6eaeca4f66474fe6bbe9 /src/video_core/engines
parentMerge pull request #3668 from ReinUsesLisp/vtx-format-16ui (diff)
parentgl_rasterizer: Implement constant vertex attributes (diff)
downloadyuzu-64b5985f0a034fb2b1988d960b009985f9929922.tar.gz
yuzu-64b5985f0a034fb2b1988d960b009985f9929922.tar.xz
yuzu-64b5985f0a034fb2b1988d960b009985f9929922.zip
Merge pull request #3662 from ReinUsesLisp/constant-attrs
gl_rasterizer: Implement constant vertex attributes
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 2977a7d81..5cf6a4cc3 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -303,6 +303,10 @@ public:
303 return (type == Type::SignedNorm) || (type == Type::UnsignedNorm); 303 return (type == Type::SignedNorm) || (type == Type::UnsignedNorm);
304 } 304 }
305 305
306 bool IsConstant() const {
307 return constant;
308 }
309
306 bool IsValid() const { 310 bool IsValid() const {
307 return size != Size::Invalid; 311 return size != Size::Invalid;
308 } 312 }