From eb89831d1471e78413145ca7159c72b42d33b376 Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Mon, 26 Sep 2022 00:06:51 -0400 Subject: MSAA --- engine/xe_device.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'engine/xe_device.cpp') diff --git a/engine/xe_device.cpp b/engine/xe_device.cpp index f602e18..dc4d5f1 100755 --- a/engine/xe_device.cpp +++ b/engine/xe_device.cpp @@ -131,7 +131,10 @@ void Device::pickPhysicalDevice() { } vkGetPhysicalDeviceProperties(physicalDevice, &properties); + samplerAnisotropy = properties.limits.maxSamplerAnisotropy; std::cout << "Physical device: " << properties.deviceName << std::endl; + std::cout << "Multisample Count: " << msaaSamples << std::endl; + std::cout << "Anisotropic Level: " << samplerAnisotropy << std::endl; } VkSampleCountFlagBits Device::getMaxUsableSampleCount() { -- cgit v1.2.3-freya