vulkan.h: Bug 13616 Clarification of types of sample counts
diff --git a/tests/layer_validation_tests.cpp b/tests/layer_validation_tests.cpp
index 860c2af..e201b8f 100644
--- a/tests/layer_validation_tests.cpp
+++ b/tests/layer_validation_tests.cpp
@@ -1588,7 +1588,7 @@
     const VkPipelineMsStateCreateInfo pipe_ms_state_ci = {
         .sType               = VK_STRUCTURE_TYPE_PIPELINE_MS_STATE_CREATE_INFO,
         .pNext               = NULL,
-        .samples             = 4,
+        .rasterSamples       = 4,
         .multisampleEnable   = 1,
         .sampleShadingEnable = 0,
         .minSampleShading    = 1.0,
@@ -1813,7 +1813,7 @@
     const VkPipelineMsStateCreateInfo pipe_ms_state_ci = {
         .sType               = VK_STRUCTURE_TYPE_PIPELINE_MS_STATE_CREATE_INFO,
         .pNext               = NULL,
-        .samples             = 1,
+        .rasterSamples       = 1,
         .multisampleEnable   = 1,
         .sampleShadingEnable = 0,
         .minSampleShading    = 1.0,