| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-15 | frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413) | Morph | |
| 2020-04-15 | CMakeLists: Specify -Wextra on linux builds | Lioncash | |
| Allows reporting more cases where logic errors may exist, such as implicit fallthrough cases, etc. We currently ignore unused parameters, since we currently have many cases where this is intentional (virtual interfaces). While we're at it, we can also tidy up any existing code that causes warnings. This also uncovered a few bugs as well. | |||
| 2020-04-07 | yuzu: Drop SDL2 and Qt frontend Vulkan requirements | ReinUsesLisp | |
| Create Vulkan instances and surfaces from the Vulkan backend. | |||
| 2020-03-25 | Address review and fix broken yuzu-tester build | James Rowe | |
| 2020-03-24 | Frontend/GPU: Refactor context management | James Rowe | |
| Changes the GraphicsContext to be managed by the GPU core. This eliminates the need for the frontends to fool around with tricky MakeCurrent/DoneCurrent calls that are dependent on the settings (such as async gpu option). This also refactors out the need to use QWidget::fromWindowContainer as that caused issues with focus and input handling. Now we use a regular QWidget and just access the native windowHandle() directly. Another change is removing the debug tool setting in FrameMailbox. Instead of trying to block the frontend until a new frame is ready, the core will now take over presentation and draw directly to the window if the renderer detects that its hooked by NSight or RenderDoc Lastly, since it was in the way, I removed ScopeAcquireWindowContext and replaced it with a simple subclass in GraphicsContext that achieves the same result | |||
| 2020-03-11 | framebuffer_layout.h: drop the use of enum for screen dimensions. | Vitor Kiguchi | |
| +clang format | |||
| 2020-02-26 | renderer_opengl: Move Frame/FrameMailbox to OpenGL namespace. | bunnei | |
| 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 | core: frontend: emu_window: Add TextureMailbox class. | bunnei | |
| 2020-02-14 | Add 4:3 aspect ratio and address feedback | Morph | |
| 2020-02-14 | Address feedback | Morph | |
| 2020-02-13 | Use enumeration instead of magic numbers | Morph | |
| 2020-02-13 | Add following aspect ratios: 16:9, 21:9, Stretch to Window | Morph | |
| Available as a drop down within the configure graphics tab. | |||
| 2020-02-03 | Merge pull request #3337 from ReinUsesLisp/vulkan-staged | bunnei | |
| yuzu: Implement Vulkan frontend | |||
| 2020-01-29 | yuzu: Implement Vulkan frontend | ReinUsesLisp | |
| Adds a Qt and SDL2 frontend for Vulkan. It also finishes the missing bits on Vulkan initialization. | |||
| 2020-01-15 | Moved analog direction logic to sdl_impl | CJBok | |
| 2019-06-24 | general_frontend: Add documentation for parental controls and ecommerce applets | Zach Hilman | |
| 2019-06-24 | frontend: Add base class and default impl for ECommerce applet frontend | Zach Hilman | |
| 2019-06-24 | web_browser: Rename OpenPage to OpenPageLocal | Zach Hilman | |
| This is more representative of what actually occurs, as web does support remote URLs which wouldn't need a romfs callback. This paves for easy future support of this with a call like 'OpenPageRemote' or similar. | |||
| 2019-06-24 | frontend: Add base class and default impl of parent controls applet frontend | Zach Hilman | |
| 2019-06-03 | yuzu/bootmanager: Treat the resolution factor as a u32 | Lioncash | |
| Treating it as a u16 can result in a sign-conversion warning when performing arithmetic with it, as u16 promotes to an int when aritmetic is performed on it, not unsigned int. This also makes the interface more uniform, as the layout interface now operates on u32 across the board. | |||
| 2019-05-30 | Merge pull request #1931 from DarkLordZach/mii-database-1 | bunnei | |
| mii: Implement MiiManager backend and several mii service commands | |||
| 2019-05-26 | emu_window: Pass OnMinimalClientAreaChangeRequest argument by copy | ReinUsesLisp | |
| There's no performance improvement in passing an unsigned pair by reference. | |||
| 2019-05-04 | core/frontend/emu_window: Make GraphicsContext's destructor virtual | Lioncash | |
| This class is used in a polymorphic context, so destruction of the context will lead to undefined behavior if the destructor isn't virtual. | |||
| 2019-04-25 | profile_select: Port Service::Account::UUID to Common::UUID | Zach Hilman | |
| 2019-04-17 | web_browser: Make OpenPage non-const | Zach Hilman | |
| 2019-04-17 | main: Add GMainWindow hooks for Error display | Zach Hilman | |
| 2019-04-17 | general_frontend: Add frontend scaffold for PhotoViewer applet | Zach Hilman | |
| 2019-04-17 | frontend: Add frontend receiver for Error applet | Zach Hilman | |
| 2019-04-17 | web_browser: Make OpenPage const | Zach Hilman | |
| 2019-04-13 | Merge pull request #2017 from jroweboy/glwidget | bunnei | |
| Frontend: Migrate to QOpenGLWindow and support shared contexts | |||
| 2019-04-01 | general: Use deducation guides for std::lock_guard and std::unique_lock | Lioncash | |
| Since C++17, the introduction of deduction guides for locking facilities means that we no longer need to hardcode the mutex type into the locks themselves, making it easier to switch mutex types, should it ever be necessary in the future. | |||
| 2019-02-27 | Merge pull request #2170 from lioncash/emu-window | bunnei | |
| core/frontend/emu_window: Make ClipToTouchScreen a const member function | |||
| 2019-02-27 | core/frontend/emu_window: Make ClipToTouchScreen a const member function | Lioncash | |
| This member function doesn't modify instance state, so it can have the const specifier applied to it. | |||
| 2019-02-27 | common/math_util: Move contents into the Common namespace | Lioncash | |
| These types are within the common library, so they should be within the Common namespace. | |||
| 2019-02-26 | common/vector_math: Move Vec[x] types into the Common namespace | Lioncash | |
| These types are within the common library, so they should be using the Common namespace. | |||
| 2019-01-23 | frontend: Refactor ScopeAcquireWindowContext out of renderer_opengl. | bunnei | |
| 2019-01-21 | QT Frontend: Migrate to QOpenGLWindow | James Rowe | |
| 2019-01-17 | core/frontend/applets/web_browser: Make OpenPage() non-const | Lioncash | |
| This is a function that definitely doesn't always have a non-modifying behavior across all implementations, so this should be made non-const. This gets rid of the need to mark data members as mutable to work around the fact mutating data members needs to occur. | |||
| 2018-12-28 | frontend: Add frontend responder for web browser | Zach Hilman | |
| 2018-12-23 | Merge pull request #1886 from FearlessTobi/port-4164 | bunnei | |
| Port citra-emu/citra#4164: "citra_qt, video_core: Screenshot functionality" | |||
| 2018-12-18 | yuzu, video_core: Screenshot functionality | zhupengfei | |
| Allows capturing screenshot at the current internal resolution (native for software renderer), but a setting is available to capture it in other resolutions. The screenshot is saved to a single PNG in the current layout. | |||
| 2018-12-03 | frontend: Add frontend applet for ProfileSelect | Zach Hilman | |
| Responsible for selecting a profile and firing callback upon completion. | |||
| 2018-11-20 | Merge pull request #1667 from DarkLordZach/swkbd | bunnei | |
| am: Implement HLE software keyboard applet | |||
| 2018-11-18 | settings: Add Native type for mouse buttons | Zach Hilman | |
| 2018-11-18 | applet: Add operation completed callback | Zach Hilman | |
| 2018-11-18 | software_keyboard: Make GetText asynchronous | Zach Hilman | |
| a | |||
| 2018-11-18 | am: Allow applets to push multiple and different channels of data | Zach Hilman | |
