From 14d04c94b84ba39caeffa37692d6cdfcd3458537 Mon Sep 17 00:00:00 2001 From: mklefrancois <38076163+mklefrancois@users.noreply.github.com> Date: Wed, 2 Sep 2020 15:57:20 +0200 Subject: [PATCH] Formating --- ray_tracing__simple/hello_vulkan.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ray_tracing__simple/hello_vulkan.cpp b/ray_tracing__simple/hello_vulkan.cpp index cdfe4ff..4a870f2 100644 --- a/ray_tracing__simple/hello_vulkan.cpp +++ b/ray_tracing__simple/hello_vulkan.cpp @@ -334,7 +334,8 @@ void HelloVulkan::createTextureImages(const vk::CommandBuffer& cmdBuf, o << "media/textures/" << texture; std::string txtFile = nvh::findFile(o.str(), defaultSearchPaths); - stbi_uc* stbi_pixels = stbi_load(txtFile.c_str(), &texWidth, &texHeight, &texChannels, STBI_rgb_alpha); + stbi_uc* stbi_pixels = + stbi_load(txtFile.c_str(), &texWidth, &texHeight, &texChannels, STBI_rgb_alpha); std::array color{255u, 0u, 255u, 255u};