diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-02-22 19:40:26 -0300 |
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-02-24 01:26:07 -0300 |
| commit | 1dda77d392a31f3a0e7228518eab6d1166020876 (patch) | |
| tree | ab46e1f92e3355e0c053a57c8ae984bf475830f2 /src/video_core/shader/node.h | |
| parent | 2b4cdb73b6d6a8e677db2890b5e9fadc742eb20d (diff) | |
shader: Simplify indexed sampler usages
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index a0a7b9111..a1828546e 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h @@ -299,7 +299,7 @@ private: u32 index{}; ///< Emulated index given for the this sampler. u32 offset{}; ///< Offset in the const buffer from where the sampler is being read. u32 buffer{}; ///< Buffer where the bindless sampler is being read (unused on bound samplers). - u32 size{}; ///< Size of the sampler if indexed. + u32 size{1}; ///< Size of the sampler. Tegra::Shader::TextureType type{}; ///< The type used to sample this texture (Texture2D, etc) bool is_array{}; ///< Whether the texture is being sampled as an array texture or not. |
