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:
parent
ec62551412
commit
640379e54b
@ -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() {
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user