summaryrefslogtreecommitdiff
path: root/src/citra_qt
AgeCommit message (Collapse)Author
2017-02-22[UI] Modify recursive scanning label (#2589)Anthony
2017-02-18Qt: Move some connections from .ui file to codeYuri Kunde Schlesner
2017-02-18Qt: Reorganize connection of menu eventsYuri Kunde Schlesner
2017-02-18Qt: Re-organize setup of debugging widgetsYuri Kunde Schlesner
2017-02-18Qt: Fix action name to match conventionsYuri Kunde Schlesner
2017-02-17Qt: Make IsSingleFileDropEvent staticYuri Kunde Schlesner
2017-02-17Qt: Allow any file extension in Open dialogYuri Kunde Schlesner
2017-02-17Qt: Remove orpahned function declarationYuri Kunde Schlesner
2017-02-17Qt: Remove unnecessary std::string usageYuri Kunde Schlesner
2017-02-16added drag n drop featurenoah the goodra
2017-02-13Qt/GameList: Use suffix() to parse the file extensionYuri Kunde Schlesner
completeSuffix returns everything after the first period, which means that a file such as `foo.bar.3ds` would not get recognized.
2017-02-12Merge pull request #2550 from yuriks/pica-refactor2Yuri Kunde Schlesner
Small VideoCore cleanups
2017-02-12citra-qt: Don't attempt to scan files with unsupported extensions (#2402)Kloen Lansfiel
2017-02-09VideoCore: Split regs.h inclusionsYuri Kunde Schlesner
2017-02-09Pica/Regs: Use binary search to look up reg namesYuri Kunde Schlesner
This gets rid of the static unordered_map. Also changes the return type const char*, avoiding unnecessary allocations (the result was only used by calling .c_str() on it.)
2017-02-04VideoCore: Move Regs to its own fileYuri Kunde Schlesner
2017-02-04VideoCore: Split framebuffer regs from Regs structYuri Kunde Schlesner
2017-02-04VideoCore: Split texturing regs from Regs structYuri Kunde Schlesner
2017-02-04VideoCore: Split rasterizer regs from Regs structYuri Kunde Schlesner
2017-02-04Merge pull request #2476 from yuriks/shader-refactor3Yuri Kunde Schlesner
Oh No! More shader changes!
2017-02-04Pica/Texture: Simplify/cleanup texture tile addressingYuri Kunde Schlesner
2017-02-04VideoCore: Move LookupTexture out of debug_utils.hYuri Kunde Schlesner
2017-01-31removal of the -1 case in the configure_input switchnoah the goodra
this case is unneeded because no enumeration value can possibly correspond to it
2017-01-29Merge pull request #2368 from wwylele/camera-2Yuri Kunde Schlesner
CAM: build the service framework with a dummy implementation
2017-01-29VideoCore: Consistently use shader configuration to load attributesYuri Kunde Schlesner
2017-01-29VideoCore: Rename some types to more accurate namesYuri Kunde Schlesner
2017-01-27Merge pull request #2346 from yuriks/shader-refactor2Yuri Kunde Schlesner
More shader refactoring
2017-01-25SDL: Select audio device (#2403)Kloen Lansfiel
* Initial Commit Added Device logic to Sinks Started on UI for selecting devices Removed redundant import * Audio Core: Complete Device Switching Complete the device switching implementation by allowing the output device to be loaded, changed and saved through the configurations menu. Worked with the Sink abstraction and tuned the "Device Selection" configuration so that the Device List is automatically populated when the Sink is changed. This hopefully addresses the concerns and recommendations mentioned in the comments of the PR. * Clean original implementation. * Refactor GetSinkDetails
2017-01-25VideoCore/Shader: Move entry_point to SetupBatchYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Move per-batch ShaderEngine state into ShaderSetupYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Move ProduceDebugInfo to InterpreterEngineYuri Kunde Schlesner
2017-01-25Debugger: Always use interpreter for shader debuggingYuri Kunde Schlesner
2017-01-25VideoCore/Shader: Split shader uniform state and shader engineYuri Kunde Schlesner
Currently there's only a single dummy implementation, which will be split in a following commit.
2017-01-25VideoCore/Shader: Use only entry_point as ShaderSetup paramYuri Kunde Schlesner
This removes all implicit dependency of ShaderState on global PICA state.
2017-01-25VideoCore/Shader: Use self instead of g_state.vs in ShaderSetupYuri Kunde Schlesner
2017-01-22Removed unused and outdated external qhexeditKloen
2017-01-22citra-qt: Removed unused and unimplemented ramview files.Kloen
2017-01-11QT: Fix ui file formatKloen
2017-01-11QT: Fix some UI related warningsKloen
2017-01-11CAM: implement basic camera functions with a blank camerawwylele
2017-01-08Merge pull request #2384 from bunnei/internal-res-optionbunnei
config: Add option for specifying screen resolution scale factor.
2017-01-07Merge pull request #1951 from wwylele/motion-sensorbunnei
Emulate motion sensor in frontend
2017-01-07config: Add option for specifying screen resolution scale factor.bunnei
2017-01-05Merge pull request #2393 from Subv/synchSebastian Valle
Kernel: Mutex priority inheritance and synchronization improvements.
2017-01-04Kernel: Use different thread statuses when a thread calls ↵Subv
WaitSynchronization1 and WaitSynchronizationN with wait_all = true. This commit removes the overly general THREADSTATUS_WAIT_SYNCH and replaces it with two more granular statuses: THREADSTATUS_WAIT_SYNCH_ANY when a thread waits on objects via WaitSynchronization1 or WaitSynchronizationN with wait_all = false. THREADSTATUS_WAIT_SYNCH_ALL when a thread waits on objects via WaitSynchronizationN with wait_all = true.
2017-01-04Fix some warnings (#2399)Jonathan Hao
2016-12-29Merge pull request #2240 from wwylele/auto-regionbunnei
Config: auto-select region and language
2016-12-26Frontend: emulate motion sensorwwylele
2016-12-23core: Move emu_window and key_map into coreMerryMage
* Removes circular dependences (common should not depend on core)
2016-12-22Merge pull request #2343 from bunnei/core-cleanupbunnei
Core: Top-level consolidate & misc cleanup