Fix some missed clang-format issues

This commit is contained in:
baldurk
2016-12-09 15:46:57 +00:00
parent eadd051f98
commit a968365f0f
2 changed files with 6 additions and 7 deletions
-1
View File
@@ -123,7 +123,6 @@ public:
static ID3DBlob *MakeRootSig(const D3D12RootSignature &rootsig);
ID3DBlob *GetOverdrawWritePS() { return m_QuadOverdrawWritePS; }
private:
struct OutputWindow
{
@@ -335,10 +335,10 @@ VkResult WrappedVulkan::vkCreateInstance(const VkInstanceCreateInfo *pCreateInfo
record->instDevInfo = new InstanceDeviceInfo();
#undef CheckExt
#define CheckExt(name) \
#define CheckExt(name) \
if(!strcmp(modifiedCreateInfo.ppEnabledExtensionNames[i], #name)) \
{ \
record->instDevInfo->ext_##name = true; \
{ \
record->instDevInfo->ext_##name = true; \
}
for(uint32_t i = 0; i < modifiedCreateInfo.enabledExtensionCount; i++)
@@ -1268,10 +1268,10 @@ VkResult WrappedVulkan::vkCreateDevice(VkPhysicalDevice physicalDevice,
CheckInstanceExts();
#undef CheckExt
#define CheckExt(name) \
#define CheckExt(name) \
if(!strcmp(createInfo.ppEnabledExtensionNames[i], #name)) \
{ \
record->instDevInfo->ext_##name = true; \
{ \
record->instDevInfo->ext_##name = true; \
}
for(uint32_t i = 0; i < createInfo.enabledExtensionCount; i++)