dxvk/src/dxvk/dxvk_options.h

15 lines
253 B
C
Raw Normal View History

#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;
};
}