summaryrefslogtreecommitdiff
path: root/src/core/frontend (follow)
Commit message (Collapse)AuthorAgeFilesLines
* frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413)Gravatar Morph2020-05-152-1/+6
|
* CMakeLists: Specify -Wextra on linux buildsGravatar Lioncash2020-04-151-1/+1
| | | | | | | | | | | 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.
* yuzu: Drop SDL2 and Qt frontend Vulkan requirementsGravatar ReinUsesLisp2020-04-071-5/+36
| | | | Create Vulkan instances and surfaces from the Vulkan backend.
* Address review and fix broken yuzu-tester buildGravatar James Rowe2020-03-251-1/+1
|
* Frontend/GPU: Refactor context managementGravatar James Rowe2020-03-243-57/+28
| | | | | | | | | | | | | | | | | | | | 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
* framebuffer_layout.h: drop the use of enum for screen dimensions.Gravatar Vitor Kiguchi2020-03-112-10/+10
| | | | +clang format
* renderer_opengl: Move Frame/FrameMailbox to OpenGL namespace.Gravatar bunnei2020-02-261-41/+0
|
* core: frontend: Refactor scope_acquire_window_context to scope_acquire_context.Gravatar bunnei2020-02-253-23/+23
|
* frontend: sdl2: emu_window: Implement separate presentation thread.Gravatar bunnei2020-02-251-3/+0
|
* renderer_opengl: Add texture mailbox support for presenter thread.Gravatar bunnei2020-02-251-0/+1
|
* core: frontend: emu_window: Add TextureMailbox class.Gravatar bunnei2020-02-251-0/+41
|
* Add 4:3 aspect ratio and address feedbackGravatar Morph2020-02-142-10/+13
|
* Address feedbackGravatar Morph2020-02-142-18/+26
|
* Use enumeration instead of magic numbersGravatar Morph2020-02-132-5/+11
|
* Add following aspect ratios: 16:9, 21:9, Stretch to WindowGravatar Morph2020-02-131-2/+15
| | | | Available as a drop down within the configure graphics tab.
* Merge pull request #3337 from ReinUsesLisp/vulkan-stagedGravatar bunnei2020-02-031-0/+7
|\ | | | | yuzu: Implement Vulkan frontend
| * yuzu: Implement Vulkan frontendGravatar ReinUsesLisp2020-01-291-0/+7
| | | | | | | | | | Adds a Qt and SDL2 frontend for Vulkan. It also finishes the missing bits on Vulkan initialization.
* | Moved analog direction logic to sdl_implGravatar CJBok2020-01-151-0/+10
|/
* general_frontend: Add documentation for parental controls and ecommerce appletsGravatar Zach Hilman2019-06-242-4/+32
|
* frontend: Add base class and default impl for ECommerce applet frontendGravatar Zach Hilman2019-06-242-0/+102
|
* web_browser: Rename OpenPage to OpenPageLocalGravatar Zach Hilman2019-06-242-7/+7
| | | 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.
* frontend: Add base class and default impl of parent controls applet frontendGravatar Zach Hilman2019-06-242-1/+52
|
* yuzu/bootmanager: Treat the resolution factor as a u32Gravatar Lioncash2019-06-032-13/+21
| | | | | | | | | 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.
* Merge pull request #1931 from DarkLordZach/mii-database-1Gravatar bunnei2019-05-302-7/+6
|\ | | | | mii: Implement MiiManager backend and several mii service commands
| * profile_select: Port Service::Account::UUID to Common::UUIDGravatar Zach Hilman2019-04-252-7/+6
| |
* | emu_window: Pass OnMinimalClientAreaChangeRequest argument by copyGravatar ReinUsesLisp2019-05-261-2/+1
| | | | | | | | | | There's no performance improvement in passing an unsigned pair by reference.
* | core/frontend/emu_window: Make GraphicsContext's destructor virtualGravatar Lioncash2019-05-042-0/+4
|/ | | | | This class is used in a polymorphic context, so destruction of the context will lead to undefined behavior if the destructor isn't virtual.
* web_browser: Make OpenPage non-constGravatar Zach Hilman2019-04-172-3/+3
|
* main: Add GMainWindow hooks for Error displayGravatar Zach Hilman2019-04-171-1/+1
|
* general_frontend: Add frontend scaffold for PhotoViewer appletGravatar Zach Hilman2019-04-172-0/+55
|
* frontend: Add frontend receiver for Error appletGravatar Zach Hilman2019-04-172-0/+71
|
* web_browser: Make OpenPage constGravatar Zach Hilman2019-04-172-3/+3
|
* Merge pull request #2017 from jroweboy/glwidgetGravatar bunnei2019-04-131-9/+30
|\ | | | | Frontend: Migrate to QOpenGLWindow and support shared contexts
| * QT Frontend: Migrate to QOpenGLWindowGravatar James Rowe2019-01-211-9/+30
| |
* | general: Use deducation guides for std::lock_guard and std::unique_lockGravatar Lioncash2019-04-011-3/+3
| | | | | | | | | | | | | | 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.
* | Merge pull request #2170 from lioncash/emu-windowGravatar bunnei2019-02-272-2/+2
|\ \ | | | | | | core/frontend/emu_window: Make ClipToTouchScreen a const member function
| * | core/frontend/emu_window: Make ClipToTouchScreen a const member functionGravatar Lioncash2019-02-272-2/+2
| | | | | | | | | | | | | | | This member function doesn't modify instance state, so it can have the const specifier applied to it.
* | | common/math_util: Move contents into the Common namespaceGravatar Lioncash2019-02-272-7/+7
| | | | | | | | | | | | | | | These types are within the common library, so they should be within the Common namespace.
* | | common/vector_math: Move Vec[x] types into the Common namespaceGravatar Lioncash2019-02-261-1/+1
|/ / | | | | | | | | These types are within the common library, so they should be using the Common namespace.
* / frontend: Refactor ScopeAcquireWindowContext out of renderer_opengl.Gravatar bunnei2019-01-232-0/+41
|/
* core/frontend/applets/web_browser: Make OpenPage() non-constGravatar Lioncash2019-01-172-3/+3
| | | | | | | | 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.
* frontend: Add frontend responder for web browserGravatar Zach Hilman2018-12-282-0/+52
|
* Merge pull request #1886 from FearlessTobi/port-4164Gravatar bunnei2018-12-232-0/+22
|\ | | | | Port citra-emu/citra#4164: "citra_qt, video_core: Screenshot functionality"
| * yuzu, video_core: Screenshot functionalityGravatar zhupengfei2018-12-182-0/+22
| | | | | | | | 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.
* | frontend: Add frontend applet for ProfileSelectGravatar Zach Hilman2018-12-032-0/+46
|/ | | Responsible for selecting a profile and firing callback upon completion.
* Merge pull request #1667 from DarkLordZach/swkbdGravatar bunnei2018-11-202-0/+83
|\ | | | | am: Implement HLE software keyboard applet
| * applet: Add operation completed callbackGravatar Zach Hilman2018-11-182-3/+7
| |
| * software_keyboard: Make GetText asynchronousGravatar Zach Hilman2018-11-182-5/+9
| | | | | | | | a
| * am: Allow applets to push multiple and different channels of dataGravatar Zach Hilman2018-11-182-8/+7
| |
| * am: Implement ILibraryAppletAccessor IsCompleted and GetResultGravatar Zach Hilman2018-11-181-0/+1
| |