2019-11-08 15:29:41 -05:00
|
|
|
namespace Ryujinx.Graphics.Shader.CodeGen
|
|
|
|
{
|
|
|
|
static class Constants
|
|
|
|
{
|
|
|
|
public const int MaxShaderStorageBuffers = 16;
|
2019-11-19 09:41:45 -05:00
|
|
|
|
|
|
|
public const int ConstantBufferSize = 0x10000; // In bytes
|
2019-11-08 15:29:41 -05:00
|
|
|
}
|
|
|
|
}
|