Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-22 | [UI] Modify recursive scanning label (#2589) | Anthony | |
2017-02-18 | Qt: Move some connections from .ui file to code | Yuri Kunde Schlesner | |
2017-02-18 | Qt: Reorganize connection of menu events | Yuri Kunde Schlesner | |
2017-02-18 | Qt: Re-organize setup of debugging widgets | Yuri Kunde Schlesner | |
2017-02-18 | Qt: Fix action name to match conventions | Yuri Kunde Schlesner | |
2017-02-17 | Qt: Make IsSingleFileDropEvent static | Yuri Kunde Schlesner | |
2017-02-17 | Qt: Allow any file extension in Open dialog | Yuri Kunde Schlesner | |
2017-02-17 | Qt: Remove orpahned function declaration | Yuri Kunde Schlesner | |
2017-02-17 | Qt: Remove unnecessary std::string usage | Yuri Kunde Schlesner | |
2017-02-16 | added drag n drop feature | noah the goodra | |
2017-02-13 | Qt/GameList: Use suffix() to parse the file extension | Yuri 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-12 | Merge pull request #2550 from yuriks/pica-refactor2 | Yuri Kunde Schlesner | |
Small VideoCore cleanups | |||
2017-02-12 | citra-qt: Don't attempt to scan files with unsupported extensions (#2402) | Kloen Lansfiel | |
2017-02-09 | VideoCore: Split regs.h inclusions | Yuri Kunde Schlesner | |
2017-02-09 | Pica/Regs: Use binary search to look up reg names | Yuri 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-04 | VideoCore: Move Regs to its own file | Yuri Kunde Schlesner | |
2017-02-04 | VideoCore: Split framebuffer regs from Regs struct | Yuri Kunde Schlesner | |
2017-02-04 | VideoCore: Split texturing regs from Regs struct | Yuri Kunde Schlesner | |
2017-02-04 | VideoCore: Split rasterizer regs from Regs struct | Yuri Kunde Schlesner | |
2017-02-04 | Merge pull request #2476 from yuriks/shader-refactor3 | Yuri Kunde Schlesner | |
Oh No! More shader changes! | |||
2017-02-04 | Pica/Texture: Simplify/cleanup texture tile addressing | Yuri Kunde Schlesner | |
2017-02-04 | VideoCore: Move LookupTexture out of debug_utils.h | Yuri Kunde Schlesner | |
2017-01-31 | removal of the -1 case in the configure_input switch | noah the goodra | |
this case is unneeded because no enumeration value can possibly correspond to it | |||
2017-01-29 | Merge pull request #2368 from wwylele/camera-2 | Yuri Kunde Schlesner | |
CAM: build the service framework with a dummy implementation | |||
2017-01-29 | VideoCore: Consistently use shader configuration to load attributes | Yuri Kunde Schlesner | |
2017-01-29 | VideoCore: Rename some types to more accurate names | Yuri Kunde Schlesner | |
2017-01-27 | Merge pull request #2346 from yuriks/shader-refactor2 | Yuri Kunde Schlesner | |
More shader refactoring | |||
2017-01-25 | SDL: 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-25 | VideoCore/Shader: Move entry_point to SetupBatch | Yuri Kunde Schlesner | |
2017-01-25 | VideoCore/Shader: Move per-batch ShaderEngine state into ShaderSetup | Yuri Kunde Schlesner | |
2017-01-25 | VideoCore/Shader: Move ProduceDebugInfo to InterpreterEngine | Yuri Kunde Schlesner | |
2017-01-25 | Debugger: Always use interpreter for shader debugging | Yuri Kunde Schlesner | |
2017-01-25 | VideoCore/Shader: Split shader uniform state and shader engine | Yuri Kunde Schlesner | |
Currently there's only a single dummy implementation, which will be split in a following commit. | |||
2017-01-25 | VideoCore/Shader: Use only entry_point as ShaderSetup param | Yuri Kunde Schlesner | |
This removes all implicit dependency of ShaderState on global PICA state. | |||
2017-01-25 | VideoCore/Shader: Use self instead of g_state.vs in ShaderSetup | Yuri Kunde Schlesner | |
2017-01-22 | Removed unused and outdated external qhexedit | Kloen | |
2017-01-22 | citra-qt: Removed unused and unimplemented ramview files. | Kloen | |
2017-01-11 | QT: Fix ui file format | Kloen | |
2017-01-11 | QT: Fix some UI related warnings | Kloen | |
2017-01-11 | CAM: implement basic camera functions with a blank camera | wwylele | |
2017-01-08 | Merge pull request #2384 from bunnei/internal-res-option | bunnei | |
config: Add option for specifying screen resolution scale factor. | |||
2017-01-07 | Merge pull request #1951 from wwylele/motion-sensor | bunnei | |
Emulate motion sensor in frontend | |||
2017-01-07 | config: Add option for specifying screen resolution scale factor. | bunnei | |
2017-01-05 | Merge pull request #2393 from Subv/synch | Sebastian Valle | |
Kernel: Mutex priority inheritance and synchronization improvements. | |||
2017-01-04 | Kernel: 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-04 | Fix some warnings (#2399) | Jonathan Hao | |
2016-12-29 | Merge pull request #2240 from wwylele/auto-region | bunnei | |
Config: auto-select region and language | |||
2016-12-26 | Frontend: emulate motion sensor | wwylele | |
2016-12-23 | core: Move emu_window and key_map into core | MerryMage | |
* Removes circular dependences (common should not depend on core) | |||
2016-12-22 | Merge pull request #2343 from bunnei/core-cleanup | bunnei | |
Core: Top-level consolidate & misc cleanup |