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

Function VulkanBindImageMemory

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

Source from the content-addressed store, hash-verified

2269}
2270
2271void VulkanBindImageMemory(GraphicContext* ctx, VulkanImage* image, VulkanMemory* mem)
2272{
2273 KYTY_PROFILER_FUNCTION();
2274
2275 EXIT_IF(ctx == nullptr);
2276 EXIT_IF(mem == nullptr);
2277 EXIT_IF(image == nullptr);
2278
2279 vkBindImageMemory(ctx->device, image->image, mem->memory, mem->offset);
2280}
2281
2282void VulkanBindBufferMemory(GraphicContext* ctx, VulkanBuffer* buffer, VulkanMemory* mem)
2283{

Callers 8

CreateDummyBufferMethod · 0.85
create_funcFunction · 0.85
create_funcFunction · 0.85
create_funcFunction · 0.85
create2_funcFunction · 0.85
create_funcFunction · 0.85
create2_funcFunction · 0.85
create_funcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected