summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/y2r_u.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-10-10hle: Remove a large amount of 3ds-specific service code.bunnei1-787/+0
2017-06-22Memory: Add function to flush a virtual range from the rasterizer cacheYuri Kunde Schlesner1-2/+2
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-19ResultVal: Remove MoveFrom()Yuri Kunde Schlesner1-1/+1
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 Schlesner1-0/+2
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 commentsLectem1-1/+1
2017-03-18move push out of class body and add u8 u16 bool specializationsLectem1-5/+3
2017-01-11Y2R: Use the proper error code when GetStandardCoefficient receives an invalid value.Subv1-1/+3
2016-12-26IPC helpers exampleLectem1-23/+24
2016-12-11Add all services to the Service namespaceLioncash1-55/+51
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 Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+1
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-2/+2
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-70/+85
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