Assembler support for new capabilities in Rev32
authorDavid Neto <dneto@google.com>
Wed, 23 Sep 2015 19:44:02 +0000 (15:44 -0400)
committerDavid Neto <dneto@google.com>
Mon, 26 Oct 2015 16:55:33 +0000 (12:55 -0400)
source/operand.cpp
test/TextToBinary.ModeSetting.cpp

index 7c9f69e..2dd6cc2 100644 (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
 };
 
index d94388d..96af9f2 100644 (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