summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-07-12 07:01:27 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-09-06 01:35:51 +0200
commit6170337001cc11deabd57023a548c44de4242e9d (patch)
treee9d6260d49ef69db4c5525d176a202892594acc7 /src/video_core/engines
parentgl_state: Add support for glBindImageTextures (diff)
downloadyuzu-6170337001cc11deabd57023a548c44de4242e9d.tar
yuzu-6170337001cc11deabd57023a548c44de4242e9d.tar.gz
yuzu-6170337001cc11deabd57023a548c44de4242e9d.tar.bz2
yuzu-6170337001cc11deabd57023a548c44de4242e9d.tar.lz
yuzu-6170337001cc11deabd57023a548c44de4242e9d.tar.xz
yuzu-6170337001cc11deabd57023a548c44de4242e9d.tar.zst
yuzu-6170337001cc11deabd57023a548c44de4242e9d.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 0184342a0..3b3c82f41 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -62,6 +62,7 @@ public:
static constexpr std::size_t NumVertexAttributes = 32;
static constexpr std::size_t NumVaryings = 31;
static constexpr std::size_t NumTextureSamplers = 32;
+ static constexpr std::size_t NumImages = 8; // TODO(Rodrigo): Investigate this number
static constexpr std::size_t NumClipDistances = 8;
static constexpr std::size_t MaxShaderProgram = 6;
static constexpr std::size_t MaxShaderStage = 5;