summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* CMakeLists: Move compilation flags into the src directoryGravatar Lioncash2019-03-171-0/+69
* Merge pull request #2251 from bunnei/skip-zero-flushGravatar bunnei2019-03-171-0/+6
|\
| * gl_rasterizer: Skip zero addr/sized regions on flush/invalidate.Gravatar bunnei2019-03-161-0/+6
* | Merge pull request #2249 from lioncash/ipcGravatar bunnei2019-03-161-0/+30
|\ \
| * | ipc_helpers: Allow pushing and popping floating-point valuesGravatar Lioncash2019-03-161-0/+30
* | | Merge pull request #2245 from lioncash/unused-defGravatar bunnei2019-03-161-6/+0
|\ \ \ | |_|/ |/| |
| * | kernel/thread: Actually remove the definition of ExitCurrentThread()Gravatar Lioncash2019-03-161-6/+0
| |/
* | Merge pull request #2244 from bunnei/gpu-mem-refactorGravatar bunnei2019-03-1620-189/+196
|\ \
| * | video_core: Refactor to use MemoryManager interface for all memory access.Gravatar bunnei2019-03-1620-189/+196
* | | Merge pull request #2243 from bunnei/mem-simplify-cacheGravatar bunnei2019-03-163-68/+22
|\ \ \
| * | | memory: Simplify rasterizer cache operations.Gravatar bunnei2019-03-163-68/+22
| |/ /
* | | Merge pull request #2129 from FernandoS27/cntpctGravatar bunnei2019-03-166-2/+69
|\ \ \ | |_|/ |/| |
| * | Corrections, documenting and fixes.Gravatar Fernando Sahmkow2019-02-164-13/+14
| * | Use u128 on Clock Cycles calculation.Gravatar Fernando Sahmkow2019-02-155-27/+32
| * | Implement 128 bits Unsigned Integer Multiplication and Division.Gravatar Fernando Sahmkow2019-02-153-0/+50
| * | Correct CNTPCT to use Clock Cycles instead of Cpu Cycles.Gravatar Fernando Sahmkow2019-02-153-2/+13
* | | Merge pull request #2242 from lioncash/thread-fnGravatar bunnei2019-03-164-33/+31
|\ \ \ | |_|/ |/| |
| * | kernel/thread: Move thread exiting logic from ExitCurrentThread to svcExitThreadGravatar Lioncash2019-03-152-8/+7
| * | kernel/thread: Migrate WaitCurrentThread_Sleep into the Thread interfaceGravatar Lioncash2019-03-154-25/+24
* | | Merge pull request #2237 from bunnei/cache-host-addrGravatar bunnei2019-03-1626-294/+394
|\ \ \
| * | | gpu: Use host address for caching instead of guest address.Gravatar bunnei2019-03-1426-294/+394
* | | | Merge pull request #2048 from FearlessTobi/port-3924Gravatar bunnei2019-03-152-203/+250
|\ \ \ \ | |/ / / |/| | |
| * | | citra_qt: Settings (configuration) reworkGravatar zhupengfei2019-03-072-203/+250
* | | | Merge pull request #2233 from ReinUsesLisp/morton-cleanupGravatar bunnei2019-03-144-187/+146
|\ \ \ \
| * | | | video_core/morton: Use enum to describe MortonCopyPixels128 modeGravatar ReinUsesLisp2019-03-133-7/+10
| * | | | video_core/morton: Remove unused parameter in MortonSwizzleGravatar ReinUsesLisp2019-03-133-8/+7
| * | | | video_core/morton: Remove clang-format off when it's not neededGravatar ReinUsesLisp2019-03-131-133/+129
| * | | | video_core/morton: Remove unused functionsGravatar ReinUsesLisp2019-03-131-39/+0
| | |/ / | |/| |
* | | | Merge pull request #2229 from ReinUsesLisp/vk-sampler-cacheGravatar bunnei2019-03-144-24/+168
|\ \ \ \
| * | | | vk_sampler_cache: Use operator== instead of memcmpGravatar Mat M2019-03-121-1/+1
| * | | | vk_sampler_cache: Implement a sampler cacheGravatar ReinUsesLisp2019-03-124-1/+140
| * | | | video_core/texture: Add a raw representation of TSCEntryGravatar ReinUsesLisp2019-03-121-24/+29
* | | | | Merge pull request #2230 from lioncash/globalGravatar bunnei2019-03-142-8/+9
|\ \ \ \ \
| * | | | | kernel/process: Remove use of global system accessorsGravatar Lioncash2019-03-122-8/+9
| | |/ / / | |/| | |
* | | | | Merge pull request #2216 from ReinUsesLisp/rasterizer-systemGravatar bunnei2019-03-142-29/+31
|\ \ \ \ \
| * | | | | gl_rasterizer: Use system instance passed from argumentGravatar ReinUsesLisp2019-03-112-29/+31
* | | | | | Merge pull request #2227 from lioncash/overrideGravatar bunnei2019-03-132-5/+5
|\ \ \ \ \ \
| * | | | | | renderer_opengl/gl_global_cache: Replace indexing for assignment with insert_...Gravatar Lioncash2019-03-112-3/+3
| * | | | | | renderer_opengl/gl_global_cache: Append missing override specifiersGravatar Lioncash2019-03-111-2/+2
| |/ / / / /
* | | | | | Merge pull request #2226 from lioncash/privateGravatar bunnei2019-03-134-14/+36
|\ \ \ \ \ \
| * | | | | | kernel/server_port: Make data members privateGravatar Lioncash2019-03-114-14/+36
| |/ / / / /
* | | | | | Merge pull request #2223 from lioncash/errorGravatar bunnei2019-03-133-19/+5
|\ \ \ \ \ \
| * | | | | | core/hle/result: Remove now-unnecessary manually defined copy assignment oper...Gravatar Lioncash2019-03-101-5/+0
| * | | | | | core/hle/result: Amend error in comment description for ResultCodeGravatar Lioncash2019-03-101-1/+1
| * | | | | | core/hle/result: Remove now-unused constructor for ResultCodeGravatar Lioncash2019-03-101-10/+0
| * | | | | | core/hle/result: Relocate IPC error code to ipc_helpersGravatar Lioncash2019-03-103-3/+4
| |/ / / / /
* | | | | | Merge pull request #2187 from FearlessTobi/port-sdl-thingsGravatar bunnei2019-03-139-691/+785
|\ \ \ \ \ \
| * | | | | | fixup! Joystick: Allow for background events; Add deadzone to SDLAnalogGravatar B3n302019-03-021-6/+17
| * | | | | | input/sdl: lock map mutex after SDL callGravatar Weiyi Wang2019-03-021-11/+17
| * | | | | | Input: Remove global variables from SDL InputGravatar James Rowe2019-03-029-809/+206