mirror of
https://codeberg.org/yuzu-emu/yuzu.git
synced 2025-12-16 12:09:04 +00:00
service/am: Implement CreateManagedDisplaySeparableLayer
- Removes STUBBED designation as implementation is now complete - Changes log level from WARNING to DEBUG - Adds proper locking when accessing the display layer manager - Fixes parameter alignment in function declaration
This commit is contained in:
parent
a221fa295a
commit
01a45b4abc
@ -262,8 +262,8 @@ Result ISelfController::CreateManagedDisplayLayer(Out<u64> out_layer_id) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Result ISelfController::CreateManagedDisplaySeparableLayer(Out<u64> out_layer_id,
|
Result ISelfController::CreateManagedDisplaySeparableLayer(Out<u64> out_layer_id,
|
||||||
Out<u64> out_recording_layer_id) {
|
Out<u64> out_recording_layer_id) {
|
||||||
LOG_WARNING(Service_AM, "(STUBBED) called");
|
LOG_DEBUG(Service_AM, "called");
|
||||||
|
|
||||||
std::scoped_lock lk{m_applet->lock};
|
std::scoped_lock lk{m_applet->lock};
|
||||||
R_RETURN(m_applet->display_layer_manager.CreateManagedDisplaySeparableLayer(
|
R_RETURN(m_applet->display_layer_manager.CreateManagedDisplaySeparableLayer(
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user