summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* yuzu_cmd: Split emu_window OpenGL implementation into its own fileReinUsesLisp2019-05-251-156/+15
|
* yuzu_cmd: Use OpenGL compat when asked in the settingsReinUsesLisp2019-05-171-1/+5
|
* Merge pull request #2017 from jroweboy/glwidgetbunnei2019-04-141-1/+36
|\ | | | | Frontend: Migrate to QOpenGLWindow and support shared contexts
| * SDL Frontend: Add shared context supportJames Rowe2019-01-221-1/+36
| |
* | Input: Remove global variables from SDL InputJames Rowe2019-03-021-8/+5
| | | | | | | | | | | | | | | | | | Changes the interface as well to remove any unique methods that frontends needed to call such as StartJoystickEventHandler by conditionally starting the polling thread only if the frontend hasn't started it already. Additionally, moves all global state into a single SDLState class in order to guarantee that the destructors are called in the proper order
* | citra_qt: Log settings on launchzhupengfei2019-01-221-0/+1
|/
* gl_rasterizer: Remove extension booleansReinUsesLisp2018-11-291-0/+2
|
* Removed pre 4.3 ARB extensionsFernandoS272018-11-211-14/+0
|
* Update OpenGL's backend version from 3.3 to 4.3FernandoS272018-11-211-1/+1
|
* implemented touch in Qt and SDLNeatNit2018-10-091-2/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | change TouchToPixelPos to return std::pair<int, int> static_cast (SDL) various minor style and code improvements style - PascalCase for function names made touch events private const pointer arg in touch events make TouchToPixelPos a const member function did I do this right? braces on barely-multiline if remove question comment (confirmed in Discord) fixed consts remove unused parameter from TouchEndEvent DRY - High-DPI scaled touch put in separate function also fixes a bug where if you start touching (with either mouse or touchscreen) and drag the mouse to the LEFT of the emulator window, the touch point jumps to the RIGHT side of the touchscreen; draggin to above the window would make it jump to the bottom. implicit conversion from QPoint to QPointF, apparently I have no idea what const even means but I'll put it here anyway remove unused or used-once variables make touch scaling functions const, and put their implementations together removed unused FingerID parameters QTouchEvent forward declaration; add comment to TouchBegin that was lost in an edit better DRY in SDL To do -> TODO(NeatNit) remove unused include
* yuzu/yuzu_cmd: Add checks for required extension ARB_copy_image.bunnei2018-10-061-0/+2
|
* Use ARB_multi_bind for uniform buffers (#1287)ReinUsesLisp2018-09-131-0/+2
| | | | | | * gl_rasterizer: use ARB_multi_bind for uniform buffers * address feedback
* gl_rasterizer: Use ARB_texture_storage.Markus Wick2018-09-111-0/+2
| | | | | | | | 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.
* Port #4141 from citra: Joystick hotplug support (#1275)Tobias2018-09-111-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Joystick hotplug support (#4141) * use SDL_PollEvent instead of SDL_JoystickUpdate Register hot plugged controller by GUID if they were configured in a previous session * Move SDL_PollEvent into its own thread * Don't store SDLJoystick pointer in Input Device; Get pointer on each GetStatus call * Fix that joystick_list gets cleared after SDL_Quit * Add VirtualJoystick for InputDevices thats never nullptr * fixup! Add VirtualJoystick for InputDevices thats never nullptr * fixup! fixup! Add VirtualJoystick for InputDevices thats never nullptr * Remove SDL_GameController, make SDL_Joystick* unique_ptr * fixup! Remove SDL_GameController, make SDL_Joystick* unique_ptr * Adressed feedback; fixed handling of same guid reconnects * fixup! Adressed feedback; fixed handling of same guid reconnects * merge the two joystick_lists into one * make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! fixup! make SDLJoystick a member of VirtualJoystick * SDLJoystick: Addressed review comments * Address one missed review comment
* gl_rasterizer: Use baseInstance instead of moving the buffer points.bunnei2018-09-081-0/+2
| | | | | | | This hopefully helps our cache not to redundant upload the vertex buffer. # Conflicts: # src/video_core/renderer_opengl/gl_rasterizer.cpp
* For SDL FrontendCaptV0rt3x2018-09-071-2/+2
|
* frontend: Set swap interval to 0fearlessTobi2018-09-061-0/+1
|
* Added check to see if ARB_texture_mirror_clamp_to_edge is supportedDavid Marcec2018-08-191-0/+2
|
* Port #3665 from CitrafearlessTobi2018-07-261-0/+2
|
* Frontend: Check for more required OpenGL extensions during startup.Subv2018-07-221-2/+12
|
* Port #3335 and #3373 from Citra: "Small SDL fixes" and "Print the actual error preventing SDL from working" (#637)Tobias2018-07-121-3/+3
| | | | | | * Port #3335 and #3373 from Citra * Fixup: Use the new logging placeholders
* Rename logging macro back to LOG_*James Rowe2018-07-031-10/+10
|
* sdl: add check for GL extension supportBreadFish642018-06-041-0/+23
|
* string_util: Remove StringFromFormat() and related functionsLioncash2018-04-301-2/+3
| | | | Given we utilize fmt, we don't need to provide our own functions for formatting anymore
* frontends: Move logging macros over to new fmt-capable onesLioncash2018-04-271-4/+4
|
* SDL2: Implement fullscreen. (Original PR: citra-emu/citra#3607)adityaruplaha2018-04-211-1/+26
|
* Remove settings issues in sdl and fix a few files that broke in mingwJames Rowe2018-01-131-2/+0
|
* Get yuzu sdl to start compilingJames Rowe2018-01-131-4/+2
|
* Massive removal of unused modulesJames Rowe2018-01-131-0/+177