aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt
Commit message (Collapse)AuthorAge
...
| | * Remove gpu_refresh_rate configuration optionGravatar Yuri Kunde Schlesner2015-05-29
| | | | | | | | | | | | | | | | | | | | | Changing it makes emulation inherently inaccurate. It also had a wrong default value (30, whereas the real system has a refresh rate of 60 Hz) which, even if changed, would continue to be used unless people manually removed it from their config files.
* | | Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
| |/ |/|
| * QT: Remove border around widgetsGravatar Sean Maas2015-05-29
| |
* | Assets: Move citra.ico from src/assets to dist.Gravatar Emmanuel Gil Peyrot2015-05-25
|/
* Qt: Silence a bogus warning printed when using the debug runtimeGravatar Yuri Kunde Schlesner2015-05-23
| | | | | | | | The Qt debug runtime prints a bogus warning on the console if you haven't called makeCurrent since the last time you called swapBuffers. This presumably means something if you're using QGLWidget the "regular" way, but in our multi-threaded use case is harmless since we never call doneCurrent in the rendering thread.
* Pica: Create 'State' structure and move state memory there.Gravatar bunnei2015-05-22
|
* MakeCurrent race condition fixGravatar tfarley2015-05-22
|
* OpenGL rendererGravatar tfarley2015-05-22
|
* INI hw/sw renderer toggleGravatar tfarley2015-05-22
|
* Use condition var to properly pause the CPU threadGravatar James Rowe2015-05-18
| | | | Adds support for threaded pausing so citra doesn't spin wait on pause
* Merge pull request #758 from yuriks/sync-loggingGravatar Yuri Kunde Schlesner2015-05-15
|\ | | | | Common: Remove async logging
* \ Merge pull request #675 from jroweboy/windows-build-fixesGravatar Yuri Kunde Schlesner2015-05-14
|\ \ | | | | | | Windows build fixes
* | | Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | | | | | | | | | | | | | | | memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
* | | Qt: Shutdown emulation session only if EmuThread exists.Gravatar bunnei2015-05-12
| | |
| | * Common: Remove async loggingGravatar Yuri Kunde Schlesner2015-05-12
| |/ |/| | | | | | | | | | | | | | | | | | | It provided a large increase in complexity of the logging system while having a negligible performance impact: the usage patterns of the ring buffer meant that each log contended with the logging thread, causing it to effectively act as a synchronous extra buffering. Also removed some broken code related to filtering of subclasses which was broken since it was introduced. (Which means no one ever used that feature anyway, since, 8 months later, no one ever complained.)
* | Memory: Add GetPhysicalPointer helper functionGravatar Yuri Kunde Schlesner2015-05-09
| |
* | Memory: Support more regions in the VAddr-PAddr translation functionsGravatar Yuri Kunde Schlesner2015-05-09
| | | | | | | | | | Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
* | Loader: Remove .bin file supportGravatar Yuri Kunde Schlesner2015-05-08
| | | | | | | | | | It is of very limited practical utility currently, and will soon be impossible to support due to more accurate memory map emulation.
* | Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
| |
* | Common: Remove many unnecessary cross-platform compatibility macrosGravatar Yuri Kunde Schlesner2015-05-06
| |
* | Merge pull request #698 from Zaneo/clip_stylus_inputGravatar Tony Wasserka2015-05-02
|\ \ | | | | | | EmuWindow: Clip mouse input coordinates to emulated screen dimensions.
| * | EmuWindow: Clip mouse input coordinates to emulated screen dimensions.Gravatar Zaneo2015-05-01
| | | | | | | | | | | | | | | | | | | | | If the mouse position for a mouse move/drag would take it outside the emulated screen dimensions, clip the coordinates to the emulated screen dimensions. Qt and GLFW will report negative coordinates for mouse positions to the left, or above citra window. Added restriction to mouse coordinates passed to touchmoved by Qt/GLFW to be greater or equal to zero.
* | | Qt: Shutdown game on emulator close event.Gravatar bunnei2015-05-01
| | |
* | | Qt: Disable "Start" unless we are paused (it otherwise has no meaning and ↵Gravatar bunnei2015-05-01
| | | | | | | | | | | | causes a crash).
* | | Qt: Fixed a bug in shutdown procedure, various cleanups.Gravatar bunnei2015-05-01
| | |
* | | Qt: Clear registers widget on shutdown.Gravatar bunnei2015-05-01
| | |
* | | Qt: Use signals for emu_thread start/stop and fix disasm widget.Gravatar bunnei2015-05-01
| | |
* | | Qt: Restructured to remove unnecessary shutdown event and various cleanups.Gravatar bunnei2015-05-01
| | |
* | | Qt: Fix loading a new game without stopping emulation.Gravatar bunnei2015-05-01
| | |
* | | Qt: Create emu thread on bootup, kill it on shutdown.Gravatar bunnei2015-05-01
| | |
* | | EmuThread: Remove unused filename attribute.Gravatar bunnei2015-05-01
| | |
* | | Qt: Move EmuThread ownership from render window to main window.Gravatar bunnei2015-05-01
|/ /
* | Merge pull request #691 from rohit-n/sign-compareGravatar bunnei2015-04-17
|\ \ | | | | | | Silence some -Wsign-compare warnings.
* | | citra-qt: Use std::abs() to get the right absolute function for s64.Gravatar Emmanuel Gil Peyrot2015-04-14
| | |
* | | Headers: Add some forgotten overrides, thanks clang!Gravatar Emmanuel Gil Peyrot2015-04-14
| | |
| * | Silence some -Wsign-compare warnings.Gravatar Rohit Nirmal2015-04-09
|/ /
* | Allow the user to set the background clear color during emulationGravatar archshift2015-04-03
| | | | | | | | The background color can be seen at the sides of the bottom screen or when the window is wider than normal.
* | Merge pull request #678 from lioncash/disasmGravatar bunnei2015-03-31
|\ \ | | | | | | callstack: Remove unnecessary disassembler instantiation
* | | disassembler: Get rid of a const_castGravatar Lioncash2015-03-30
| | |
| * | callstack: Remove unnecessary disassembler instantiationGravatar Lioncash2015-03-30
|/ / | | | | | | Decode is a static function. There's no need to allocate a disassembler instance.
| * unsetting a few more variables that arent needed outside of this functionGravatar James Rowe2015-03-26
| |
| * Updated the copy commands to run on post_build and use generator expressions ↵Gravatar James Rowe2015-03-26
| | | | | | | | to simplify the code as well
| * Changes to bring the previous commits in line with the comments on thepull ↵Gravatar James Rowe2015-03-26
| | | | | | | | request. Made the debug build a true debug build with no optimizxations and the RelWithDebInfo is what it says it is too. Changed the copying of the dlls to the build directories to happen at configuration time instead of build time
| * More changes to the CMakeFiles for better MSVC compatibility. Added in the ↵Gravatar James Rowe2015-03-26
|/ | | | RelWithDebInfo target and setup copying the Qt 5 Dlls to the output directories.
* HID: Complete refactor of pad/touch input to fix threading issues.Gravatar bunnei2015-03-10
|
* Qt: Implemented EmuWindow touchpad support.Gravatar bunnei2015-03-10
|
* Merge pull request #643 from Subv/dem_feelsGravatar bunnei2015-03-09
|\ | | | | GPU: Implemented more depth buffer formats.
| * GPU: Added the stencil test structure to the Pica Regs struct.Gravatar Subv2015-03-09
| |
| * Frontend/Qt: Allow the framebuffer widget to inspect the depth bufferGravatar Subv2015-03-09
| |
* | Merge pull request #634 from linkmauve/logging-performancesGravatar bunnei2015-03-09
|\ \ | | | | | | Apply the logging filter before sending the message to the queue