mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-14 13:29:15 +01:00
22 lines
591 B
C++
22 lines
591 B
C++
#pragma once
|
|
|
|
#include "dxvk_include.h"
|
|
|
|
namespace dxvk {
|
|
|
|
enum DxvkLimits : size_t {
|
|
MaxNumRenderTargets = 8,
|
|
MaxNumVertexAttributes = 32,
|
|
MaxNumVertexBindings = 32,
|
|
MaxNumOutputStreams = 4,
|
|
MaxNumViewports = 16,
|
|
MaxNumResourceSlots = 1208,
|
|
MaxNumActiveBindings = 128,
|
|
MaxNumQueuedCommandBuffers = 16,
|
|
MaxNumQueryCountPerPool = 128,
|
|
MaxUniformBufferSize = 65536,
|
|
MaxVertexBindingStride = 2048,
|
|
MaxPushConstantSize = 128,
|
|
};
|
|
|
|
} |