aboutsummaryrefslogtreecommitdiff
path: root/src/video_core
AgeCommit message (Collapse)Author
2018-09-21Standarized Legacy Swizzle to look alike FastSwizzle and use a Swizzling ↵FernandoS27
Table instead
2018-09-21Remove same output bpp restriction on FastSwizzleFernandoS27
2018-09-21Improved Legacy Swizzler to be better documented and work betterFernandoS27
2018-09-21gl_stream_buffer: Fix use of bitwise OR instead of logical OR in Map()Lioncash
This was very likely intended to be a logical OR based off the conditioning and testing of inversion in one case. Even if this was intentional, this is the kind of non-obvious thing one should be clarifying with a comment.
2018-09-20RasterizerGL: Use the correct framebuffer when clearing via the ↵Subv
CLEAR_BUFFERS register. Previously we were clearing the default backbuffer framebuffer. Found thanks to a Piglit test :)
2018-09-20Improved fast swizzle and removed restrictions to itFernandoS27
2018-09-19Merge branch 'master' into tldsraven02
2018-09-19gl_rasterizer: Fix StartAddress handling with indexed draw calls.Markus Wick
We uploaded the wrong data before. So the offset on the host GPU pointer may work for the first vertices, the last ones run out bounds. Let's just offset the upload instead.
2018-09-18Merge pull request #1342 from lioncash/truncbunnei
gl_shader_decompiler: Avoid truncation warnings within LD_A and ST_A code
2018-09-18Merge pull request #1279 from FernandoS27/csetpbunnei
shader_decompiler: Implemented (Partialy) Control Codes and CSETP
2018-09-18Merge pull request #1299 from FernandoS27/texture-sanatizebunnei
shader_decompiler: Asserts for Texture Instructions
2018-09-17Implemented Internal FlagsFernandoS27
2018-09-17gl_shader_decompiler: Avoid truncation warnings within LD_A and ST_A codeLioncash
These are internally stored as u64 values, so using u32 here causes truncation warnings. Instead, we can just use u64 and preserve the bit width.
2018-09-17Merge pull request #1290 from FernandoS27/shader-headerbunnei
Implemented (Partialy) Shader Header
2018-09-17Implemented I2I.CC on the NEU control code, used by SMOFernandoS27
2018-09-17Implemented CSETPFernandoS27
2018-09-17Implemented Control CodesFernandoS27
2018-09-17Added asserts for texture misc modes to texture instructionsFernandoS27
2018-09-17Added texture misc modes to texture instructionsFernandoS27
2018-09-17Merge pull request #1311 from FernandoS27/fast-swizzlebunnei
Optimized Texture Swizzling
2018-09-17Merge pull request #1316 from lioncash/shadowbunnei
gl_shader_decompiler: Get rid of variable shadowing within LEA instructions
2018-09-17Add 1D sampler for TLDS - TexelFetch (Mario Rabbids)raven02
2018-09-17Merge pull request #1326 from FearlessTobi/port-4182bunnei
Port #4182 from Citra: "Prefix all size_t with std::"
2018-09-17Merge pull request #1329 from raven02/bgr5a1ubunnei
Implement RenderTargetFormat::BGR5A1_UNORM
2018-09-17Implement ASTC_2D_8X8 (Bayonetta 2)raven02
2018-09-15Merge pull request #1273 from Subv/ld_sizesbunnei
Shaders: Implemented multiple-word loads and stores to and from attribute memory.
2018-09-15Merge pull request #1271 from Subv/kepler_enginebunnei
GPU: Basic implementation of the Kepler Inline Memory engine (p2mf).
2018-09-16Implement RenderTargetFormat::BGR5A1_UNORM (Pokken Tournament DX)raven02
2018-09-15Shaders: Implemented multiple-word loads and stores to and from attribute ↵Subv
memory. This seems to be an optimization performed by nouveau.
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi
2018-09-14Optimized Texture SwizzlingFernandoS27
2018-09-13gl_shader_decompiler: Get rid of variable shadowing within LEA instructionsLioncash
These variables are already defined within an outer scope.
2018-09-12Use ARB_multi_bind for uniform buffers (#1287)ReinUsesLisp
* gl_rasterizer: use ARB_multi_bind for uniform buffers * address feedback
2018-09-12gl_rasterizer_cache: B5G6R5U should use GL_RGB8 as an internal format.bunnei
- Fixes a regression with Sonic Mania with ARB_texture_storage.
2018-09-12Merge pull request #1263 from FernandoS27/tex-modebunnei
shader_decompiler: Implemented (Partially) Texture Processing Modes
2018-09-12GPU: Basic implementation of the Kepler Inline Memory engine (p2mf).Subv
This engine writes data from a FIFO register into the configured address.
2018-09-12Implemented Texture Processing ModesFernandoS27
2018-09-11Merge pull request #1278 from tech4me/bg-color-fixbunnei
Port Citra #4047 & #4052: add change background color support
2018-09-11Merge pull request #1295 from bunnei/accurate-copiesbunnei
gl_rasterizer_cache: Improve accuracy of caching and copies.
2018-09-11Merge pull request #1294 from degasus/optimizationsbunnei
gl_rasterizer: Use ARB_texture_storage.
2018-09-11gl_rasterizer_cache: Always blit on recreate, regardless of format.bunnei
- Fixes several rendering issues with Super Mario Odyssey.
2018-09-11gl_shader_cache: Remove cache_width/cache_height.bunnei
- This was once an optimization, but we no longer need it with the cache reserve. - This is also inaccurate.
2018-09-11gl_rasterizer: Use ARB_texture_storage.Markus Wick
It allows us to use texture views and it reduces the overhead within the GPU driver. But it disallows us to reallocate the texture, but we don't do so anyways. In the end, it is the new way to allocate textures, so there is no need to use the old way.
2018-09-11Implemented LEA and PSETFernandoS27
2018-09-11Implemented encodings for LEA and PSETFernandoS27
2018-09-11Replace old FragmentHeader for the new HeaderFernandoS27
2018-09-11Implemented (Partialy) Shader HeaderFernandoS27
2018-09-11Fixed renderdoc input/output textures not working due to render targetsDavid Marcec
2018-09-10Merge pull request #1286 from bunnei/multi-clearbunnei
gl_rasterizer: Implement clear for non-zero render targets.
2018-09-10Merge pull request #1285 from bunnei/depth-fixbunnei
gl_rasterizer_cache: Only use depth for applicable texture formats.