memory management Vulkan

自闭症网瘾萝莉.ら 提交于 2019-12-03 04:26:58

https://www.youtube.com/watch?v=rXSdDE7NWmA

vulkan

DEVICE_LOCAL 仅GPU可见 比如framebuffer 或者上传一次之后一直是gpu用的 srv vertexbuffer indexbuffer

 HOST_VISIBLE CPU可见

DEVICE_LOCAL+ HOST_VISIBLE CPU可见 比如constant buffer 需要每帧cpu写 gpu使用 uncached slow read write

HOST_VISIBLE+HOST_CACHED system memory, cached,GPU access through PCI,good resource to write by GPU ,read by CPU

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!