1
0
Fork 0
forked from wry/wry

drm: add ObjectChangeValue

This commit is contained in:
Julian Orth 2025-07-10 11:10:07 +02:00
parent b8d4eeb8e4
commit e95e764b46
4 changed files with 55 additions and 25 deletions

View file

@ -252,7 +252,7 @@ impl Backend for MetalBackend {
{
crtc.active.value.set(!idle);
change.change_object(crtc.id, |c| {
c.change(crtc.active.id, (!idle) as _);
c.change(crtc.active.id, !idle);
});
}
}