Add support for SPV_NV_sample_mask_override_coverage
This commit is contained in:
parent
7583ed73ef
commit
0ad6a4e60d
14 changed files with 215 additions and 1 deletions
|
|
@ -50,6 +50,9 @@ namespace spv {
|
|||
// Include C-based headers that don't have a namespace
|
||||
#ifdef AMD_EXTENSIONS
|
||||
#include "GLSL.ext.AMD.h"
|
||||
#endif
|
||||
#ifdef NV_EXTENSIONS
|
||||
#include "GLSL.ext.NV.h"
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
@ -255,6 +258,9 @@ const char* DecorationString(int decoration)
|
|||
|
||||
#ifdef AMD_EXTENSIONS
|
||||
case 4999: return "ExplicitInterpAMD";
|
||||
#endif
|
||||
#ifdef NV_EXTENSIONS
|
||||
case 5248: return "OverrideCoverageNV";
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue