diff options
author | bunnei <bunneidev@gmail.com> | 2015-11-13 22:52:20 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-02-05 17:17:29 -0500 |
commit | e9af70eaf3e9d190b2c75c039b004beb71f0e436 (patch) | |
tree | cf0703ef550c113c4689344ecc303a484fb97b9f /src/video_core/pica.h | |
parent | afbef525163af1b28e5b7493e58383d442762228 (diff) |
renderer_opengl: Implement HW fragment lighting LUTs within our default UBO.
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r-- | src/video_core/pica.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index b82ecf68a..aad9effdc 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -1216,7 +1216,7 @@ struct State { } }; - std::array<LutEntry, 256> luts[24]; + std::array<std::array<LutEntry, 256>, 24> luts; } lighting; /// Current Pica command list |