mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 00:48:44 +01:00
a574829bb6
This behaviour is correct, and needs to be enabled by default.
18 lines
345 B
C++
18 lines
345 B
C++
#include <unordered_map>
|
|
|
|
#include "dxbc_options.h"
|
|
|
|
namespace dxvk {
|
|
|
|
DxbcOptions::DxbcOptions() {
|
|
|
|
}
|
|
|
|
|
|
DxbcOptions::DxbcOptions(const Rc<DxvkDevice>& device) {
|
|
const DxvkDeviceFeatures& devFeatures = device->features();
|
|
|
|
useStorageImageReadWithoutFormat = devFeatures.core.features.shaderStorageImageReadWithoutFormat;
|
|
}
|
|
|
|
} |