mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
22 lines
418 B
C
22 lines
418 B
C
|
#pragma once
|
||
|
|
||
|
#include "../dxvk/dxvk_device.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
/**
|
||
|
* \brief DXBC compiler options
|
||
|
*
|
||
|
* Defines driver- or device-specific options,
|
||
|
* which are mostly workarounds for driver bugs.
|
||
|
*/
|
||
|
struct DxbcOptions {
|
||
|
DxbcOptions() { }
|
||
|
DxbcOptions(
|
||
|
const Rc<DxvkDevice>& device);
|
||
|
|
||
|
/// Use Fmin/Fmax instead of Nmin/Nmax.
|
||
|
bool useSimpleMinMaxClamp = false;
|
||
|
};
|
||
|
|
||
|
}
|