mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
15 lines
253 B
C
15 lines
253 B
C
|
#pragma once
|
||
|
|
||
|
#include "../util/config/config.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
struct DxvkOptions {
|
||
|
DxvkOptions(const Config& config);
|
||
|
|
||
|
/// Allow allocating more memory from
|
||
|
/// a heap than the device supports.
|
||
|
bool allowMemoryOvercommit;
|
||
|
};
|
||
|
|
||
|
}
|