Binding model test: correct test case name, correct VkCommandPoolCreateInfo parameters
authorscygan <slawomir.cygan@intel.com>
Thu, 7 Jan 2016 16:47:18 +0000 (17:47 +0100)
committerscygan <slawomir.cygan@intel.com>
Thu, 7 Jan 2016 16:49:10 +0000 (17:49 +0100)
external/vulkancts/modules/vulkan/binding_model/vktBindingShaderAccessTests.cpp

index 6733fc5f10a985280a166c63021f1a895ab58790..0728c16cdeb3b6616037fbd3e3ae349c01978e2e 100644 (file)
@@ -1740,8 +1740,8 @@ void ComputeCommand::submitAndWait (deUint32 queueFamilyIndex, vk::VkQueue queue
        {
                vk::VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO,
                DE_NULL,
-               queueFamilyIndex,                                                                       // queueFamilyIndex
                vk::VK_COMMAND_POOL_CREATE_TRANSIENT_BIT,                       // flags
+               queueFamilyIndex,                                                                       // queueFamilyIndex             
        };
        const vk::Unique<vk::VkCommandPool>                             cmdPool                         (vk::createCommandPool(m_vki, m_device, &cmdPoolCreateInfo));
 
@@ -6279,7 +6279,7 @@ tcu::TestCaseGroup* createShaderAccessTests (tcu::TestContext& testCtx)
        } s_bindTypes[] =
        {
                { true,         "primary_cmd_buf",      "Bind in primary command buffer"        },
-               { false,        "seconday_cmd_buf",     "Bind in secondary command buffer"      },
+               { false,        "secondary_cmd_buf",    "Bind in secondary command buffer"      },
        };
        static const struct
        {