Assembler support for new capabilities in Rev32

This commit is contained in:
David Neto 2015-09-23 15:44:02 -04:00
parent 8576c9c327
commit c66f5074e2
2 changed files with 36 additions and 0 deletions

View File

@ -1306,6 +1306,24 @@ static const spv_operand_desc_t capabilityInfoEntries[] = {
CASE(CullDistance),
CASE(ImageCubeArray),
CASE(SampleRateShading),
CASE(ImageRect),
CASE(SampledRect),
CASE(GenericPointer),
CASE(Int8),
CASE(InputTarget),
CASE(SparseResidency),
CASE(MinLod),
CASE(Sampled1D),
CASE(Image1D),
CASE(SampledCubeArray),
CASE(SampledBuffer),
CASE(ImageBuffer),
CASE(ImageMSArray),
CASE(AdvancedFormats),
CASE(ImageQuery),
CASE(DerivativeControl),
CASE(InterpolationFunction),
CASE(TransformFeedback),
#undef CASE
};

View File

@ -249,6 +249,24 @@ INSTANTIATE_TEST_CASE_P(TextToBinaryCapability, OpCapabilityTest,
CASE(CullDistance),
CASE(ImageCubeArray),
CASE(SampleRateShading),
CASE(ImageRect),
CASE(SampledRect),
CASE(GenericPointer),
CASE(Int8),
CASE(InputTarget),
CASE(SparseResidency),
CASE(MinLod),
CASE(Sampled1D),
CASE(Image1D),
CASE(SampledCubeArray),
CASE(SampledBuffer),
CASE(ImageBuffer),
CASE(ImageMSArray),
CASE(AdvancedFormats),
CASE(ImageQuery),
CASE(DerivativeControl),
CASE(InterpolationFunction),
CASE(TransformFeedback),
}));
#undef CASE
// clang-format on