| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-02-28 | gl_state: Remove clamp framebuffer color tracking | ReinUsesLisp | |
| This commit doesn't reset it for screen draws because clamping doesn't change anything there. | |||
| 2020-02-28 | gl_state: Remove multisample tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove framebuffer sRGB tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove VAO cache and tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove depth clamp tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove depth tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove primitive restart tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove logic op tracker | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove blend color tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove polygon offset tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove alpha test tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove cull mode tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove front face tracking | ReinUsesLisp | |
| 2020-02-28 | gl_state: Remove point size tracking | ReinUsesLisp | |
| 2020-02-28 | gl_rasterizer: Add oglEnablei helper | ReinUsesLisp | |
| 2020-02-28 | gl_rasterizer: Add OpenGL enable/disable helper | ReinUsesLisp | |
| 2020-02-28 | gl_rasterizer: Remove dirty flags | ReinUsesLisp | |
| 2020-02-28 | common/math_util: Support float type rectangles | ReinUsesLisp | |
| 2020-02-28 | Merge pull request #3470 from bunnei/fix-smash-srgb | bunnei | |
| renderer_opengl: Fix SRGB presentation frame tracking. | |||
| 2020-02-28 | Merge branch 'patch-1' of https://github.com/namkazt/yuzu into patch-2 | namkazy | |
| 2020-02-28 | renderer_opengl: Fix SRGB presentation frame tracking. | bunnei | |
| - Fixes SRGB in Super Smash Bros. Ultimate. | |||
| 2020-02-28 | shader_decode: Fix LD, LDG when track constant buffer | Nguyen Dac Nam | |
| 2020-02-28 | shader_decode: keep it search on all code | Nguyen Dac Nam | |
| It fixed opcode LD, LDG on Pokemon Sword that can't find the constant buffer. Not sure if it helps any on visual. | |||
| 2020-02-27 | Create an "Advanced" tab in the graphics configuration tab and add ↵ | Morph | |
| anisotropic filtering levels. | |||
| 2020-02-27 | Merge pull request #3430 from bunnei/split-presenter | bunnei | |
| Port citra-emu/citra#4940: "Split Presentation thread from Render thread" | |||
| 2020-02-27 | renderer_opengl: Reduce swap chain size to 3. | bunnei | |
| 2020-02-27 | AM/ICommonStateGetter: Stub SetLcdBacklighOffEnabled (#3454) | Morph | |
| * Stub SetLcdBacklighOffEnabled Used by Super Smash Bros. Ultimate We require backlight services to be implemented to turn on/off the backlight. * Address feedback | |||
| 2020-02-27 | shader: FMUL switch to using LUT (#3441) | Nguyen Dac Nam | |
| * shader: add FmulPostFactor LUT table * shader: FMUL apply LUT * Update src/video_core/engines/shader_bytecode.h Co-Authored-By: Mat M. <mathew1800@gmail.com> * nit: mistype * clang-format & add missing import * shader: remove post factor LUT. * shader: move post factor LUT to function and fix incorrect order. * clang-format * shader: FMUL: add static to post factor LUT * nit: typo Co-authored-by: Mat M. <mathew1800@gmail.com> | |||
| 2020-02-26 | renderer_opengl: Use more concise lock syntax. | bunnei | |
| 2020-02-26 | renderer_opengl: Move Frame/FrameMailbox to OpenGL namespace. | bunnei | |
| 2020-02-26 | vk_swapchain: Silence TOCTOU race condition | ReinUsesLisp | |
| It's possible that the window is resized from the moment we ask for its size to the moment a swapchain is created, causing validation issues. To workaround this Vulkan issue request the capabilities again just before creating the swapchain, making the race condition less likely. | |||
| 2020-02-26 | ARM_Interface: Cache the JITs instead of deleting/recreating. | Fernando Sahmkow | |
| This was a bug inherited from citra which was fixed by then at some time. This commit corrects such bug and ensures JITs are correctly recycled. | |||
| 2020-02-26 | Merge pull request #3440 from namkazt/patch-6 | bunnei | |
| shader: implement LOP3 fast replace for old function | |||
| 2020-02-25 | Merge pull request #3431 from CJBok/npad-fix | bunnei | |
| InputCommon: analog_from_button get direction implementation | |||
| 2020-02-25 | renderer_opengl: Create gl_framebuffer_data if empty. | bunnei | |
| 2020-02-25 | frontend: qt: bootmanager: Acquire a shared context in main emu thread. | bunnei | |
| 2020-02-25 | frontend: qt: bootmanager: Vulkan: Restore support for VK backend. | bunnei | |
| 2020-02-25 | frontend: qt: bootmanager: OpenGL: Implement separate presentation thread. | bunnei | |
| 2020-02-25 | frontent: qt: main: Various updates/refactoring for separate presentation ↵ | bunnei | |
| thread. | |||
| 2020-02-25 | core: frontend: Refactor scope_acquire_window_context to scope_acquire_context. | bunnei | |
| 2020-02-25 | frontend: sdl2: emu_window: Implement separate presentation thread. | bunnei | |
| 2020-02-25 | renderer_opengl: Add texture mailbox support for presenter thread. | bunnei | |
| 2020-02-25 | renderer_opengl: Add OGLRenderbuffer to resource/state management. | bunnei | |
| 2020-02-25 | core: frontend: emu_window: Add TextureMailbox class. | bunnei | |
| 2020-02-25 | core: settings: Add setting to enable vsync, which is on by default. | bunnei | |
| 2020-02-25 | Merge pull request #3461 from ReinUsesLisp/r32i-rt | Mat M | |
| video_core/surface: Add R32_SINT render target format | |||
| 2020-02-25 | Merge pull request #3460 from ReinUsesLisp/unused-format-getter | Mat M | |
| video_core/gpu: Remove unused functions | |||
| 2020-02-25 | video_core/surface: Add R32_SINT render target format | ReinUsesLisp | |
| 2020-02-25 | video_core/gpu: Remove unused functions | ReinUsesLisp | |
| 2020-02-25 | Merge pull request #3417 from ReinUsesLisp/r32i | bunnei | |
| texture: Implement R32I | |||
