aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Add Qt5 option. Use Qt5 by default.Gravatar Sacha2014-08-19
|
* Merge pull request #55 from lioncash/stringGravatar bunnei2014-08-18
|\ | | | | Core: Alter the kernel string functions to use std::string instead of const char*.
* | SVC: Added support for svc_GetSystemTick.Gravatar bunnei2014-08-18
| | | | | | | | Changed HLE function return methods to be static inline functions.
* | Merge pull request #57 from lioncash/strGravatar bunnei2014-08-18
|\ \ | | | | | | 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.cppGravatar Lioncash2014-08-18
| | | | | | | | | | | | Returning a copy of the string is what was likely meant to be done.
* | | CMake CleanupGravatar Sacha2014-08-18
|/ /
| * Core: Alter the kernel string functions to use std::string instead of const ↵Gravatar Lioncash2014-08-17
|/ | | | | | char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
* Merge pull request #52 from lioncash/memoryGravatar bunnei2014-08-17
|\ | | | | Common: Correctly set ptr to null if mmap fails in memory_util
* \ Merge pull request #49 from archshift/redundantloopGravatar bunnei2014-08-17
|\ \ | | | | | | Removed redundant loop in EmuThread::run()
* \ \ Merge pull request #48 from linkmauve/masterGravatar bunnei2014-08-17
|\ \ \ | | | | | | | | Replace insecure temporary file creation with devshm.
* \ \ \ Merge pull request #51 from lioncash/pragmaGravatar bunnei2014-08-17
|\ \ \ \ | | | | | | | | | | Common: Move header guards over to pragma once.
* \ \ \ \ Merge pull request #53 from lioncash/memmapGravatar bunnei2014-08-17
|\ \ \ \ \ | | | | | | | | | | | | Core: Fix undefined behavior in mem_map_funcs' WriteBlock function
* | | | | | Core: Fix a formatting error in svc.cppGravatar Lioncash2014-08-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | entry_point would not be added to the string. Also used StringFromFormat so that the buffer is unnecessary.
| * | | | | Core: Fix undefined behavior in mem_map_funcs' WriteBlock functionGravatar Lioncash2014-08-17
|/ / / / /
| | | | * Common: Correctly set ptr to null if mmap fails in memory_utilGravatar Lioncash2014-08-17
| |_|_|/ |/| | | | | | | | | | | On POSIX systems mmap will return MAP_FAILED ((void*)-1) instead of a null pointer.
| * | | Common: Move remaining C header includes over to their C++ equivalentGravatar Lioncash2014-08-17
| | | |
| * | | Common: Move header guards over to pragma onceGravatar Lioncash2014-08-17
|/ / / | | | | | | | | | Also replaced C headers with the C++ equivalent ones
| | * Removed redundant loop in EmuThread::run()Gravatar archshift2014-08-16
| |/ |/|
| * mem_arena: Replace insecure temporary file creation with devshm, importing ↵Gravatar Emmanuel Gil Peyrot2014-08-16
|/ | | | Dolphin’s code.
* Bootmanager: changed `filename` to std::stringGravatar archshift2014-08-14
|
* Merge pull request #43 from archshift/iftreeGravatar bunnei2014-08-13
|\ | | | | Simplified if-tree in extended_trace.cpp
* \ Merge pull request #42 from archshift/glexpGravatar bunnei2014-08-13
|\ \ | | | | | | Use glewExperimental to fix crashes with citra-glfw
* | | float24: Remove private default constructorGravatar archshift2014-08-13
| | | | | | | | | | | | Fixes building with clang.
* | | Merge pull request #39 from bunnei/hid-minor-improvementsGravatar bunnei2014-08-12
|\ \ \ | | | | | | | | Hid minor improvements
| * | | HID: Added new function entries from 3dbrew to FunctionTable.Gravatar bunnei2014-08-12
| | | | | | | | | | | | | | | | HID: Fix typo with DisableGyroscopeLow command.
| | | * Simplified if-tree in extended_trace.cppGravatar archshift2014-08-12
| |_|/ |/| |
| | * Use glewExperimental on Linux in order to fix GLFW-modeGravatar archshift2014-08-12
| |/ |/|
* | Merge pull request #41 from archshift/itrGravatar bunnei2014-08-12
|\ \ | | | | | | Changed iterators to use auto, many of which using range-based loops
* | | Pica: Add basic rasterizer.Gravatar Tony Wasserka2014-08-12
| | |
* | | Pica: Add triangle clipper.Gravatar Tony Wasserka2014-08-12
| | |
* | | Pica: Add primitive assembly stage.Gravatar Tony Wasserka2014-08-12
| | |
* | | Pica: Add vertex shader implementation.Gravatar Tony Wasserka2014-08-12
| | |
* | | Pica: Implement vertex loading.Gravatar Tony Wasserka2014-08-12
| | |
* | | Pica: Add register definition for vertex loading and rendering.Gravatar Tony Wasserka2014-08-12
| | |
* | | Pica: Add command processor.Gravatar Tony Wasserka2014-08-12
| | |
* | | Pica: Add float24 structure.Gravatar Tony Wasserka2014-08-12
| | | | | | | | | | | | | | | 24-bit floating points are used internally for calculations on the GPU, however the current code will still emulate that with 32-bit floating points. In the future we might want to accurately perform the calculations with correct bitness in the future, but for now we just wrap the calculations around this class.
* | | Video core: Add utility class for vector operations.Gravatar Tony Wasserka2014-08-12
| | | | | | | | | | | | | | | I wrote most of this for ppsspp, so I hold full copyright over it. In addition to the original release in ppsspp, this provides functionality to easily extend e.g. two-dimensional vectors to three-dimensional vectors.
* | | Pica/GPU: Change hardware registers to use physical addresses rather than ↵Gravatar Tony Wasserka2014-08-12
| | | | | | | | | | | | | | | | | | | | | virtual ones. This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible. This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though.
* | | GSP: Fix a major regression introduced in ffda035c, due to which no display ↵Gravatar Tony Wasserka2014-08-12
| | | | | | | | | | | | transfers were triggered at all anymore.
| * | break_points.cpp: return directly from conditionalsGravatar archshift2014-08-12
| | |
| * | break_points: cleaned up, added `find_if`sGravatar archshift2014-08-12
| | |
| * | Changed iterators to use auto, some of which using range-based loopsGravatar archshift2014-08-11
| | |
* | | Remove the fancy RegisterSet class introduced in 4c2bff61e.Gravatar Tony Wasserka2014-08-12
|/ / | | | | | | | | While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use.
* | Use pthread_set_name_np() on OpenBSD.Gravatar Anthony J. Bentley2014-08-07
| |
| * HID: Implemented HID_User::GetIPCHandles service function.Gravatar bunnei2014-08-07
| |
| * SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call.Gravatar bunnei2014-08-07
|/
* GPU: Updated g_last_ticks variable to be more descriptive (represents CPU ↵Gravatar bunnei2014-08-06
| | | | tick count of last vertical line).
* GPU: Updated horizontal sync line counter to use framebuffer height.Gravatar bunnei2014-08-06
|
* Thread: Added more descriptive comment to WaitCurrentThread.Gravatar bunnei2014-08-06
|
* GSP: Cleaned up command buffer decoding.Gravatar bunnei2014-08-06
| | | | | | | | GSP: Cleaned up code and added additional comments. GSP: Removed unnecessary TODO comment. GSP: Changed u32 iterators in TriggerCmdReqQueue to unsigned.