mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-21 13:15:57 +00:00
Fix some missed clang-format issues
This commit is contained in:
@@ -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++)
|
||||
|
||||
Reference in New Issue
Block a user