diff options
| author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-26 00:06:51 -0400 |
|---|---|---|
| committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-26 00:06:51 -0400 |
| commit | eb89831d1471e78413145ca7159c72b42d33b376 (patch) | |
| tree | f897123c26ca499eaa08a431f0cf6981a979bdac /engine/xe_device.cpp | |
| parent | remove color vertex data, mipmapping (diff) | |
| download | minecraftvulkan-eb89831d1471e78413145ca7159c72b42d33b376.tar.gz minecraftvulkan-eb89831d1471e78413145ca7159c72b42d33b376.tar.bz2 minecraftvulkan-eb89831d1471e78413145ca7159c72b42d33b376.zip | |
MSAA
Diffstat (limited to '')
| -rwxr-xr-x | engine/xe_device.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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() { |