summaryrefslogtreecommitdiff
path: root/src/video_core/morton.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core: Delete mortonGravatar Chloe Marcec2021-02-081-0/+0
| | | | moron.h & morton.cpp are not used anywhere and are just empty files
* video_core: Rewrite the texture cacheGravatar ReinUsesLisp2020-12-301-18/+0
| | | | | | | | | | | | | | The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage.The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage. This commit aims to address those issues.
* renderer_opengl: Use block linear swizzling for CPU framebuffersGravatar ReinUsesLisp2019-08-211-3/+0
|
* video_core: Refactor to use MemoryManager interface for all memory access.Gravatar bunnei2019-03-161-1/+1
| | | | | | | | | | | # Conflicts: # src/video_core/engines/kepler_memory.cpp # src/video_core/engines/maxwell_3d.cpp # src/video_core/morton.cpp # src/video_core/morton.h # src/video_core/renderer_opengl/gl_global_cache.cpp # src/video_core/renderer_opengl/gl_global_cache.h # src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
* video_core/morton: Use enum to describe MortonCopyPixels128 modeGravatar ReinUsesLisp2019-03-131-2/+2
|
* video_core/morton: Remove unused parameter in MortonSwizzleGravatar ReinUsesLisp2019-03-131-1/+1
|
* Implemented Tile Width SpacingGravatar FernandoS272018-11-261-3/+3
|
* video_core: Move morton functions to their own fileGravatar ReinUsesLisp2018-11-251-0/+21