1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-01 08:52:11 +01:00

[dxvk] Remove obsolete DxvkDeviceOptions structure

This hasn't been used since 2.0.
This commit is contained in:
Philip Rebohle 2024-10-24 12:16:52 +02:00 committed by Philip Rebohle
parent ec62551412
commit 640379e54b
2 changed files with 0 additions and 21 deletions

View File

@ -113,14 +113,6 @@ namespace dxvk {
return result;
}
DxvkDeviceOptions DxvkDevice::options() const {
DxvkDeviceOptions options;
options.maxNumDynamicUniformBuffers = m_properties.core.properties.limits.maxDescriptorSetUniformBuffersDynamic;
options.maxNumDynamicStorageBuffers = m_properties.core.properties.limits.maxDescriptorSetStorageBuffersDynamic;
return options;
}
Rc<DxvkCommandList> DxvkDevice::createCommandList() {

View File

@ -29,13 +29,6 @@ namespace dxvk {
class DxvkInstance;
/**
* \brief Device options
*/
struct DxvkDeviceOptions {
uint32_t maxNumDynamicUniformBuffers = 0;
uint32_t maxNumDynamicStorageBuffers = 0;
};
/**
* \brief Device performance hints
@ -252,12 +245,6 @@ namespace dxvk {
* \returns Supported shader pipeline stages
*/
VkPipelineStageFlags getShaderPipelineStages() const;
/**
* \brief Retrieves device options
* \returns Device options
*/
DxvkDeviceOptions options() const;
/**
* \brief Retrieves performance hints