summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* gl_rasterizer/lighting: implement geometric factorGravatar wwylele2017-06-153-1/+20
|
* Merge pull request #2762 from wwylele/light-cp-tangentGravatar Yuri Kunde Schlesner2017-06-142-10/+38
|\ | | | | Fragment lighting: implement lut input 5 (CP) and tangent mapping
| * gl_rasterizer/lighting: Implement tangent mappingGravatar wwylele2017-06-111-7/+12
| |
| * gl_rasterizer/lighting: implement lut input 5 (CP)Gravatar wwylele2017-06-112-3/+26
| |
* | Merge pull request #2743 from wwylele/wrap-fixGravatar Yuri Kunde Schlesner2017-06-134-12/+48
|\ \ | | | | | | pica/rasterizer: implement/stub texture wrap mode 4-7
| * | pica/rasterizer: implement/stub texture wrap mode 4-7Gravatar wwylele2017-06-044-12/+48
| | |
* | | Services/UDS: Set the proper bit in the ConnectionStatus structure when ↵Gravatar Sebastian Valle2017-06-133-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | creating a network. (#2738) * Services/UDS: Set the proper bit in the ConnectionStatus structure when creating a network. This lets the application know that the host was successfully added to the session. * Services/UDS: Reset the connection status when destroying the network * Services/UDS: Reset the connection status's bitmask of changed nodes after reporting it to the game.
* | | Merge pull request #2767 from yuriks/quaternion-flip-commentGravatar Yuri Kunde Schlesner2017-06-121-8/+11
|\ \ \ | | | | | | | | OpenGL: Update comment on AreQuaternionsOpposite with new information
| * | | OpenGL: Update comment on AreQuaternionsOpposite with new informationGravatar Yuri Kunde Schlesner2017-06-101-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | While debugging the software renderer implementation, it was noticed that this is actually exactly what the hardware does, upgrading the status of this "hack" to being a proper implementation. And there was much rejoicing.
* | | | Merge pull request #2774 from yuriks/hle-handlesGravatar Yuri Kunde Schlesner2017-06-116-69/+360
|\ \ \ \ | |_|_|/ |/| | | Add basic support for IPC translation for HLE services
| * | | Kernel/IPC: Use boost::small_vector for HLE context objectsGravatar Yuri Kunde Schlesner2017-06-111-1/+3
| | | |
| * | | Kernel: Allow clearing request_objects to re-use buffer spaceGravatar Yuri Kunde Schlesner2017-06-113-0/+14
| | | | | | | | | | | | | | | | | | | | Reduces the necessary allocation to max(in_handles, out_handles) rather than (in_handles + out_handles).
| * | | Kernel: Basic support for IPC translation for HLE servicesGravatar Yuri Kunde Schlesner2017-06-113-18/+130
| | | |
| * | | Service/sm: Convert srv: to use IPC helpersGravatar Yuri Kunde Schlesner2017-06-111-49/+56
| | | |
| * | | IPC: Add Pop/PushObjects methods to RequestParser/BuilderGravatar Yuri Kunde Schlesner2017-06-111-10/+103
| | | | | | | | | | | | | | | | | | | | These use the context functions to create and look-up handles for the user.
| * | | IPC: Add basic HLERequestContext support to RequestParser/BuilderGravatar Yuri Kunde Schlesner2017-06-111-1/+32
| | | |
| * | | Kernel: Add methods in HLERequestContext abstracting handle creationGravatar Yuri Kunde Schlesner2017-06-112-0/+12
| | | |
| * | | ServiceFramework: Use separate copy of command bufferGravatar Yuri Kunde Schlesner2017-06-113-9/+29
| |/ / | | | | | | | | | | | | | | | Copy the IPC command buffer to/from the request context before/after the handler is invoked. This is part of a move away from using global data for handling IPC requests.
* | | Merge pull request #2727 from wwylele/spot-lightGravatar Sebastian Valle2017-06-115-28/+128
|\ \ \ | |/ / |/| | Fragment lighting: implement spot light
| * | gl_rasterizer: implement spot lightGravatar wwylele2017-05-301-6/+24
| | |
| * | gl_rasterizer: sync spot light statusGravatar wwylele2017-05-304-2/+61
| | |
| * | pica: prepare registers for spotlightGravatar wwylele2017-05-301-20/+43
| | |
* | | Remove unused import in break_points.cpp (#2763)Gravatar Kloen Lansfiel2017-06-081-1/+0
| | |
* | | Merge pull request #2756 from yuriks/service-frameworkGravatar Yuri Kunde Schlesner2017-06-089-64/+355
|\ \ \ | | | | | | | | New service framework
| * | | Service/sm: Convert 'srv:' to ServiceFrameworkGravatar Yuri Kunde Schlesner2017-06-085-51/+75
| | | |
| * | | Service: Remove a few redundant namespace qualifiersGravatar Yuri Kunde Schlesner2017-06-081-5/+5
| | | |
| * | | Service: Add new ServiceFramework framework for writing HLE servicesGravatar Yuri Kunde Schlesner2017-06-085-4/+269
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old "Interface" class had a few problems such as using free functions (Which didn't allow you to write the service handler as if it were a regular class.) which weren't very extensible. (Only received one parameter with a pointer to the Interface object.) The new ServiceFramework aims to solve these problems by working with member functions and passing a generic context struct as parameter. This struct can be extended in the future without having to update all existing service implementations.
| * | | Kernel: Remove some unnecessary namespace qualificationsGravatar Yuri Kunde Schlesner2017-06-061-4/+6
| | | |
* | | | Session: Remove/add some forward declarationsGravatar Yuri Kunde Schlesner2017-06-083-2/+2
| | | |
* | | | Kernel: Ensure objects are kept alive during ClientSession disconnectionGravatar Yuri Kunde Schlesner2017-06-081-7/+13
| | | | | | | | | | | | | | | | Fixes #2760
* | | | Merge pull request #2737 from Subv/decryptbeacondataGravatar James Rowe2017-06-071-1/+97
|\ \ \ \ | |/ / / |/| | | Services/UDS: Implement DecryptBeaconData.
| * | | Services/UDS: Implement DecryptBeaconData.Gravatar Subv2017-06-061-1/+97
| | | | | | | | | | | | | | | | This function decrypts the encrypted data tags contained in the 802.11 beacon frames.
* | | | Service: Remove unnecessary includes from service.hGravatar Yuri Kunde Schlesner2017-06-0632-12/+80
| | | | | | | | | | | | | | | | | | | | This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
* | | | Service: Make service registration part of the sm implementationGravatar Yuri Kunde Schlesner2017-06-066-24/+147
| | | | | | | | | | | | | | | | Also enhances the GetServiceHandle implementation to be more accurate.
* | | | Service/sm: Use an actual semaphore for the notification semaphoreGravatar Yuri Kunde Schlesner2017-06-061-8/+9
| | | | | | | | | | | | | | | | | | | | An Event was used way back then when we didn't have proper working semaphores. Our Semaphore implementation is good enough now.
* | | | Service: Move SRV interface to a new sm/ subdirectoryGravatar Yuri Kunde Schlesner2017-06-064-9/+10
| | | | | | | | | | | | | | | | | | | | This will contain the implementation of the sm (Service Manager) system module.
* | | | Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSessionGravatar Yuri Kunde Schlesner2017-06-0611-62/+73
| | | | | | | | | | | | | | | | | | | | | | | | This allows attaching a HLE handle to a ServerPort at any point after it is created, allowing port/session creation to be generic between HLE and regular services.
* | | | ResultVal: Add more convenience utils for creating and cascading resultsGravatar Yuri Kunde Schlesner2017-06-061-0/+19
| | | |
* | | | HLE: Move SessionRequestHandler from Service:: to Kernel::Gravatar Yuri Kunde Schlesner2017-06-0514-73/+100
| | | | | | | | | | | | | | | | | | | | Most of the code that works with this is or will be in the kernel, so it's a more appropriate place for it to be.
* | | | Edit Citra URLs (#2728)Gravatar Alex Touchet2017-06-031-1/+1
| | | |
* | | | Remove unused imports in game_list_p.hGravatar Kloen2017-06-031-2/+0
| | | |
* | | | Addressed Bunnei's review comments, and made some other tweaks:Gravatar TheKoopaKingdom2017-06-027-29/+32
| | | | | | | | | | | | | | | | | | | | - Deleted GetStatus() because it wasn't used anywhere outside of Core::System. - Fixed design flaw where the message bar status could be set despite the game being stopped.
* | | | Fixed wiki URLs.Gravatar TheKoopaKingdom2017-06-021-6/+8
| | | |
* | | | Switched to the ERROR_NOT_FOUND constant from errors.h.Gravatar TheKoopaKingdom2017-06-022-4/+3
| | | |
* | | | Moved whitelist checks from FS_User to the Archive_NCCH handler.Gravatar TheKoopaKingdom2017-06-022-53/+37
| | | |
* | | | Created a whitelist of system archives to prevent false positives creating ↵Gravatar TheKoopaKingdom2017-06-029-35/+70
| | | | | | | | | | | | | | | | dialogs.
* | | | Optimized messages that were repetitive and added ability for core errors to ↵Gravatar TheKoopaKingdom2017-06-025-39/+70
| | | | | | | | | | | | | | | | specify more details optionally.
* | | | Added message to status bar to show core errors ignored by the user.Gravatar TheKoopaKingdom2017-06-022-1/+11
| | | |
* | | | Made some changes from review comments:Gravatar TheKoopaKingdom2017-06-0210-53/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Made LoadKernelSystemMode return a pair consisting of a system mode and a result code (Could use review). - Deleted ErrorOpenGL error code in favor of just having ErrorVideoCore. - Made dialog messages more clear. - Compared archive ID in fs_user.cpp to ArchiveIdCode::NCCH as opposed to hex magic. - Cleaned up some other stuff.
* | | | Added system for handling core errors in citra-qt.Gravatar TheKoopaKingdom2017-06-029-26/+121
| | | |