index
:
yuzu
master
Nintendo Switch emulator archive
git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
common
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
common/bit_field: Make BitField trivially copyable
Lioncash
2019-03-07
1
-9
/
+7
*
logging/backend: Make time_origin a class variable instead of a local static
Lioncash
2019-03-02
1
-2
/
+1
*
logging/backend: Move CreateEntry into the Impl class
Lioncash
2019-03-02
2
-29
/
+26
*
common/math_util: Move contents into the Common namespace
Lioncash
2019-02-27
1
-2
/
+2
*
common/vector_math: Move Vec[x] types into the Common namespace
Lioncash
2019-02-26
3
-25
/
+25
*
common/quaternion: Move Quaternion into the Common namespace
Lioncash
2019-02-26
1
-2
/
+2
*
Remove GCC version checks
tgsm
2019-02-24
1
-3
/
+3
*
Adressed review comments
B3n30
2019-02-15
2
-7
/
+9
*
threadsafe_queue: Add WaitIfEmpty and use it in logging
B3n30
2019-02-15
3
-14
/
+26
*
Merge pull request #2113 from ReinUsesLisp/vulkan-base
bunnei
2019-02-14
2
-0
/
+2
|
\
|
*
logging: Add Vulkan backend logging class type
ReinUsesLisp
2019-02-12
2
-0
/
+2
*
|
threadsafe_queue: Use std::size_t for representing size
Lioncash
2019-02-12
1
-7
/
+6
*
|
threadsafe_queue: Remove NeedSize template parameter
Lioncash
2019-02-12
1
-13
/
+11
|
/
*
cmake: Fix title bar issue
ReinUsesLisp
2019-02-06
1
-1
/
+14
*
cmake: Use CMAKE_COMMAND instead of "cmake"
Frederic L
2019-02-06
1
-1
/
+1
*
gl_shader_disk_cache: Invalidate shader cache changes with CMake hash
ReinUsesLisp
2019-02-06
3
-39
/
+56
*
file_util: Add shader directory
ReinUsesLisp
2019-02-06
3
-0
/
+3
*
Merge pull request #1928 from lioncash/caps
bunnei
2018-12-27
2
-0
/
+62
|
\
|
*
common: Add basic bit manipulation utility function to Common
Lioncash
2018-12-21
2
-0
/
+62
*
|
common/quaternion: Ensure that w is always initialized
Lioncash
2018-12-21
1
-1
/
+1
|
/
*
Merge pull request #1732 from DarkLordZach/yield-types
bunnei
2018-12-15
1
-0
/
+16
|
\
|
*
scheduler: Add explanations for YieldWith and WithoutLoadBalancing
Zach Hilman
2018-11-22
1
-2
/
+2
|
*
svc: Implement yield types 0 and -1
Zach Hilman
2018-11-18
1
-0
/
+16
*
|
Backport review comment from citra-emu/citra#4418
Tobias
2018-12-07
1
-2
/
+2
*
|
Merge pull request #1773 from lioncash/thread
bunnei
2018-11-23
2
-41
/
+14
|
\
\
|
*
|
common/thread: Drop Hungarian notation on SetCurrentThreadName's parameter
Lioncash
2018-11-22
1
-7
/
+7
|
*
|
common/thread: Make Barrier's 'count' member non-const
Lioncash
2018-11-21
1
-1
/
+1
|
*
|
common/thread: Initialize class member variables where applicable
Lioncash
2018-11-21
1
-6
/
+4
|
*
|
common/thread: Group non-member functions together
Lioncash
2018-11-21
1
-3
/
+2
|
*
|
common/thread: Remove SleepCurrentThread()
Lioncash
2018-11-21
2
-12
/
+0
|
*
|
common/thread: Remove unused CurrentThreadId()
Lioncash
2018-11-21
2
-12
/
+0
*
|
|
common: Remove bit_set.h
Lioncash
2018-11-21
2
-245
/
+0
|
/
/
*
|
Merge pull request #1758 from lioncash/rect
bunnei
2018-11-21
1
-11
/
+5
|
\
\
|
*
|
common/math_util: Simplify std::make_signed usages to std::make_signed_t
Lioncash
2018-11-21
1
-2
/
+2
|
*
|
common/math_util: Make Rectangle's constructors constexpr
Lioncash
2018-11-21
1
-2
/
+2
|
*
|
common/math_util: Remove unnecessary static from PI
Lioncash
2018-11-21
1
-1
/
+1
|
*
|
common/math_util: Remove unused IntervalsIntersect() function
Lioncash
2018-11-21
1
-6
/
+0
*
|
|
common: Remove dependency on xbyak
Lioncash
2018-11-21
3
-274
/
+0
|
/
/
*
|
common/assert: Add UNIMPLEMENTED_IF and UNIMPLEMENTED_IF_MSG for conditional ...
Lioncash
2018-11-20
1
-0
/
+3
*
|
common/assert: Make the UNIMPLEMENTED macro properly assert
Lioncash
2018-11-20
1
-1
/
+1
*
|
am: Deglobalize software keyboard applet
Zach Hilman
2018-11-18
2
-4
/
+4
*
|
string_util: Implement buffer to UTF-16 string helper function
Zach Hilman
2018-11-18
2
-0
/
+17
|
/
*
Common/Bitfield: store value as unsigned type
Weiyi Wang
2018-11-16
1
-9
/
+10
*
string_util: Remove ArrayToString()
Lioncash
2018-11-13
2
-21
/
+0
*
string_util: Remove TryParse()
Lioncash
2018-11-13
2
-54
/
+3
*
string_util: Remove ThousandSeparate()
Lioncash
2018-11-13
1
-14
/
+0
*
Merge pull request #1441 from CarlKenner/DebuggerLog
bunnei
2018-11-05
2
-2
/
+23
|
\
|
*
logging: Add DebuggerBackend for logging to Visual Studio
Carl Kenner
2018-10-07
2
-2
/
+23
*
|
compatdb: Use a seperate endpoint for testcase submission
fearlessTobi
2018-10-28
1
-0
/
+4
*
|
logging/backend: Add missing services to the log filters
Lioncash
2018-10-23
2
-0
/
+5
[next]