summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/y2r_u.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-04-27y2r_u: Cleanup some formatting.bunnei1-52/+89
2016-04-21HWRasterizer: Texture forwardingtfarley1-7/+3
2016-04-20Update the code of service y2r!JamePeng1-32/+337
2016-03-13svc: Move ResetType enum to the kernel event headerLioncash1-1/+1
2016-03-12svc: Make ResetType an enum classLioncash1-1/+1
2016-03-09renderer_base: Don't directly expose the rasterizer unique_ptrLioncash1-1/+1
There's no reason to allow direct access to the unique_ptr instance. Only its contained pointer.
2016-02-02services: Get rid of unnecessary includesLioncash1-2/+2
2015-12-30services: Update some function tablesLioncash1-0/+21
2015-12-08VideoCore: Unify interface to OpenGL and SW rasterizersYuri Kunde Schlesner1-1/+1
This removes explicit checks sprinkled all over the codebase to instead just have the SW rasterizer expose an implementation with no-ops for most operations.
2015-12-07VideoCore: Rename HWRasterizer methods to be less confusingYuri Kunde Schlesner1-1/+1
2015-08-16Memory: Move address type conversion routines to memory.cpp/hYuri Kunde Schlesner1-1/+0
These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next.
2015-07-17Ensure all kernel objects are released during shutdownYuri Kunde Schlesner1-0/+4
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.
2015-06-28CitraQt: Cleanup includes.Emmanuel Gil Peyrot1-0/+1
2015-06-23Add helpers to create IPC command buffer headers and descriptorsYuri Kunde Schlesner1-5/+5
2015-06-22Y2R: Rework conversion process, enabling support for all formatsYuri Kunde Schlesner1-163/+213
2015-06-21Y2R: Re-organize how params are stored. Support SetConversionParamsYuri Kunde Schlesner1-72/+100
2015-05-23y2r_u: Remove unused variable in StartConversionLioncash1-1/+0
2015-05-23Flush for y2r (moflex)tfarley1-0/+11
2015-05-22Service::Y2R: Support for grayscale decoding of specific formatsYuri Kunde Schlesner1-35/+265
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.
2015-05-21y2r_u: Stub StartConversion to prevent moflex games from hanging.bunnei1-1/+17
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-0/+2
2015-05-02Services: Initialize all state variables at bootup.bunnei1-1/+1
2015-02-24Services: Implemented Y2R_U::GetTransferEndEventSubv1-1/+18
Aero Porter was throwing an "Invalid Handle" fatal error without this.
2015-02-11Asserts: break/crash program, fit to style guide; log.h->assert.harchshift1-1/+0
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.
2015-02-02Service: Clean-up InterfaceYuri Kunde Schlesner1-1/+1
2015-01-11Stubbed y2r:u IsBusyConversionarchshift1-1/+16
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.
2015-01-03Stub the y2r:u servicearchshift1-0/+45