dxvk/src/dxso/dxso_modinfo.h

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;
};
}