Constants.cs 207 B

123456789
  1. namespace Ryujinx.Graphics.Shader.CodeGen
  2. {
  3. static class Constants
  4. {
  5. public const int MaxShaderStorageBuffers = 16;
  6. public const int ConstantBufferSize = 0x10000; // In bytes
  7. }
  8. }