Add support for SPV_NV_geometry_shader_passthrough

This commit is contained in:
chaoc 2016-12-20 13:28:52 -08:00
parent 0ad6a4e60d
commit 6e5acae144
13 changed files with 153 additions and 8 deletions

View file

@ -261,6 +261,7 @@ const char* DecorationString(int decoration)
#endif
#ifdef NV_EXTENSIONS
case 5248: return "OverrideCoverageNV";
case 5250: return "PassthroughNV";
#endif
}
}
@ -818,6 +819,11 @@ const char* CapabilityString(int info)
case 4423: return "SubgroupBallotKHR";
case 4427: return "DrawParameters";
#ifdef NV_EXTENSIONS
case 5251: return "GeometryShaderPassthroughNV";
#endif
}
}