Browse Source

Vk: DeviceCreateInfo state is allocated always.

Probably some leftover from the early days.
pull/491/head
Vladimír Vondruš 5 years ago
parent
commit
ccab98920f
  1. 2
      src/Magnum/Vk/Device.cpp

2
src/Magnum/Vk/Device.cpp

@ -370,7 +370,7 @@ Device::Device(Instance& instance, const DeviceCreateInfo& info, DevicePropertie
info._state->version : _properties->version();
/* Print all enabled extensions if we're not told to be quiet */
if(!info._state || !info._state->quietLog) {
if(!info._state->quietLog) {
Debug{} << "Device:" << _properties->name();
Debug{} << "Device version:" << version;

Loading…
Cancel
Save