MCPcopy Create free account
hub / github.com/InoriRus/Kyty / VulkanUnmapMemory

Function VulkanUnmapMemory

source/emulator/src/Graphics/Objects/GpuMemory.cpp:2261–2269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2259}
2260
2261void VulkanUnmapMemory(GraphicContext* ctx, VulkanMemory* mem)
2262{
2263 KYTY_PROFILER_FUNCTION();
2264
2265 EXIT_IF(ctx == nullptr);
2266 EXIT_IF(mem == nullptr);
2267
2268 vkUnmapMemory(ctx->device, mem->memory);
2269}
2270
2271void VulkanBindImageMemory(GraphicContext* ctx, VulkanImage* image, VulkanMemory* mem)
2272{

Callers 8

ClearMethod · 0.85
ReadMethod · 0.85
UtilFillImageFunction · 0.85
UtilFillBufferFunction · 0.85
create_funcFunction · 0.85
update_funcFunction · 0.85
update_funcFunction · 0.85
write_backFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected