Commit Graph

53 Commits (510246ddce546219ab5586b6cf991752dc78338d)

Author SHA1 Message Date
bunnei 34c31db14a GPU: Added RGB565/RGB8 framebuffer support and various cleanups.
- Centralizes color format encode/decode functions.
- Fixes endianness issues.
- Implements remaining framebuffer formats in the debugger.
10 years ago
Subv c564c21668 GPU: Implemented bits 3 and 1 from the display transfer flags.
Bit 3 is used to specify a raw copy, where no processing is done to the data, seems to behave exactly as a DMA.
Bit 1 is used to specify whether to convert from a tiled format to a linear format or viceversa.
10 years ago
Subv b1284222f2 GPU: Fixed RGBA8 as output format in a display transfer.
Verified with hwtests
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
Subv fbbfb52a2c GPU: Fixed the RGBA8 input format and RGB8 output format
in Display Transfers, tested with hwtests.
10 years ago
Tony Wasserka 0da6a7e234 GPU: Properly implement memory fills. 10 years ago
Lioncash 676daef3c7 core: Fix some warnings on OSX 10 years ago
Yuri Kunde Schlesner a09f71521e GPU: Fix buffer overrun in Display Transfers
Display transfers with the horizontal downscaling flag were calculating
the wrong output size, causing them to write double the amount of data
intended. It is likely that this was perceived as correct due to a
separate bug in calculating source indices which caused the image to be
padded unless the previous bug was present.

This fixes both issues, correcting flickering issues in 3dscraft,
blargSnes and more (caused by the transfer overwriting the back buffer
which followed) as well as potentially fixing other crashes.
10 years ago
Yuri Kunde Schlesner 9e084826b8 GPU: Do periodic VBlank updates using CoreTiming 10 years ago
Yuri Kunde Schlesner e29dd76e12 GPU: Correct wrong default framebuffer address for sub-screen.
It appears this is a mistake, since the sub-screen has no right
framebuffer.
10 years ago
Yuri Kunde Schlesner 98e3274935 GPU: Fire GPU interrupts at the correct places.
PDC0 and PDC1 are both VBlank interrupts. PDC0 was being treated as a
HBlank interrupt and fired many more times than it should. They now both
fire together at 60 Hz. This puzzlingly *improves* apparent framerate on
many applications.

A few other interrupts were being fired inside the GSP command
processing instead of on the actual GPU register writes, so they were
moved there, which should cover direct writes tho those registers not
going through the GX command queue.
10 years ago
Yuri Kunde Schlesner 7b3452c730 Move ThreadContext to core/core.h and deal with the fallout 10 years ago
bunnei e9650f1c61 DSP: Signal (faked) interrupt on every frame.
- Hack to work around games checking that the DSP event has been signaled by a real DSP interrupt.
10 years ago
Tony Wasserka 18a5e888bb GPU: Pseudo-implement horizontal scaling.
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.
10 years ago
bunnei 3b9d181b8e GPU: Implement frameskip and remove forced framebuffer swap hack. 10 years ago
bunnei 5799025ac4 GPU: Further improve synchronization. 10 years ago
purpasmart96 ebfd831ccb License change 10 years ago
Yuri Kunde Schlesner 0600e2d8b5 Convert old logging calls to new logging macros 10 years ago
bunnei 170123982d GPU: Fixed bug in command list size decoding. 10 years ago
vaguilar 223e76d51d Fixed formatting and switch statement warnings 11 years ago
bunnei 01e37962e7 Merge pull request #162 from SeannyM/warning-fixes
Fix some warnings
11 years ago
Sean 9a012ff007 Fix some warnings 11 years ago
Gareth Poole 38df9e96dd Renamed souce files of services to match port names 11 years ago
archshift 09e19f9f1e Added `gpu_refresh_rate` config setting for the new interpreter speed hack. 11 years ago
archshift 0783498f57 Use configuration files to enable or disable the new dyncom interpreter. 11 years ago
Yuri Kunde Schlesner fec7f6b035 Rename GPU::Regs::FramebufferFormat to PixelFormat
This name better represents what the enum does, and is less overloaded
in the context. (The whole register the enum is part of is also called
'format'.)
11 years ago
Lioncash eb5054e6eb Fix warnings in video_core 11 years ago
Lioncash 6cc7c73b80 Core: Fix warnings in gpu.cpp 11 years ago
archshift 6e606c515f core: Prune redundant includes 11 years ago
bunnei aabfcfe6ad GPU: Improve frame synchronization, increases compatibility with both homebrew and retail applications. 11 years ago
bunnei 20d169e4a1 VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size. 11 years ago
Tony Wasserka 76a586de49 Pica: Add command processor. 11 years ago
Tony Wasserka 7b6a7d7dfb Pica/GPU: Change hardware registers to use physical addresses rather than virtual ones.
This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible.
This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though.
11 years ago
Tony Wasserka 9c781a6c76 Remove the fancy RegisterSet class introduced in 4c2bff61e.
While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures.
Instead, we now use a more conventional approach which is a lot more clean to use.
11 years ago
bunnei 0805ecbaca GPU: Updated g_last_ticks variable to be more descriptive (represents CPU tick count of last vertical line). 11 years ago
bunnei 7ada2625fe GPU: Updated horizontal sync line counter to use framebuffer height. 11 years ago
bunnei 4e9f305ed2 GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.
- Various other cleanups.
11 years ago
bunnei ec14ffe1cd GSP: Implements preliminary command synchronization via GPU interrupts.
Core: Added a comment to explain the logic for the RunLoop iterations.
11 years ago
Tony Wasserka 9fd2537e93 Use uniform formatting when printing hexadecimal numbers. 11 years ago
Tony Wasserka 2eb61dafc0 GPU: Clarify display transfer code.
Also makes the illogical component order more obvious.
11 years ago
Tony Wasserka 246cb75584 RegisterSet: Simplify code by using structs for register definition instead of unions. 11 years ago
Tony Wasserka 75775e9ef4 GPU: Make use of RegisterSet. 11 years ago
Tony Wasserka 357d893b26 GPU: Make framebuffer code format-aware. 11 years ago
Tony Wasserka 9d618d0b70 GPU: Interface cleanup. 11 years ago
Tony Wasserka 46950ee4de GPU: Initialize GPU registers to some sensible default state. 11 years ago
Tony Wasserka baf0aa04f5 GPU: Emulate memory fills. 11 years ago
Tony Wasserka 0b4055c152 GPU: Add proper framebuffer register handling. 11 years ago
Tony Wasserka bbc6f314eb GPU: Properly implement display transfers. 11 years ago
Tony Wasserka 16bbc4f81b GPU: Add display transfer configuration. 11 years ago