aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/y2r_u.cpp
AgeCommit message (Collapse)Author
2017-10-10hle: Remove a large amount of 3ds-specific service code.bunnei
2017-06-21Memory: Add function to flush a virtual range from the rasterizer cacheYuri Kunde Schlesner
This is slightly more ergonomic to use, correctly handles virtual regions which are disjoint in physical addressing space, and checks only regions which can be cached by the rasterizer.
2017-06-18ResultVal: Remove MoveFrom()Yuri Kunde Schlesner
Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
2017-06-06Service: Remove unnecessary includes from service.hYuri Kunde Schlesner
This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
2017-03-18fix #2560 and other commentsLectem
2017-03-18move push out of class body and add u8 u16 bool specializationsLectem
2017-02-05Merge pull request #2027 from Lectem/ipcrefactorWeiyi Wang
IPC helper
2017-01-11Y2R: Use the proper error code when GetStandardCoefficient receives an ↵Subv
invalid value.
2016-12-26IPC helpers exampleLectem
2016-12-11Add all services to the Service namespaceLioncash
Previously there was a split where some of the services were in the Service namespace and others were not.
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot
2016-04-26y2r_u: Cleanup some formatting.bunnei
2016-04-26Merge pull request #1447 from JamePeng/update-y2r-servicebunnei
Update the code of service y2r!
2016-04-21HWRasterizer: Texture forwardingtfarley
2016-04-20Update the code of service y2r!JamePeng
2016-03-12svc: Move ResetType enum to the kernel event headerLioncash
2016-03-12svc: Make ResetType an enum classLioncash
2016-03-08renderer_base: Don't directly expose the rasterizer unique_ptrLioncash
There's no reason to allow direct access to the unique_ptr instance. Only its contained pointer.
2016-02-02services: Get rid of unnecessary includesLioncash
2015-12-30services: Update some function tablesLioncash
2015-12-07VideoCore: Unify interface to OpenGL and SW rasterizersYuri Kunde Schlesner
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-06VideoCore: Rename HWRasterizer methods to be less confusingYuri Kunde Schlesner
2015-08-16Memory: Move address type conversion routines to memory.cpp/hYuri Kunde Schlesner
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 Schlesner
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 Peyrot
2015-06-22Add helpers to create IPC command buffer headers and descriptorsYuri Kunde Schlesner
2015-06-21Y2R: Rework conversion process, enabling support for all formatsYuri Kunde Schlesner
2015-06-20Y2R: Re-organize how params are stored. Support SetConversionParamsYuri Kunde Schlesner
2015-05-23y2r_u: Remove unused variable in StartConversionLioncash
2015-05-22Flush for y2r (moflex)tfarley
2015-05-22Service::Y2R: Support for grayscale decoding of specific formatsYuri Kunde Schlesner
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-20y2r_u: Stub StartConversion to prevent moflex games from hanging.bunnei
2015-05-07Common: Remove common.hYuri Kunde Schlesner
2015-05-01Services: Initialize all state variables at bootup.bunnei
2015-02-24Services: Implemented Y2R_U::GetTransferEndEventSubv
Aero Porter was throwing an "Invalid Handle" fatal error without this.
2015-02-10Asserts: break/crash program, fit to style guide; log.h->assert.harchshift
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 Schlesner
2015-01-10Stubbed y2r:u IsBusyConversionarchshift
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 servicearchshift