aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | Merge pull request #265 from Subv/socuGravatar bunnei2014-12-31
|\ \ | | | | | | SOC_U: Implemented some socket functions
| * | SOC_U: Preliminary implementation of sockets.Gravatar Subv2014-12-31
|/ / | | | | | | | | | | | | | | | | | | | | | | | | Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU
| * Pica/Rasterizer: Remove some redundant casts.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/Rasterizer: Make orient2d a free function and rename it to SignedArea.Gravatar Tony Wasserka2014-12-31
| |
| * Pica: Cleanup color conversion.Gravatar Tony Wasserka2014-12-31
| |
| * VideoCore: Remove some unused functions.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/Rasterizer: Fix a bug related to multitexturing and texture wrapping.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/Rasterizer: Clean up long code lines.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/VertexShader: Coding style fixes.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/CommandProcessor: Cleanups.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/CommandProcessor: Workaround games not setting the input position's w ↵Gravatar Tony Wasserka2014-12-31
| | | | | | | | component.
| * GPU: Pseudo-implement horizontal scaling.Gravatar Tony Wasserka2014-12-31
| | | | | | | | | | It's not really known how this actually works. Some testing has shown that this probably performs no filtering, and common usage in games suggests it's not actually resizing the image at all. However, this patch does seem to fix some homebrew showing quasi-duplicated images while still keeping other applications in a working state.
| * Pica/Rasterizer: Implement backface culling.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/Rasterizer: Textures seem to be laid out flipped vertically.Gravatar Tony Wasserka2014-12-31
| | | | | | | | Not sure if this is a correct fix. Probably should instead change the decoding logic itself.
| * Pica/DebugUtils: Fix a bug in RGBA4 texture decoding.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/Rasterizer: Implement alpha blending.Gravatar Tony Wasserka2014-12-31
| |
| * Pica/Rasterizer: Implement depth testing.Gravatar Tony Wasserka2014-12-31
| |
* | Merge pull request #375 from lioncash/uopsGravatar bunnei2014-12-31
|\ \ | | | | | | dyncom: Implement UADD8/UADD16/USUB8/USUB16/UASX/USAX
| | * Pica/Rasterizer: Further enhance Tev support.Gravatar Tony Wasserka2014-12-31
| | |
| | * Pica: Add output merger definitions.Gravatar Tony Wasserka2014-12-31
| | |
| | * Pica: Fix A4, IA4 and IA8 texture formats.Gravatar Tony Wasserka2014-12-31
| | | | | | | | | | | | Both IA4 and IA8 had their component order mixed up. Additionally, IA4 used the wrong number of nibbles per texel. A4 skipped every second texel.
| | * Pica/CommandProcessor: Add support for integer uniforms.Gravatar Tony Wasserka2014-12-31
| | |
| | * citra-qt: Fix displaying RGBA5551 framebuffers.Gravatar Tony Wasserka2014-12-31
| | | | | | | | | | | | (not that it matters at the moment, because this code is not used yet)
| | * citra-qt: Always show pica framebuffers as RGBA8.Gravatar Tony Wasserka2014-12-31
| |/ |/| | | | | We actually don't really know yet how the format is encoded. Hence just use what works.
| * dyncom: Implement UADD8/UADD16/USUB8/USUB16/UASX/USAXGravatar Lioncash2014-12-31
| |
* | Merge pull request #338 from chinhodado/masterGravatar bunnei2014-12-31
|\ \ | | | | | | Add citra icon to executable and window title in Windows
| * | Add citra icon to Windows executable and title barGravatar Chin2014-12-31
| | |
* | | Merge pull request #374 from bunnei/dyncom-cleanup-2Gravatar bunnei2014-12-31
|\ \ \ | |/ / |/| | dyncom: Massive refactor
| * | dyncom: Massive refactorGravatar bunnei2014-12-30
|/ /
* | Merge pull request #369 from darkf/mingw_Gravatar bunnei2014-12-30
|\ \ | | | | | | Fix MinGW build (2)
* \ \ Merge pull request #372 from lioncash/warnGravatar bunnei2014-12-30
|\ \ \ | |_|/ |/| | vfp: Get rid of a few warnings
| * | vfp: Get rid of a few warningsGravatar Lioncash2014-12-30
|/ /
* | Merge pull request #371 from lioncash/vfpGravatar bunnei2014-12-30
|\ \ | | | | | | vfp: Implement VMOVBRRSS
| * | vfp: Implement VMOVBRRSSGravatar Lioncash2014-12-30
|/ /
* | Merge pull request #370 from lioncash/moresatGravatar bunnei2014-12-30
|\ \ | | | | | | dyncom: Implement USAT16/SSAT16
| * | dyncom: Implement USAT16/SSAT16Gravatar Lioncash2014-12-30
|/ /
| * Fix MSVC-related #defines and add CMakeLists commentGravatar darkf2014-12-29
| |
* | Merge pull request #368 from purpasmart96/dsp_memGravatar bunnei2014-12-29
|\ \ | | | | | | MemMap: Add support for DSP Read & Writes in the memory map
* \ \ Merge pull request #364 from Subv/masterGravatar bunnei2014-12-29
|\ \ \ | | | | | | | | Archives: Implemented ExtSaveData and SharedExtSaveData
| * | | APT:A: Some style changesGravatar Subv2014-12-29
| | | |
| | | * Fix merge conflictsGravatar darkf2014-12-29
| | | |\ | |_|_|/ |/| | |
| | * | MemMap: Add support for DSP Read & Writes in the memory mapGravatar purpasmart962014-12-29
| | | |
| * | | Archives: Implemented ExtSaveData and SharedExtSaveDataGravatar Subv2014-12-29
|/ / / | | | | | | | | | | | | | | | | | | | | | They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded.
* | | Merge pull request #367 from bunnei/usat_ssatGravatar bunnei2014-12-29
|\ \ \ | |/ / |/| | dyncom: Implement USAT/SSAT
| * | dyncom: Implement USAT/SSATGravatar bunnei2014-12-29
|/ /
* | Merge pull request #253 from purpasmart96/mem_mapGravatar bunnei2014-12-29
|\ \ | | | | | | MemMap: Removed I/O address's and added more stuff
* \ \ Merge pull request #362 from bunnei/dyncom-cleanupGravatar bunnei2014-12-29
|\ \ \ | | | | | | | | dyncom: Various cleanups to match coding style, no functional changes.
* \ \ \ Merge pull request #344 from Yllodra/Qt-OdditiesGravatar bunnei2014-12-29
|\ \ \ \ | | | | | | | | | | Allow focus on the Qt render widget
| | * | | dyncom: Various cleanups to match coding style, no functional changes.Gravatar bunnei2014-12-29
| | | | |
* | | | | Merge pull request #351 from yuriks/optimizeGravatar Tony Wasserka2014-12-30
|\ \ \ \ \ | |_|/ / / |/| | | | Rasterizer Optimizations