Yuri Kunde Schlesner
1b5ee96797
Merge pull request #604 from Subv/arc_ssd
...
Archives: Properly implemented the SystemSaveData archive.
10 years ago
Yuri Kunde Schlesner
3342679b33
Merge pull request #611 from yuriks/pixelated-textures
...
Video core: Fix pixelation/blockiness in textures.
10 years ago
Yuri Kunde Schlesner
3c50da6fc0
Video core: Fix pixelation/blockiness in textures.
...
This was caused during morton decoding by me not masking the bits of
each coordinate before merging them, so the bits from x could set bits
in y if it was >255.
10 years ago
Subv
9db5c9b6dc
Archives: Properly implemented the SystemSaveData archive.
...
Ported to the new factory pattern we have for archives.
10 years ago
bunnei
f7c3193fec
Merge pull request #575 from linkmauve/xdg
...
Switch to the XDG Base Directory Specification for directory selection
10 years ago
bunnei
593e74ce3d
Merge pull request #609 from lioncash/rem
...
arm: Remove unnecessary booleans
10 years ago
Lioncash
1bb400be1b
arm: Remove unnecessary booleans
...
We don't care about any of these.
10 years ago
Emmanuel Gil Peyrot
129ad721c1
Common: Switch to the XDG Base Directory Specification for directory selection.
...
This allows for easily movable and independent configuration and data directories, using standardized paths.
10 years ago
bunnei
40d1f9045a
Merge pull request #601 from Subv/y2r
...
Services: Implemented Y2R_U::GetTransferEndEvent
10 years ago
bunnei
efcd77a544
Merge pull request #605 from bunnei/rasterize-rgba4
...
rasterizer: Add support for RGBA4 framebuffer format.
10 years ago
bunnei
ed255ebaec
Rasterizer: Add support for RGBA4 framebuffer format.
10 years ago
Subv
ef66feaeba
Services: Implemented Y2R_U::GetTransferEndEvent
...
Aero Porter was throwing an "Invalid Handle" fatal error without this.
10 years ago
bunnei
3700263f71
Merge pull request #595 from linkmauve/new-3ds-input
...
Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.
10 years ago
bunnei
50a0c4f14f
Merge pull request #581 from archshift/tfe
...
Added information reporting from ThrowFatalError
10 years ago
bunnei
131454ab3e
Merge pull request #598 from Subv/dpt
...
GPU: Fixed RGBA8 as output format in a display transfer.
10 years ago
Subv
b1284222f2
GPU: Fixed RGBA8 as output format in a display transfer.
...
Verified with hwtests
10 years ago
archshift
0420a4d1de
Added information reporting from ThrowFatalError
...
This was RE'd from the errdisp applet.
10 years ago
Emmanuel Gil Peyrot
aa64f69af0
Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.
10 years ago
bunnei
89a71eb6a4
Merge pull request #471 from archshift/pp3ports3
...
GPU: Add support for more framebuffer formats in display transfers.
10 years ago
Tony Wasserka
23c6764b2b
GPU: Add support for more framebuffer formats in display transfers.
10 years ago
bunnei
c79db48ea1
Merge pull request #597 from bunnei/fix-color-component-order
...
Rasterize with the correct color component order.
10 years ago
bunnei
733c19ddd3
Rasterize with the correct color component order.
...
- Fixes a regression with #594 .
10 years ago
bunnei
dfe807b2cd
Merge pull request #596 from kevinhartman/unaligned-cleanup
...
Clean up unaligned 32-bit memory reads
10 years ago
bunnei
d120757f32
Merge pull request #594 from Subv/display_transfer
...
GPU: Fixed the RGBA8 input format and RGB8 output format
10 years ago
Tony Wasserka
34f21334ad
Merge pull request #593 from Subv/search_problem
...
Pica/VertexShader: Fixed LOOP with more than one iteration.
10 years ago
Kevin Hartman
05c098a9e7
Cleaned up unaligned access.
10 years ago
Subv
fbbfb52a2c
GPU: Fixed the RGBA8 input format and RGB8 output format
...
in Display Transfers, tested with hwtests.
10 years ago
Subv
9a03e9c61d
Pica/VertexShader: Fixed LOOP with more than one iteration.
...
Previously it wouldn't jump back to the start of the loop code once it reached the end of the block.
Fixes the texture problems in a lot of games.
10 years ago
Kevin Hartman
a6fdb8f217
Fix error message for bad config block request.
10 years ago
bunnei
3c5aaafb40
Merge pull request #590 from linkmauve/rename-dolphin
...
Common: Change names containing “Dolphin” or “PPSSPP” to something more generic
10 years ago
Emmanuel Gil Peyrot
54d6f6c82b
Common: Change names containing “Dolphin” or “PPSSPP” to something more generic.
10 years ago
bunnei
5f9939070e
Merge pull request #588 from archshift/somebranch
...
Sweeping cleanup of Common
10 years ago
archshift
4fb75d220a
Misc cleanup of common and related functions
10 years ago
archshift
302f0b32f5
Remove duplication of INSERT_PADDING_WORDS between pica.h and gpu.h
10 years ago
bunnei
c7d1480ece
Merge pull request #587 from archshift/assert
...
Convert a few C stdlib asserts to Citra's own asserts
10 years ago
Tony Wasserka
4cc1a71441
Merge pull request #585 from Subv/local_var
...
Rasterizer: Fixed a warning in GetWrappedTexCoord.
10 years ago
archshift
49f94b82b4
Remove "super lame/broken" file_search compilation unit that was leftover from Dolphin
10 years ago
archshift
961f65d1fe
Remove redundant utf8 compilation unit that was leftover from Dolphin
10 years ago
archshift
9f7f1a2272
Remove useless extended_trace compilation unit that was leftover from Dolphin
10 years ago
archshift
5efd149ad5
Remove the useless msg_handler compilation unit that was left over from Dolphin
10 years ago
archshift
3c48697ea3
Convert a few C stdlib asserts to Citra's own asserts
10 years ago
Subv
5410367ebf
Rasterizer: Fixed a warning in GetWrappedTexCoord.
...
Redeclaring the variable inside the switch was causing weird behavior.
10 years ago
bunnei
ec8f2210e3
Merge pull request #580 from lioncash/emplace
...
core/video_core: Use in-place construction where possible
10 years ago
bunnei
4a48b017ca
Merge pull request #562 from neobrain/pica_progress3
...
More PICA200 Emulation Fixes
10 years ago
Tony Wasserka
2eee3a87f9
Pica/Rasterizer: Replace exit() calls with UNIMPLEMENTED().
10 years ago
Tony Wasserka
6e5a903286
Pica/Rasterizer: Make some local lambdas static.
10 years ago
Tony Wasserka
1561204342
Pica/BlendUnit: Implement separate color/alpha blend equations.
10 years ago
Tony Wasserka
81ebb4d682
Pica/TextureEnvironment: Add a note.
10 years ago
Tony Wasserka
e11fb96408
Pica/TextureEnvironment: Treat texture combiner source 1 as the PrimaryColor.
...
Not really sure where the difference is, but some applications seem to use this 1:1 the same way...
10 years ago
Tony Wasserka
04cd06d5c2
Pica/TextureEnvironment: Add support for the MAD-like texture combiners and clean up texture environment logic.
10 years ago