1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-12 22:08:59 +01:00
dxvk/src/dxbc/dxbc_modinfo.h

29 lines
508 B
C
Raw Normal View History

#pragma once
#include "dxbc_options.h"
namespace dxvk {
/**
* \brief Tessellation info
*
* Stores the maximum tessellation factor
* to export from tessellation shaders.
*/
struct DxbcTessInfo {
float maxTessFactor;
};
/**
* \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;
DxbcTessInfo* tess;
};
}