aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* FileUtil: Add a WriteObject method for writing a single, POD-type object.Gravatar Tony Wasserka2015-07-13
|
* HW: Fix a stupid issue which led to unknown register reads/writes.Gravatar Tony Wasserka2015-07-13
|
* Merge pull request #859 from Apology11/masterGravatar Yuri Kunde Schlesner2015-07-12
|\ | | | | build with visual studio 2015
* \ Merge pull request #921 from linkmauve/fix-appletGravatar bunnei2015-07-12
|\ \ | | | | | | Fix applet includes using iwyu
* | | Kernel: Add CodeSet case to Object::IsWaitableGravatar Yuri Kunde Schlesner2015-07-12
| | |
| * | Core: Fix applet includes using iwyu.Gravatar Emmanuel Gil Peyrot2015-07-12
| | |
* | | Merge pull request #881 from gwicks/masterGravatar Tony Wasserka2015-07-12
|\ \ \ | |/ / |/| | GLFW: Switch argument parsing to use getopt.
| * | Implement new argument parsing using getopt and add the corresponding ↵Gravatar Greg Wicks2015-07-12
|/ / | | | | | | library to externals
| * don´t define snprintf on Visual Studio 2015Gravatar Apology112015-07-12
|/ | | Visual Studio 2015 defines this in stdio now
* Merge pull request #823 from Subv/applets_drawingGravatar bunnei2015-07-11
|\ | | | | Library applet support (swkbd for now)
| * Applets: Reworked how the Applet update event is handled.Gravatar Subv2015-07-11
| | | | | | | | Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
* | Merge pull request #912 from yuriks/process-loadingGravatar Yuri Kunde Schlesner2015-07-11
|\ \ | | | | | | Core: Properly configure address space during binary loading
| * | Core: Properly configure address space when loading a binaryGravatar Yuri Kunde Schlesner2015-07-11
| | | | | | | | | | | | | | | | | | The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory.
| * | Memory: Fix unmapping of pagesGravatar Yuri Kunde Schlesner2015-07-11
| | |
| * | Loader: Clean up 3dsx loader a bit, fixing a potential buffer overrunGravatar Yuri Kunde Schlesner2015-07-11
| | |
| * | Loader: Make 3dsx loader logs a bit less confusingGravatar Yuri Kunde Schlesner2015-07-11
| | |
| * | Kernel: Remove unused member from EventGravatar Yuri Kunde Schlesner2015-07-11
|/ /
| * Applets: Add infrastructure to allow custom drawing and input handling in ↵Gravatar Subv2015-07-11
| | | | | | | | Applets.
| * HLE/APT: Initial HLE support for applets.Gravatar Subv2015-07-11
|/ | | | Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.
* Merge pull request #914 from yuriks/bitfield-maskGravatar Yuri Kunde Schlesner2015-07-11
|\ | | | | Common: Fix mask generation in BitField
* \ Merge pull request #910 from linkmauve/installGravatar Tony Wasserka2015-07-12
|\ \ | | | | | | Tell CMake to install the compiled binaries on Linux.
* \ \ Merge pull request #907 from Lectem/clamp_to_borderGravatar Tony Wasserka2015-07-12
|\ \ \ | | | | | | | | Add GL_CLAMP_TO_BORDER support.
* \ \ \ Merge pull request #915 from citra-emu/travis-containerGravatar bunnei2015-07-11
|\ \ \ \ | | | | | | | | | | Travis: Remove use of sudo to enable use container-based builds
* \ \ \ \ Merge pull request #919 from yuriks/styleguideGravatar bunnei2015-07-11
|\ \ \ \ \ | | | | | | | | | | | | Update style rules with to better match current practice.
| * | | | | Update style rules with to better match current practice.Gravatar Yuri Kunde Schlesner2015-07-11
|/ / / / /
* | | | | Merge pull request #909 from yuriks/build-flagsGravatar bunnei2015-07-10
|\ \ \ \ \ | | | | | | | | | | | | CMake: Fix Debug build configuration in MSVC
* \ \ \ \ \ Merge pull request #916 from lioncash/unusedGravatar Yuri Kunde Schlesner2015-07-10
|\ \ \ \ \ \ | | | | | | | | | | | | | | Common: Remove thunk.h
| * | | | | | Common: Remove thunk.hGravatar Lioncash2015-07-10
|/ / / / / / | | | | | | | | | | | | | | | | | | This isn't used, and there's no implementations of the member functions.
* | | | | | Merge pull request #876 from linkmauve/include-cleanupsGravatar Yuri Kunde Schlesner2015-07-10
|\ \ \ \ \ \ | | | | | | | | | | | | | | Cleanup includes, mostly in common
| | | * | | | Travis: Replace `before_install` with `install`Gravatar Yuri Kunde Schlesner2015-07-10
| | | | | | |
| | | * | | | Travis: Update GLFW on Linux to 3.1.1Gravatar Yuri Kunde Schlesner2015-07-10
| | | | | | |
| | | * | | | Travis: Remove use of sudo to enable use container-based buildsGravatar Yuri Kunde Schlesner2015-07-10
| |_|/ / / / |/| | | | |
| | | | | * Common: Remove redundant masking in BitFieldGravatar Yuri Kunde Schlesner2015-07-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For the signed case, the shifts already remove the rest of the value, so ANDing by the mask is redundant.
| | | | | * Common: Fix mask generation in BitFieldGravatar Yuri Kunde Schlesner2015-07-10
| |_|_|_|/ |/| | | | | | | | | | | | | | Fixes #913
| | | * | Added GL_CLAMP_TO_BORDER supportGravatar Lectem2015-07-09
| | | | |
| | | | * Citra, CitraQt: Tell cmake to install the compiled binaries.Gravatar Emmanuel Gil Peyrot2015-07-09
| |_|_|/ |/| | | | | | | | | | | | | | | This will help packaging tremendously, as a `make DESTDIR=… install` will now put every file at their place (on Linux and related).
| | * | CMake: Fix Debug build configuration in MSVCGravatar Yuri Kunde Schlesner2015-07-09
| |/ / |/| | | | | | | | | | | | | | | | | | | | Debug was missing compiler flags, causing MSVC to default it to building with optimizations enabled (making for a not very useful binary for actual debugging...). Additionally, the variables were re-organized to remove some redundancy, the old Release build type was removed, and RelWithDebInfo was renamed to take its place instead.
* | | Merge pull request #906 from aroulin/loader-format-specifier-warningGravatar Yuri Kunde Schlesner2015-07-07
|\ \ \ | | | | | | | | Loader: Fix format specifier warning
| * | | Loader: Remove log line causing warningGravatar aroulin2015-07-08
| | |/ | |/|
* | | Merge pull request #905 from yuriks/submodule-depthGravatar bunnei2015-07-07
|\ \ \ | |/ / |/| | AppVeyor: Remove submodule checkout depth
| * | AppVeyor: Remove submodule checkout depthGravatar Yuri Kunde Schlesner2015-07-07
| | | | | | | | | | | | | | | This avoid intermittent build failures due to a commit not being reachable using a fixed depth, at the expense of longer checkout times.
* | | Merge pull request #797 from linkmauve/blended-downscalingGravatar bunnei2015-07-06
|\ \ \ | | | | | | | | Implement blended downscaling for display transfers
* \ \ \ Merge pull request #885 from Subv/ipc_headersGravatar bunnei2015-07-06
|\ \ \ \ | |_|/ / |/| | | Services/SOC: Added command headers to some of the soc commands.
* | | | Merge pull request #897 from lioncash/returnGravatar Yuri Kunde Schlesner2015-06-29
|\ \ \ \ | | | | | | | | | | vfp: Change return type of VFPInit from unsigned int to void.
| * | | | vfp: Change return type of VFPInit from unsigned int to void.Gravatar Lioncash2015-06-29
|/ / / /
* | | | Merge pull request #895 from lioncash/vfpGravatar bunnei2015-06-29
|\ \ \ \ | | | | | | | | | | vfp: Handle accesses to FPINST/FPINST2 system registers.
| * | | | vfp: Handle accesses to FPINST/FPINST2 system registersGravatar Lioncash2015-06-29
|/ / / / | | | | | | | | | | | | Also has a side-benefit of correcting access to the FPEXC register.
* | | | Merge pull request #894 from linkmauve/no-union-typesGravatar Yuri Kunde Schlesner2015-06-28
|\ \ \ \ | | | | | | | | | | Remove unused type unions breaking aliasing rules in horrible ways
| | | * | GPU: Implement blended downscaling for display transfers.Gravatar Emmanuel Gil Peyrot2015-06-28
| | | | |
| | | * | GPU: Use shifts instead of multiplications to calculate the actual size of ↵Gravatar Emmanuel Gil Peyrot2015-06-28
| |_|/ / |/| | | | | | | | | | | the output.