| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix the threading for GL Context in Qt5. | 2014-08-25 | 4 | -10/+21 | |
| | | | | | Connect the emu_thread start/finish to a moveContext slot. | ||||
| * | Merge pull request #68 from archshift/readfile | 2014-08-22 | 4 | -11/+88 | |
| |\ | | | | | Added FS functions to Archive and Archive_RomFS | ||||
| | * | Added FS functions to Archive and Archive_RomFS | 2014-08-22 | 4 | -11/+88 | |
| | | | |||||
| * | | Merge pull request #46 from archshift/citrah | 2014-08-21 | 5 | -14/+3 | |
| |\ \ | | | | | | | Removed unused citra.h | ||||
| | * | | Removed unused citra.h | 2014-08-19 | 6 | -15/+3 | |
| | | | | |||||
| * | | | Merge pull request #58 from lioncash/clamp | 2014-08-21 | 1 | -0/+7 | |
| |\ \ \ | | | | | | | | | Common: Add a clamp function to math_utils.h | ||||
| | * | | | Common: Add a clamp function to math_utils.h | 2014-08-19 | 1 | -0/+7 | |
| | | | | | |||||
| * | | | | ARM: Remove a forgotten const in vfp. | 2014-08-20 | 2 | -2/+2 | |
| | |_|/ |/| | | |||||
| * | | | Revert "Removed redundant loop in EmuThread::run()" | 2014-08-20 | 1 | -7/+10 | |
| | | | | |||||
| * | | | Merge pull request #60 from xsacha/qt5 | 2014-08-19 | 1 | -13/+19 | |
| |\ \ \ | | | | | | | | | Use Qt5 by default for citra-qt project. | ||||
| | * | | | Add Qt5 option. Use Qt5 by default. | 2014-08-19 | 1 | -13/+19 | |
| | | | | | |||||
| * | | | | Merge pull request #61 from lioncash/kernel-stuff | 2014-08-19 | 2 | -5/+5 | |
| |\ \ \ \ | | | | | | | | | | | Core: Use std::array for managing kernel object space | ||||
| | * | | | | Core: Use std::array for managing kernel object space | 2014-08-19 | 2 | -5/+5 | |
| | |/ / / | | | | | | | | | | | | | These avoid relying on memset for clearing the arrays. | ||||
| * | | | | Merge pull request #59 from lioncash/fwddecl | 2014-08-19 | 1 | -2/+0 | |
| |\ \ \ \ | |/ / / |/| | | | Common: Get rid of an unnecessary forward declaration in symbols.h | ||||
| | * | | | Common: Get rid of an unnecessary forward declaration in symbols.h | 2014-08-18 | 1 | -2/+0 | |
| | |/ / | |||||
| * | | | Merge pull request #55 from lioncash/string | 2014-08-18 | 16 | -41/+38 | |
| |\ \ \ | | | | | | | | | Core: Alter the kernel string functions to use std::string instead of const char*. | ||||
| | * | | | Core: Alter the kernel string functions to use std::string instead of const ↵ | 2014-08-17 | 16 | -41/+38 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names. | ||||
| * | | | | SVC: Added support for svc_GetSystemTick. | 2014-08-18 | 2 | -19/+48 | |
| | |/ / |/| | | | | | | | | Changed HLE function return methods to be static inline functions. | ||||
| * | | | Merge pull request #57 from lioncash/str | 2014-08-18 | 2 | -2/+2 | |
| |\ \ \ | | | | | | | | | Common: Don't return a reference to a string when calling GetName in symbols.cpp | ||||
| | * | | | Common: Don't return a reference to a string when calling GetName in symbols.cpp | 2014-08-18 | 2 | -2/+2 | |
| | |/ / | | | | | | | | | | Returning a copy of the string is what was likely meant to be done. | ||||
| * / / | CMake Cleanup | 2014-08-18 | 1 | -23/+9 | |
| |/ / | |||||
| * | | Merge pull request #52 from lioncash/memory | 2014-08-17 | 1 | -5/+8 | |
| |\ \ | | | | | | | Common: Correctly set ptr to null if mmap fails in memory_util | ||||
| | * | | Common: Correctly set ptr to null if mmap fails in memory_util | 2014-08-17 | 1 | -5/+8 | |
| | | | | | | | | | | | | | On POSIX systems mmap will return MAP_FAILED ((void*)-1) instead of a null pointer. | ||||
| * | | | Merge pull request #49 from archshift/redundantloop | 2014-08-17 | 1 | -10/+7 | |
| |\ \ \ | | | | | | | | | Removed redundant loop in EmuThread::run() | ||||
| | * | | | Removed redundant loop in EmuThread::run() | 2014-08-16 | 1 | -10/+7 | |
| | |/ / | |||||
| * | | | Merge pull request #48 from linkmauve/master | 2014-08-17 | 1 | -24/+23 | |
| |\ \ \ | | | | | | | | | Replace insecure temporary file creation with devshm. | ||||
| | * | | | mem_arena: Replace insecure temporary file creation with devshm, importing ↵ | 2014-08-16 | 1 | -24/+23 | |
| | |/ / | | | | | | | | | | Dolphin’s code. | ||||
| * | | | Merge pull request #51 from lioncash/pragma | 2014-08-17 | 40 | -167/+61 | |
| |\ \ \ | | | | | | | | | Common: Move header guards over to pragma once. | ||||
| | * | | | Common: Move remaining C header includes over to their C++ equivalent | 2014-08-17 | 8 | -21/+20 | |
| | | | | | |||||
| | * | | | Common: Move header guards over to pragma once | 2014-08-17 | 33 | -146/+41 | |
| | |/ / | | | | | | | | | | Also replaced C headers with the C++ equivalent ones | ||||
| * | | | Merge pull request #53 from lioncash/memmap | 2014-08-17 | 1 | -4/+8 | |
| |\ \ \ | | | | | | | | | Core: Fix undefined behavior in mem_map_funcs' WriteBlock function | ||||
| | * | | | Core: Fix undefined behavior in mem_map_funcs' WriteBlock function | 2014-08-17 | 1 | -4/+8 | |
| | |/ / | |||||
| * / / | Core: Fix a formatting error in svc.cpp | 2014-08-17 | 1 | -3/+2 | |
| |/ / | | | | | | | | | entry_point would not be added to the string. Also used StringFromFormat so that the buffer is unnecessary. | ||||
| * / | Bootmanager: changed `filename` to std::string | 2014-08-14 | 5 | -10/+10 | |
| |/ | |||||
| * | Merge pull request #43 from archshift/iftree | 2014-08-13 | 1 | -13/+9 | |
| |\ | | | | | Simplified if-tree in extended_trace.cpp | ||||
| | * | Simplified if-tree in extended_trace.cpp | 2014-08-12 | 1 | -13/+9 | |
| | | | |||||
| * | | Merge pull request #42 from archshift/glexp | 2014-08-13 | 1 | -3/+2 | |
| |\ \ | | | | | | | Use glewExperimental to fix crashes with citra-glfw | ||||
| | * | | Use glewExperimental on Linux in order to fix GLFW-mode | 2014-08-12 | 1 | -3/+2 | |
| | |/ | |||||
| * | | float24: Remove private default constructor | 2014-08-13 | 1 | -2/+0 | |
| | | | | | | | | | Fixes building with clang. | ||||
| * | | Merge pull request #39 from bunnei/hid-minor-improvements | 2014-08-12 | 2 | -6/+45 | |
| |\ \ | |/ |/| | Hid minor improvements | ||||
| | * | HID: Added new function entries from 3dbrew to FunctionTable. | 2014-08-12 | 1 | -0/+5 | |
| | | | | | | | | | HID: Fix typo with DisableGyroscopeLow command. | ||||
| | * | HID: Implemented HID_User::GetIPCHandles service function. | 2014-08-07 | 1 | -5/+39 | |
| | | | |||||
| | * | SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call. | 2014-08-07 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge pull request #41 from archshift/itr | 2014-08-12 | 3 | -93/+82 | |
| |\ \ | | | | | | | Changed iterators to use auto, many of which using range-based loops | ||||
| | * | | break_points.cpp: return directly from conditionals | 2014-08-12 | 1 | -6/+2 | |
| | | | | |||||
| | * | | break_points: cleaned up, added `find_if`s | 2014-08-12 | 2 | -59/+51 | |
| | | | | |||||
| | * | | Changed iterators to use auto, some of which using range-based loops | 2014-08-11 | 2 | -42/+43 | |
| | | | | |||||
| * | | | Pica: Add basic rasterizer. | 2014-08-12 | 7 | -2/+260 | |
| | | | | |||||
| * | | | Pica: Add triangle clipper. | 2014-08-12 | 7 | -8/+230 | |
| | | | | |||||
| * | | | Pica: Add primitive assembly stage. | 2014-08-12 | 7 | -2/+95 | |
| | | | | |||||