summaryrefslogtreecommitdiffstats
path: root/src/video_core/morton.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-02-08video_core: Delete mortonChloe Marcec1-0/+0
moron.h & morton.cpp are not used anywhere and are just empty files
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-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.
2019-08-21renderer_opengl: Use block linear swizzling for CPU framebuffersReinUsesLisp1-3/+0
2019-03-16video_core: Refactor to use MemoryManager interface for all memory access.bunnei1-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
2019-03-13video_core/morton: Use enum to describe MortonCopyPixels128 modeReinUsesLisp1-2/+2
2019-03-13video_core/morton: Remove unused parameter in MortonSwizzleReinUsesLisp1-1/+1
2018-11-26Implemented Tile Width SpacingFernandoS271-3/+3
2018-11-25video_core: Move morton functions to their own fileReinUsesLisp1-0/+21