summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | clang-formatGravatar lat9nq2020-07-195-38/+32
| | | | | | | | | | |
| * | | | | | | | | | configuration_shared: Break up tracker structs to respective classesGravatar lat9nq2020-07-1912-49/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One less global variable.
| * | | | | | | | | | configure_system: break instead of semicolonGravatar lat9nq2020-07-191-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes the code more readable Co-Authored-By: LC <lioncash@users.noreply.github.com>
| * | | | | | | | | | clang-formatGravatar lat9nq2020-07-193-8/+11
| | | | | | | | | | |
| * | | | | | | | | | configure_system: Highlight labels on startupGravatar lat9nq2020-07-191-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | whoops
| * | | | | | | | | | configure_graphics: Fix layout in global configGravatar lat9nq2020-07-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a regression where the global config takes up a lot of extra space.
| * | | | | | | | | | configure_per_game: Improve style consistencyGravatar lat9nq2020-07-193-54/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The way the configurations are set up, it is not trivial to do this. I'll leave it as is, but the API selection, and the background color and volume slider selectors are kind of not following the style.
| * | | | | | | | | | configure_system: Implement highlighted overridesGravatar lat9nq2020-07-193-539/+544
| | | | | | | | | | |
| * | | | | | | | | | configuration_shared: Add default combobox setup functionGravatar lat9nq2020-07-193-21/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not a catch-all, but helps clean up the code for when I do this a lot. Also fixes some bugs caught in configure_graphics.
| * | | | | | | | | | configuration_shared: Use an int instead of a QStringGravatar lat9nq2020-07-194-22/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I noticed some of the code could be reduced to just passing the function an int, since I was doing the same thing over and over. Also clang-formats configure_graphics
| * | | | | | | | | | configure_graphics_advanced: Implement highlighted overridesGravatar lat9nq2020-07-193-96/+146
| | | | | | | | | | |
| * | | | | | | | | | configuration_shared: Switch back to background colorsGravatar lat9nq2020-07-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Let's see if I make up my mind.
| * | | | | | | | | | configuration_shared: Better use global textGravatar lat9nq2020-07-192-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also adds trackers for graphics and advanced graphics
| * | | | | | | | | | configure_audio: fix UI marginsGravatar lat9nq2020-07-191-1/+10
| | | | | | | | | | |
| * | | | | | | | | | configure_graphics: Implement highlighted overridesGravatar lat9nq2020-07-192-134/+200
| | | | | | | | | | |
| * | | | | | | | | | configure_audio: Implement highlighted overridesGravatar lat9nq2020-07-192-80/+87
| | | | | | | | | | |
| * | | | | | | | | | configuration_shared: Require name of the widget for highlightingGravatar lat9nq2020-07-193-16/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevents mass-coloring of elements later on
| * | | | | | | | | | configuration_shared: Use a highlight instead of background colorGravatar lat9nq2020-07-192-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes visibility in the built-in dark theme
| * | | | | | | | | | configure_general: Implement manual tristate buttonsGravatar lat9nq2020-07-192-17/+27
| | | | | | | | | | |
| * | | | | | | | | | configuration_shared: Initial functions and data for manual tristateGravatar lat9nq2020-07-192-0/+58
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sets up initial support for implementing colored tristate functions. These functions color a QWidget blue when it's overriding a global setting, and discolor it when not. The lack of color indicates it uses the global state, replacing the Qt::CheckState::PartiallyChecked state with the global state.
* | | | | | | | | | Merge pull request #4388 from lioncash/writtenGravatar bunnei2020-07-241-6/+3
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | buffer_cache: Eliminate redundant map lookup in MarkRegionAsWritten()
| * | | | | | | | | | buffer_cache: Eliminate redundant map lookup in MarkRegionAsWritten()Gravatar Lioncash2020-07-201-6/+3
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We can make use of emplace()'s return value to determine whether or not we need to perform an increment. emplace() performs no insertion if an element already exist, so this can eliminate a find() call.
* | | | | | | | | | Merge pull request #4391 from lioncash/nrvoGravatar bunnei2020-07-247-26/+26
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | video_core: Allow copy elision to take place where applicable
| * | | | | | | | | | video_core: Allow copy elision to take place where applicableGravatar Lioncash2020-07-217-26/+26
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removes const from some variables that are returned from functions, as this allows the move assignment/constructors to execute for them.
* | | | | | | | | | Merge pull request #4394 from lioncash/unused6Gravatar bunnei2020-07-238-33/+5
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | video_core: Remove unused variables
| * | | | | | | | | | video_core: Remove unused variablesGravatar Lioncash2020-07-218-33/+5
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Silences several compiler warnings about unused variables.
* | | | | | | | | | Merge pull request #4353 from ameerj/gc-refactorGravatar bunnei2020-07-232-183/+46
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | gc_adapter: Refactor code
| * | | | | | | | | | Fix axis thresholding while pollingGravatar ameerj2020-07-191-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | axes were very sensitive when mapping controls.
| * | | | | | | | | | std::size_t where appropriate, make error message more clear if can't readGravatar ameerj2020-07-171-3/+4
| | | | | | | | | | |
| * | | | | | | | | | Refactor adapter codeGravatar Ameer2020-07-162-179/+44
| | | | | | | | | | |
* | | | | | | | | | | network: add missing include for BSDsGravatar Jan Beich2020-07-221-0/+2
| |_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/core/network/network.cpp:112:28: error: use of undeclared identifier 'SHUT_RD' constexpr int SD_RECEIVE = SHUT_RD; ^ src/core/network/network.cpp:113:25: error: use of undeclared identifier 'SHUT_WR' constexpr int SD_SEND = SHUT_WR; ^ src/core/network/network.cpp:114:25: error: use of undeclared identifier 'SHUT_RDWR' constexpr int SD_BOTH = SHUT_RDWR; ^ src/core/network/network.cpp:120:37: error: unknown type name 'in_addr'; did you mean 'in_addr_t'? constexpr IPv4Address TranslateIPv4(in_addr addr) { ^~~~~~~ in_addr_t /usr/include/netdb.h:66:20: note: 'in_addr_t' declared here typedef __uint32_t in_addr_t; ^ src/core/network/network.cpp:121:27: error: member reference base type 'in_addr_t' (aka 'unsigned int') is not a structure or union const u32 bytes = addr.s_addr; ~~~~^~~~~~~ src/core/network/network.cpp:121:15: error: variables defined in a constexpr function must be initialized const u32 bytes = addr.s_addr; ^ src/core/network/network.cpp:126:10: error: incomplete result type 'sockaddr' in function definition sockaddr TranslateFromSockAddrIn(SockAddrIn input) { ^ /usr/include/netdb.h:142:9: note: forward declaration of 'sockaddr' struct sockaddr *ai_addr; /* binary address */ ^ src/core/network/network.cpp:127:5: error: unknown type name 'sockaddr_in'; did you mean 'sockaddr'? sockaddr_in result; ^~~~~~~~~~~ sockaddr /usr/include/netdb.h:142:9: note: 'sockaddr' declared here struct sockaddr *ai_addr; /* binary address */ ^ src/core/network/network.cpp:127:17: error: variable has incomplete type 'sockaddr' sockaddr_in result; ^ /usr/include/netdb.h:142:9: note: forward declaration of 'sockaddr' struct sockaddr *ai_addr; /* binary address */ ^ src/core/network/network.cpp:131:29: error: use of undeclared identifier 'AF_INET' result.sin_family = AF_INET; ^ src/core/network/network.cpp:135:29: error: use of undeclared identifier 'AF_INET' result.sin_family = AF_INET; ^ src/core/network/network.cpp:139:23: error: use of undeclared identifier 'htons' result.sin_port = htons(input.portno); ^ src/core/network/network.cpp:143:14: error: variable has incomplete type 'sockaddr' sockaddr addr; ^ /usr/include/netdb.h:142:9: note: forward declaration of 'sockaddr' struct sockaddr *ai_addr; /* binary address */ ^ src/core/network/network.cpp:156:1: error: unknown type name 'linger' linger MakeLinger(bool enable, u32 linger_value) { ^ src/core/network/network.cpp:157:5: error: unknown type name 'linger' linger value; ^ src/core/network/network.cpp:185:16: error: use of undeclared identifier 'AF_INET' return AF_INET; ^ src/core/network/network.cpp:195:16: error: use of undeclared identifier 'SOCK_STREAM' return SOCK_STREAM; ^ src/core/network/network.cpp:197:16: error: use of undeclared identifier 'SOCK_DGRAM' return SOCK_DGRAM; ^ src/core/network/network.cpp:207:16: error: use of undeclared identifier 'IPPROTO_TCP' return IPPROTO_TCP; ^ fatal error: too many errors emitted, stopping now [-ferror-limit=]
* | | | | | | | | | Merge pull request #4359 from ReinUsesLisp/clamp-sharedGravatar Rodrigo Locatti2020-07-216-9/+42
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | renderer_{opengl,vulkan}: Clamp shared memory to host's limit
| * | | | | | | | | | renderer_{opengl,vulkan}: Clamp shared memory to host's limitGravatar ReinUsesLisp2020-07-166-9/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This stops shaders from failing to build when the exceed host's shared memory size limit. An error is logged.
* | | | | | | | | | | Merge pull request #4360 from ReinUsesLisp/glasm-barGravatar Rodrigo Locatti2020-07-211-4/+0
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | gl_arb_decompiler: Execute BAR even when inside control flow
| * | | | | | | | | | | gl_arb_decompiler: Execute BAR even when inside control flowGravatar ReinUsesLisp2020-07-161-4/+0
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unlike GLSL, GLASM allows us to call BAR inside control flow. - Fixes graphical artifacts in Paper Mario.
* | | | | | | | | | | Merge pull request #4361 from ReinUsesLisp/lane-idGravatar Rodrigo Locatti2020-07-211-2/+1
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | | decode/other: Implement S2R.LaneId
| * | | | | | | | | | decode/other: Implement S2R.LaneIdGravatar ReinUsesLisp2020-07-161-2/+1
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This maps to host's thread id. - Fixes graphical issues on Paper Mario.
* | | | | | | | | | Merge pull request #4306 from ReinUsesLisp/bsd-networkGravatar David2020-07-215-0/+840
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | core/network: Add network abstraction
| * | | | | | | | | | core/network: Add network abstractionGravatar ReinUsesLisp2020-07-195-0/+840
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds a network abstraction designed to implement bsd:s but at the same time work as a generic abstraction to implement any networking code we have to use from core. This is implemented on top of BSD sockets on Unix systems and winsock on Windows. The code is designed around winsocks having compatibility definitions to support both BSD and Windows sockets.
* | | | | | | | | | | Merge pull request #4324 from ReinUsesLisp/formatsGravatar bunnei2020-07-2120-1100/+1111
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / |/| | | | | | | | | | video_core: Fix, add and rename pixel formats
| * | | | | | | | | | video_core: Rearrange pixel format namesGravatar ReinUsesLisp2020-07-1319-1179/+1077
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Normalizes pixel format names to match Vulkan names. Previous to this commit pixel formats had no convention, leading to confusion and potential bugs.
| * | | | | | | | | | video_core: Fix DXT4 and RGB565Gravatar ReinUsesLisp2020-07-137-37/+31
| | | | | | | | | | |
| * | | | | | | | | | video_core/format_lookup_table: Add formats with existing PixelFormatGravatar ReinUsesLisp2020-07-131-1/+9
| | | | | | | | | | |
| * | | | | | | | | | video_core: Fix B5G6R5_UNORM render target formatGravatar ReinUsesLisp2020-07-135-1/+10
| | | | | | | | | | |
| * | | | | | | | | | video_core: Fix B5G6R5UGravatar ReinUsesLisp2020-07-132-2/+2
| | | | | | | | | | |
| * | | | | | | | | | video_core: Implement RGBA32_SINT render targetGravatar ReinUsesLisp2020-07-137-58/+71
| | | | | | | | | | |
| * | | | | | | | | | video_core: Implement RGBA32_SINT render targetGravatar ReinUsesLisp2020-07-137-0/+13
| | | | | | | | | | |
| * | | | | | | | | | video_core: Implement RGBA16_SINT render targetGravatar ReinUsesLisp2020-07-137-0/+13
| | | | | | | | | | |
| * | | | | | | | | | video_core: Implement RGBA8_SINT render targetGravatar ReinUsesLisp2020-07-137-0/+13
| | | | | | | | | | |
| * | | | | | | | | | video_core: Implement RG32_SINT render targetGravatar ReinUsesLisp2020-07-137-0/+13
| | | | | | | | | | |