Lines Matching refs:pset
242 auto DrmPlane::AtomicSetState(drmModeAtomicReq &pset, LayerData &layer, in AtomicSetState() argument
255 if (!zpos_property_.AtomicSet(pset, zpos + min_zpos)) { in AtomicSetState()
261 !in_fence_fd_property_.AtomicSet(pset, layer.acquire_fence.Get())) { in AtomicSetState()
267 if (!crtc_property_.AtomicSet(pset, crtc_id) || in AtomicSetState()
268 !fb_property_.AtomicSet(pset, layer.fb->GetFbId()) || in AtomicSetState()
269 !crtc_x_property_.AtomicSet(pset, disp.left) || in AtomicSetState()
270 !crtc_y_property_.AtomicSet(pset, disp.top) || in AtomicSetState()
271 !crtc_w_property_.AtomicSet(pset, disp.right - disp.left) || in AtomicSetState()
272 !crtc_h_property_.AtomicSet(pset, disp.bottom - disp.top) || in AtomicSetState()
273 !src_x_property_.AtomicSet(pset, To1616FixPt(src.left)) || in AtomicSetState()
274 !src_y_property_.AtomicSet(pset, To1616FixPt(src.top)) || in AtomicSetState()
275 !src_w_property_.AtomicSet(pset, To1616FixPt(src.right - src.left)) || in AtomicSetState()
276 !src_h_property_.AtomicSet(pset, To1616FixPt(src.bottom - src.top))) { in AtomicSetState()
281 !rotation_property_.AtomicSet(pset, ToDrmRotation(layer.pi.transform))) { in AtomicSetState()
285 if (alpha_property_ && !alpha_property_.AtomicSet(pset, layer.pi.alpha)) { in AtomicSetState()
290 !blend_property_.AtomicSet(pset, in AtomicSetState()
297 .AtomicSet(pset, color_encoding_enum_map_[layer.bi->color_space])) { in AtomicSetState()
303 .AtomicSet(pset, color_range_enum_map_[layer.bi->sample_range])) { in AtomicSetState()
310 auto DrmPlane::AtomicDisablePlane(drmModeAtomicReq &pset) -> int { in AtomicDisablePlane() argument
311 if (!crtc_property_.AtomicSet(pset, 0) || !fb_property_.AtomicSet(pset, 0)) { in AtomicDisablePlane()