Fix clang-format issues on GGP branch merge

This commit is contained in:
baldurk
2019-03-25 14:40:38 +00:00
parent 25260c29f7
commit f165eb2616
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -741,12 +741,12 @@ static const VkExtensionProperties supportedExtensions[] = {
},
#ifdef VK_GGP_frame_token
{
VK_GGP_FRAME_TOKEN_EXTENSION_NAME, VK_GGP_FRAME_TOKEN_SPEC_VERSION,
VK_GGP_FRAME_TOKEN_EXTENSION_NAME, VK_GGP_FRAME_TOKEN_SPEC_VERSION,
},
#endif
#ifdef VK_GGP_stream_descriptor_surface
{
VK_GGP_STREAM_DESCRIPTOR_SURFACE_EXTENSION_NAME, VK_GGP_STREAM_DESCRIPTOR_SURFACE_SPEC_VERSION,
VK_GGP_STREAM_DESCRIPTOR_SURFACE_EXTENSION_NAME, VK_GGP_STREAM_DESCRIPTOR_SURFACE_SPEC_VERSION,
},
#endif
{
+1 -2
View File
@@ -76,8 +76,7 @@ void VulkanReplay::GetOutputWindowDimensions(uint64_t id, int32_t &w, int32_t &h
OutputWindow &outw = m_OutputWindows[id];
RDCLOG("Window system is GGP (%d), size is %d, %d", outw.m_WindowSystem, outw.width,
outw.height);
RDCLOG("Window system is GGP (%d), size is %d, %d", outw.m_WindowSystem, outw.width, outw.height);
// No window, specify default resolution.
w = outw.width != 0 ? outw.width : 1920;
h = outw.height != 0 ? outw.height : 1080;