How Can I fix error Exception thrown at 0x00007FF7202EFB33 in VulkanEngine.exe: 0xC0000005: Access violation reading location 0x000001D7FFFFFEF8

-4

I was trying to relese my project but I got the following message.

error Exception thrown at 0x00007FF67CEDFAF2 in VulkanEngine.exe: 0xC0000005: Access violation reading location 0x000001D7FFFFFEF8

But I don't understand what it is Can someone please help me?

Below is the code where the error hapend.

uint32_t materialIdx = 0;
    if (entity->shapeIdx > -1) materialIdx = entity->pEntityData->shapes[entity->shapeIdx].materialIdx;
    vh::vhRenderUpdateDescriptorSet(device, entity->descriptorSets[imageIndex],
                                    { entity->uniformBuffers[imageIndex], VK_NULL_HANDLE }, //UBOs
                                    { sizeof(vh::vhUBOPerObject) ,        VK_NULL_HANDLE }, //UBO sizes
                                    { VK_NULL_HANDLE, entity->pEntityData->materials[materialIdx].map_Kd.imageView },   //textureImageViews
                                    { VK_NULL_HANDLE, entity->pEntityData->materials[materialIdx].map_K
c++
runtime-error
vulkan
asked on Stack Overflow Jan 21, 2019 by user3052811

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0