Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-03 | Merge pull request #1229 from lioncash/forward-decl | bunnei | |
vfs_real: Forward declare IOFile | |||
2018-09-03 | Merge pull request #1233 from lioncash/dynarmic | Mat M | |
externals: Update dynarmic to 0435ac2 | |||
2018-09-03 | externals: Update dynarmic to 0435ac2 | Lioncash | |
2018-09-02 | vfs_real: Forward declare IOFile | Lioncash | |
Eliminates the need to rebuild some source files if the file_util header ever changes. This also uncovered some indirect inclusions, which have also been fixed. | |||
2018-09-02 | Merge pull request #1213 from DarkLordZach/octopath-fs | bunnei | |
filesystem/maxwell_3d: Various changes to boot Project Octopath Traveller | |||
2018-09-02 | Merge pull request #1215 from ogniK5377/texs-nodep-assert | bunnei | |
Added assert for TEXS nodep | |||
2018-09-02 | Merge pull request #1219 from jroweboy/less-artifacts | bunnei | |
Build - Upload fewer artifacts | |||
2018-09-02 | Merge pull request #1220 from FearlessTobi/extensions-qol | bunnei | |
yuzu: Display the unsupported GL extensions in the popup | |||
2018-09-02 | Merge pull request #1214 from ogniK5377/ipa-assert | bunnei | |
Added better asserts to IPA, Renamed IPA modes to match mesa | |||
2018-09-02 | Merge pull request #1216 from ogniK5377/ffma-assert | bunnei | |
Added FFMA asserts and missing fields | |||
2018-09-02 | Merge pull request #1218 from ogniK5377/fmul-assert | bunnei | |
Added FMUL asserts | |||
2018-09-02 | Merge pull request #1228 from lioncash/construct | bunnei | |
filesystem: Move dir retrieval after path checking in DeleteFile() | |||
2018-09-02 | filesystem: Move dir retrieval after path checking in DeleteFile() | Lioncash | |
We don't need to do the lookup if the path is considered empty currently. | |||
2018-09-01 | citra_qt: Display the unsupported GL extensions in the popup | fearlessTobi | |
2018-09-01 | Build - Upload fewer artifacts | James Rowe | |
Appveyor has a limit on artifact retention, and we hit the limit all the time, so just lower the number of build artifacts to just the final zip | |||
2018-09-01 | Removed saturate assert | David Marcec | |
Unneeded as we already implement it | |||
2018-09-01 | Removed saturate assert | David Marcec | |
Saturate already implemented | |||
2018-09-01 | Changed tab5980_0 default from 0 -> 1 | David Marcec | |
2018-09-01 | Added FMUL asserts | David Marcec | |
2018-09-01 | Added FFMA asserts | David Marcec | |
2018-09-01 | Added assert for TEXS nodep | David Marcec | |
2018-09-01 | Added better asserts to IPA, Renamed IPA modes to match mesa | David Marcec | |
IpaMode is changed to IpaInterpMode IpaMode is suppose to be 2 bits not 3 Added IpaSampleMode Added Saturate Renamed modes based on https://github.com/mesa3d/mesa/blob/d27c7918916cdc8092959124955f887592e37d72/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp#L2530 | |||
2018-08-31 | maxwell_3d: Use CoreTiming for query timestamp | Zach Hilman | |
2018-08-31 | filesystem: Implement OpenReadOnlySaveDataFilesystem | Zach Hilman | |
2018-08-31 | filesystem: Add OpenFileSystemWithPatch | Zach Hilman | |
2018-08-31 | Merge pull request #1196 from FearlessTobi/ccache-consistency | bunnei | |
.travis: Use Citras ccache for builds instead of yuzus | |||
2018-08-31 | Merge pull request #1212 from lioncash/forward-decl | bunnei | |
core/core: Replace includes with forward declarations where applicable | |||
2018-08-31 | core/core: Replace includes with forward declarations where applicable | Lioncash | |
The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which replaces most of the includes in the core header with forward declarations. This makes it so that if any of the headers the core header was previously including change, then no one will need to rebuild the bulk of the core, due to core.h being quite a prevalent inclusion. This should make turnaround for changes much faster for developers. | |||
2018-08-31 | travis: use Citras ccache | fearlessTobi | |
2018-08-31 | Merge pull request #1205 from bunnei/improve-rasterizer-cache-2 | bunnei | |
Various fixes and improvements to rasterizer cache 2: Electric Boogaloo | |||
2018-08-31 | gl_rasterizer_cache: Use accurate framebuffer setting for accurate copies. | bunnei | |
2018-08-31 | gl_rasterizer_cache: Also use reserve cache for RecreateSurface. | bunnei | |
2018-08-31 | rasterizer_cache: Use boost::interval_map for a more accurate cache. | bunnei | |
2018-08-31 | gl_renderer: Cache textures, framebuffers, and shaders based on CPU address. | bunnei | |
2018-08-31 | gl_rasterizer: Fix issues with the rasterizer cache. | bunnei | |
- Use a single cached page map. - Fix calculation of ending page. | |||
2018-08-31 | Implement BC6H_UF16 & BC6H_SF16 (#1092) | greggameplayer | |
* Implement BC6H_UF16 & BC6H_SF16 Require by ARMS * correct coding style * correct coding style part 2 | |||
2018-08-31 | Merge pull request #1204 from lioncash/pimpl | bunnei | |
core: Make the main System class use the PImpl idiom | |||
2018-08-31 | Merge pull request #1207 from degasus/hotfix | bunnei | |
Report correct shader size. | |||
2018-08-31 | Merge pull request #1208 from Hexagon12/pred-comp-14 | bunnei | |
Add predicate comparison 14 (GreaterEqualWithNan) | |||
2018-08-31 | core: Make the main System class use the PImpl idiom | Lioncash | |
core.h is kind of a massive header in terms what it includes within itself. It includes VFS utilities, kernel headers, file_sys header, ARM-related headers, etc. This means that changing anything in the headers included by core.h essentially requires you to rebuild almost all of core. Instead, we can modify the System class to use the PImpl idiom, which allows us to move all of those headers to the cpp file and forward declare the bulk of the types that would otherwise be included, reducing compile times. This change specifically only performs the PImpl portion. | |||
2018-08-31 | Report correct shader size. | Markus Wick | |
Seems like this was an oversee in regards to 1fd979f50a9f4c21fa8cafba7268d959e3076924 It changed GLShader::ProgramCode to a std::vector, so sizeof is wrong. | |||
2018-08-31 | Added predicate comparison GreaterEqualWithNan | Hexagon12 | |
2018-08-30 | Merge pull request #1195 from FearlessTobi/port-gamelist-compat | bunnei | |
yuzu: Show game compatibility in the game list (PR ported from Citra) | |||
2018-08-30 | gl_shader_decompiler: Implement POPC (#1203) | Laku | |
* Implement POPC * implement invert | |||
2018-08-30 | Merge pull request #1200 from bunnei/improve-ipa | bunnei | |
gl_shader_decompiler: Improve IPA for Pass mode with Position attribute. | |||
2018-08-30 | Merge pull request #1198 from lioncash/kernel | bunnei | |
kernel: Eliminate kernel global state | |||
2018-08-30 | Merge pull request #1202 from FearlessTobi/port-3825 | bunnei | |
Port #3825 from Citra: "travis: share environment variables with Docker" | |||
2018-08-30 | Merge pull request #1172 from tech4me/impl_iadd3 | bunnei | |
Shaders: Implemented IADD3 | |||
2018-08-29 | Shaders: Implemented IADD3 | tech4me | |
2018-08-29 | Show game compatibility within yuzu | fearlessTobi | |