From cdf8c68d9e3116aa3b39d81ff61591e08d0af0d8 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Thu, 23 Feb 2017 20:04:07 +0100 Subject: [PATCH] bool instead of boolean --- screenshot/screenshot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/screenshot/screenshot.cpp b/screenshot/screenshot.cpp index 73034975..ac25d626 100644 --- a/screenshot/screenshot.cpp +++ b/screenshot/screenshot.cpp @@ -308,7 +308,7 @@ public: // Get format properties for the swapchain color format VkFormatProperties formatProps; - boolean supportsBlit = true; + bool supportsBlit = true; // Check blit support for source and destination @@ -476,7 +476,7 @@ public: file << "P6\n" << width << "\n" << height << "\n" << 255 << "\n"; // If source is BGR (destination is always RGB) and we can't use blit (which does automatic conversion), we'll have to manually swizzle color components - boolean colorSwizzle = false; + bool colorSwizzle = false; // Check if source is BGR // Note: Not complete, only contains most common and basic BGR surface formats for demonstation purposes if (!supportsBlit)