summaryrefslogtreecommitdiffstats
path: root/src/video_core/morton.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core: Delete mortonChloe Marcec2021-02-081-0/+0
| | | | moron.h & morton.cpp are not used anywhere and are just empty files
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-250/+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.
* video_core: Rearrange pixel format namesReinUsesLisp2020-07-131-149/+149
| | | | | | Normalizes pixel format names to match Vulkan names. Previous to this commit pixel formats had no convention, leading to confusion and potential bugs.
* video_core: Fix DXT4 and RGB565ReinUsesLisp2020-07-131-2/+6
|
* video_core: Fix B5G6R5_UNORM render target formatReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement RGBA32_SINT render targetReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement RGBA32_SINT render targetReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement RGBA16_SINT render targetReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement RGBA8_SINT render targetReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement RG32_SINT render targetReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement RG8_SINT render target and fix RG8_UINTReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement R8_SINT render targetReinUsesLisp2020-07-131-0/+2
|
* video_core: Implement R8_SNORM render targetReinUsesLisp2020-07-131-0/+2
|
* texture: Implement R8G8UIMorph2020-04-301-0/+2
| | | | - Used by The Walking Dead: The Final Season
* video_core: Implement RGBA16_SNORMReinUsesLisp2020-03-131-0/+2
| | | | Implement RGBA16_SNORM with the current API. Nothing special here.
* texture: Implement R32IReinUsesLisp2020-02-151-0/+2
|
* Video_Core: Implement texture format E5B9G9R9_SHAREDEXP.Fernando Sahmkow2019-10-271-0/+2
| | | | | This commit implements the E5B9G9R9 Texture format into the general system and OpenGL backend.
* Surfaces: Implement R4G4B4A4U format.Fernando Sahmkow2019-10-091-0/+2
|
* Surfaces: Implement ASTC 6x6 10x10 12x12 8x6 6x5Fernando Sahmkow2019-10-091-0/+20
|
* video_core: Implement RGBX16F PixelFormatFearlessTobi2019-09-221-0/+2
|
* renderer_opengl: Use block linear swizzling for CPU framebuffersReinUsesLisp2019-08-211-114/+2
|
* video_core: Refactor to use MemoryManager interface for all memory access.bunnei2019-03-161-8/+7
| | | | | | | | | | | # 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 modeReinUsesLisp2019-03-131-2/+3
|
* video_core/morton: Remove unused parameter in MortonSwizzleReinUsesLisp2019-03-131-5/+4
|
* video_core/morton: Remove clang-format off when it's not neededReinUsesLisp2019-03-131-133/+129
|
* video_core/morton: Remove unused functionsReinUsesLisp2019-03-131-39/+0
|
* gpu: Remove PixelFormat G8R8U and G8R8S, as they do not seem to exist.bunnei2018-12-281-4/+0
| | | | - Fixes UI rendering issues in The Legend of Zelda: Breath of the Wild.
* Fixed uninitialized memory due to missing returns in canaryDavid Marcec2018-12-191-0/+1
| | | | Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used.
* Merge pull request #1735 from FernandoS27/tex-spacingbunnei2018-11-281-12/+13
|\ | | | | Texture decoder: Implemented Tile Width Spacing
| * Implemented Tile Width SpacingFernandoS272018-11-261-12/+13
| |
* | morton: Fixup compiler warningReinUsesLisp2018-11-271-1/+2
|/
* morton: Style changesReinUsesLisp2018-11-251-12/+12
|
* video_core: Move morton functions to their own fileReinUsesLisp2018-11-251-0/+353