aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/y2r_u.cpp
Commit message (Collapse)AuthorAge
* Ensure all kernel objects are released during shutdownGravatar Yuri Kunde Schlesner2015-07-17
| | | | | | | | This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
* CitraQt: Cleanup includes.Gravatar Emmanuel Gil Peyrot2015-06-28
|
* Add helpers to create IPC command buffer headers and descriptorsGravatar Yuri Kunde Schlesner2015-06-22
|
* Y2R: Rework conversion process, enabling support for all formatsGravatar Yuri Kunde Schlesner2015-06-21
|
* Y2R: Re-organize how params are stored. Support SetConversionParamsGravatar Yuri Kunde Schlesner2015-06-20
|
* y2r_u: Remove unused variable in StartConversionGravatar Lioncash2015-05-23
|
* Flush for y2r (moflex)Gravatar tfarley2015-05-22
|
* Service::Y2R: Support for grayscale decoding of specific formatsGravatar Yuri Kunde Schlesner2015-05-22
| | | | | | | | | | | | Implements unrotated planar YUV 4:2:0 -> RGB24 conversions in Y2R. Currently only the Y (luma) channel is used, so the results don't contain color. This will be added in a later PR at some point. This is enough to get all currently know Moflex videos to decode. (Some don't display on-screen due to seemingly unrelated reasons.) Thanks to @archshift for doing the initial implementation which I cleaned up and then fixed the 8x8 block mode.
* y2r_u: Stub StartConversion to prevent moflex games from hanging.Gravatar bunnei2015-05-20
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Services: Initialize all state variables at bootup.Gravatar bunnei2015-05-01
|
* Services: Implemented Y2R_U::GetTransferEndEventGravatar Subv2015-02-24
| | | | Aero Porter was throwing an "Invalid Handle" fatal error without this.
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Service: Clean-up InterfaceGravatar Yuri Kunde Schlesner2015-02-02
|
* Stubbed y2r:u IsBusyConversionGravatar archshift2015-01-10
| | | | | There is no documentation available on this function, but we set the result to false as a stub. This allows Super Little Acorns to move all the way in game with pp3c.
* Stub the y2r:u serviceGravatar archshift2015-01-03