There was an error fetching the commit references. Please try again later.
renderer_opengl: Implement a buffer cache.
The idea of this cache is to avoid redundant uploads. So we are going to cache the uploaded buffers within the stream_buffer and just reuse the old pointers. The next step is to implement a VBO cache on GPU memory, but for now, I want to check the overhead of the cache management. Fetching the buffer over PCI-E should be quite fast.
Showing
- src/video_core/CMakeLists.txt 1 addition, 0 deletionssrc/video_core/CMakeLists.txt
- src/video_core/renderer_opengl/gl_buffer_cache.cpp 90 additions, 0 deletionssrc/video_core/renderer_opengl/gl_buffer_cache.cpp
- src/video_core/renderer_opengl/gl_buffer_cache.h 57 additions, 0 deletionssrc/video_core/renderer_opengl/gl_buffer_cache.h
- src/video_core/renderer_opengl/gl_rasterizer.cpp 27 additions, 74 deletionssrc/video_core/renderer_opengl/gl_rasterizer.cpp
- src/video_core/renderer_opengl/gl_rasterizer.h 7 additions, 12 deletionssrc/video_core/renderer_opengl/gl_rasterizer.h
Loading
Please register or sign in to comment