mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
This reverts commit d744a3cd69403c3d3b292c65ba423f0f0f6e15ba. Reportely has an unexpected negative impact on frame times in The Witcher 3 and potentially other games on some setups.
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 = 8,
|
|
MaxNumQueryCountPerPool = 128,
|
|
MaxUniformBufferSize = 65536,
|
|
MaxVertexBindingStride = 2048,
|
|
MaxPushConstantSize = 128,
|
|
};
|
|
|
|
} |