aboutsummaryrefslogtreecommitdiff
path: root/src/citra
AgeCommit message (Collapse)Author
2014-10-22Use config files to store whether SDMC is enabled or notarchshift
Before, it used to use whether the directory actually existed. As a result, .citra-emu/sdmc was never auto-created (something quite confusing to me until I read through the logs).
2014-10-19emu_window_glfw.cpp: Fixed graceful quittingarchshift
In PR #143, the name of the function IsOpen was originally ShouldClose, but was changed. The function's caller was changed to reflect this, but the return value wasn't.
2014-10-17Implemented graceful closing of the GLFW window, along with emulation.archshift
2014-10-12OpenGL renderer: Request a forward compatible context in citra-qtYuri Kunde Schlesner
This should fix context creation on OS X. Also requests a core context on all platforms in Citra-GLFW, for consistency.
2014-10-07Added configuration file system.archshift
Uses QSettings on citra-qt, and inih on citra-cli.
2014-09-12Added support for multiple input device types for KeyMap and connected Qt.Kevin Hartman
2014-09-11Initial HID PAD work, with GLFW only.Kevin Hartman
2014-09-01Remove hand-crafted Visual Studio solution.Yuri Kunde Schlesner
2014-09-01CMake cleanupYuri Kunde Schlesner
Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
2014-09-01Replace GLEW with a glLoadGen loader.Yuri Kunde Schlesner
This should fix the GL loading errors that occur in some drivers due to the use of deprecated functions by GLEW. Side benefits are more accurate auto-completion (deprecated function and symbols don't exist) and faster pointer loading (less entrypoints to load). In addition it removes an external library depency, simplifying the build system a bit and eliminating one set of binary libraries for Windows.
2014-08-30Core: Refactor core to use only one function for execution.bunnei
Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable.
2014-08-25Pica: Add support for dumping textures.Tony Wasserka
2014-08-19Removed unused citra.harchshift
2014-06-24Loader: Implemented AppLoader interface for abstracting application loading.bunnei
- Various cleanups/refactorings to Loader, ELF, and NCCH modules. - Added AppLoader interface to ELF and NCCH. - Updated Qt/GLFW frontends to check AppLoader ResultStatus. NCCH: Removed extra qualification typos. Loader: Removed unnecessary #include's. NCCH: Improved readability of memcmp statements. NCCH: Added missing space. Elf: Removed unnecessary usage of unique_ptr. Loader: Removed unnecessary usage of unique_ptr.
2014-06-16Loader: Moved elf and loader modules to a "loader" subdirectory.bunnei
2014-06-12Preprocessor: #if's out OSX-specific GL changes on other platformsarchshift
2014-05-22Merge branch 'master' of https://github.com/bunnei/citrabunnei
2014-05-19Merge pull request #2 from archshift/issue-7-fixbunnei
Fixes issues with building Citra on OSX
2014-05-19CMakeLists: rename HEADS, improved commentsarchshift
Changes for clarity of comments, removed redundant compiler flags.
2014-05-18Merge pull request #13 from archshift/masterbunnei
Use runtime arguments to specify boot filename.
2014-05-17updated how we call ARM core to make things much fasterbunnei
2014-05-04Fixed indentsarchshift
2014-05-01Check arg count before attempting to access it.archshift
2014-05-01Use runtime arguments to specify boot filename.archshift
2014-04-30Fixed indentsarchshift
2014-04-30Reverse debugging changesarchshift
2014-04-30Linux supportarchshift
2014-04-30TGA dumps work, courtesy of @bunneiarchshift
2014-04-30OpenGL 3+ on OSX with GLFWarchshift
2014-04-30A bit of Cmake lovearchshift
2014-04-29Some more experimentationarchshift
2014-04-28Merge commit upstream/master into issue-7-fixarchshift
2014-04-28IT'S ALIVE!archshift
2014-04-25Need to add Xcursor to linker?Thomas Edvalson
2014-04-25Fixed CMake's import of GLFW.Thomas Edvalson
2014-04-22fixes to build on linuxbunnei
2014-04-10removed unused macros from citra.hbunnei
2014-04-09fixed a bunch of errors in CMakeListsbunnei
2014-04-09updated CMakeListsbunnei
2014-04-08- removed deprecated version.hbunnei
- cleaned up window title - cleaned up emu_window_glfw/emu_window
2014-04-08fixed license headers in citra projectbunnei
2014-04-08fixed project includes to use new directory structurebunnei
2014-04-08got rid of 'src' folders in each sub-projectbunnei
2014-04-07Merge branch 'hardware-interface'bunnei
Conflicts: src/core/src/core.h
2014-04-07removed unused comments, changed main processing loop to be infinitebunnei
2014-04-06set window size to correspond to framebuffer sizesbunnei
2014-04-06added project linker referencebunnei
2014-04-04Support vs express edition without having to get platform sdkMathieu Vaillancourt
2014-03-31added simple processing loop and ELF loading to main()... hackish, will ↵bunnei
cleanup later
2013-10-03moved some core functions over to system moduleShizZy