mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
17 lines
292 B
C
17 lines
292 B
C
|
#pragma once
|
||
|
|
||
|
#include "dxbc_options.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
/**
|
||
|
* \brief Shader module info
|
||
|
*
|
||
|
* Stores information which may affect shader compilation.
|
||
|
* This data can be supplied by the client API implementation.
|
||
|
*/
|
||
|
struct DxbcModuleInfo {
|
||
|
DxbcOptions options;
|
||
|
};
|
||
|
|
||
|
}
|