mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 18:23:52 +01:00
17 lines
291 B
C
17 lines
291 B
C
|
#pragma once
|
||
|
|
||
|
#include "dxso_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 DxsoModuleInfo {
|
||
|
DxsoOptions options;
|
||
|
};
|
||
|
|
||
|
}
|