summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_staging_buffer_pool.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-28gl_staging_buffers: Optimization to reduce fence waitingameerj1-4/+20
2023-05-28OpenGL: Make use of persistent buffer maps in buffer cache downloadsameerj1-0/+134
Persistent buffer maps were already used by the texture cache, this extends their usage for the buffer cache. In my testing, using the memory maps for uploads was slower than the existing "ImmediateUpload" path, so the memory map usage is limited to downloads for the time being.