diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-15 22:28:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-15 22:28:07 +0200 |
commit | 1bdb59fc6e52ac9d2c2432511fe7524994cc4f55 (patch) | |
tree | bcef764c59b000dba9eb040281799bf0152cb363 /src/video_core/engines | |
parent | Merge pull request #2705 from FernandoS27/tex-cache-fixes (diff) | |
parent | gl_shader_decompiler: Fix gl_PointSize redeclaration (diff) | |
download | yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.gz yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.bz2 yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.lz yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.xz yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.tar.zst yuzu-1bdb59fc6e52ac9d2c2432511fe7524994cc4f55.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 4aaad2979..79d469b88 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -78,7 +78,7 @@ union Attribute { constexpr explicit Attribute(u64 value) : value(value) {} enum class Index : u64 { - PointSize = 6, + LayerViewportPointSize = 6, Position = 7, Attribute_0 = 8, Attribute_31 = 39, |