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