1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-20 01:54:16 +01:00

[tests] Enable subgroup ops for DXBC compiler app

This commit is contained in:
Philip Rebohle 2018-11-07 12:07:47 +01:00
parent 4f76b89941
commit 94b0058e0d
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -42,8 +42,8 @@ int WINAPI WinMain(HINSTANCE hInstance,
DxbcModule module(reader);
DxbcModuleInfo moduleInfo;
moduleInfo.options = DxbcOptions();
moduleInfo.xfb = nullptr;
moduleInfo.options.useSubgroupOpsForEarlyDiscard = true;
moduleInfo.xfb = nullptr;
Rc<DxvkShader> shader = module.compile(moduleInfo, ifileName);
std::ofstream ofile(str::fromws(argv[2]), std::ios::binary);