summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar FernandoS272018-10-22 21:50:03 -0400
committerGravatar FernandoS272018-10-23 15:08:00 -0400
commited8ca608a040dbd50e9ade22f57cb9b3a350aa63 (patch)
treef1b13ff6c1f6034a699875d7b17f5a913003d398 /src/video_core/engines
parentMerge pull request #1552 from FearlessTobi/port-4336 (diff)
downloadyuzu-ed8ca608a040dbd50e9ade22f57cb9b3a350aa63.tar.gz
yuzu-ed8ca608a040dbd50e9ade22f57cb9b3a350aa63.tar.xz
yuzu-ed8ca608a040dbd50e9ade22f57cb9b3a350aa63.zip
Implement PointSize
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 6cd08d28b..af7756266 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -79,6 +79,7 @@ union Attribute {
79 constexpr explicit Attribute(u64 value) : value(value) {} 79 constexpr explicit Attribute(u64 value) : value(value) {}
80 80
81 enum class Index : u64 { 81 enum class Index : u64 {
82 PointSize = 6,
82 Position = 7, 83 Position = 7,
83 Attribute_0 = 8, 84 Attribute_0 = 8,
84 Attribute_31 = 39, 85 Attribute_31 = 39,