DustinHLand / vkDOOM3

Vulkan DOOM 3 port based on DOOM 3 BFG Edition
GNU General Public License v3.0
850 stars 90 forks source link

Windowed mode does not work #21

Open Helioform opened 5 years ago

Helioform commented 5 years ago

It crashes when I try to set the game to windowed mode.

It raises an exception: "read access violation this was nullptr" inside this method:

void idVulkanBlock::Free( vulkanAllocation_t & allocation ) { chunk_t * current = NULL; for ( current = m_head; current != NULL; current = current->next ) { // exception here if ( current->id == allocation.id ) { break; } }

... }

DustinHLand commented 5 years ago

Hi, what's your setup? ( OS, card, driver ) Are you setting r_mode or other render cvars from the cmdline on startup? How are you going to windowed mode essentially?