Home
last modified time | relevance | path

Searched refs:y_res (Results 1 – 24 of 24) sorted by relevance

/device/google/cuttlefish_common/guest/hals/gralloc/
Dgralloc_vsoc_priv.h40 int y_res; member
59 int y_res, in vsoc_buffer_handle_t()
65 y_res(y_res), in vsoc_buffer_handle_t()
/device/google/cuttlefish_common/common/vsoc/lib/
Dscreen_region_view.h43 int y_res() const { return data().y_res; } in y_res() function
60 return (align(x_res() * bytes_per_pixel()) * y_res()) + kSwiftShaderPadding; in buffer_size()
/device/google/cuttlefish_common/guest/hals/hwcomposer/cutf_cvm/
Dbase_composer.h39 int32_t y_res();
77 int32_t y_res() { in y_res() function
78 return frame_buffer_.y_res(); in y_res()
Dbase_composer.cpp49 p_handle->x_res, p_handle->y_res, &buffer); in PostFrameBufferTarget()
157 return (line_length() * y_res()) + 4; in buffer_size()
160 int32_t FrameBuffer::y_res() { return y_res_; } in y_res() function in cvd::FrameBuffer
Dvsoc_composer.cpp320 src_priv_handle->x_res, src_priv_handle->y_res, in CompositeLayer()
334 src_priv_handle->x_res, src_priv_handle->y_res, in CompositeLayer()
346 frame_buffer_.x_res(), frame_buffer_.y_res(), in CompositeLayer()
373 int y_res = src_layer->displayFrame.bottom - src_layer->displayFrame.top; in CompositeLayer() local
376 cvd::AlignToPowerOf2(y_res * frame_buffer_.bytes_per_pixel(), 4); in CompositeLayer()
379 x_res, y_res, in CompositeLayer()
Dhwcomposer.cpp151 layer.sourceCrop.bottom > p_handle->y_res) { in IsValidLayer()
158 p_handle->y_res); in IsValidLayer()
370 return pdev->composer->y_res();
/device/google/cuttlefish_common/host/commands/launch/
Dscreen_region_handler.cc32 dest->y_res = config.y_res(); in InitializeScreenRegion()
Dlaunch.cc113 cvd::AlignToPageSize(actual_width * config.y_res() + 16 /* padding */); in GetIvServerCommand()
Dflags.cc46 DEFINE_int32(y_res, 1280, "Height of the screen in pixels");
/device/google/cuttlefish_common/guest/hals/gralloc/legacy/
Dgralloc_vsoc_priv.h73 int y_res; member
86 private_handle_t(int fd, int size, int format, int x_res, int y_res,
93 y_res(y_res), in fd()
Dframebuffer.cpp94 p_handle->x_res, p_handle->y_res, &buffer); in fb_post()
143 const_cast<uint32_t&>(dev->device.height) = screen_view->y_res(); in fb_device_open()
Dmapper.cpp122 formatToYcbcr(hnd->format, hnd->x_res, hnd->y_res, base, ycbcr); in gralloc_lock_ycbcr()
Dregion_registry.cpp206 hnd->x_res, hnd->y_res); in reference_region()
/device/google/cuttlefish_common/guest/hals/hwcomposer/vsoc/
Dvsoc_composer.cpp322 src_priv_handle->x_res, src_priv_handle->y_res, in CompositeLayer()
336 src_priv_handle->x_res, src_priv_handle->y_res, in CompositeLayer()
349 screen_view->x_res(), screen_view->y_res(), in CompositeLayer()
376 int y_res = src_layer->displayFrame.bottom - src_layer->displayFrame.top; in CompositeLayer() local
379 ScreenRegionView::align(y_res * screen_view->bytes_per_pixel(), 16); in CompositeLayer()
382 x_res, y_res, in CompositeLayer()
Dhwcomposer.cpp159 layer.sourceCrop.bottom > p_handle->y_res) { in IsValidLayer()
166 p_handle->y_res); in IsValidLayer()
379 return screen_view->y_res();
Dbase_composer.cpp76 p_handle->x_res, p_handle->y_res, &buffer); in PostFrameBufferTarget()
/device/google/cuttlefish_common/common/vsoc/shm/
Dscreen_layout.h57 uint32_t y_res; member
/device/google/cuttlefish_common/guest/hals/hwcomposer/vsoc-future/
Dhwcomposer.cpp66 layer.sourceCrop.bottom > p_handle->y_res) { in SanityCheckLayer()
73 p_handle->y_res); in SanityCheckLayer()
259 return screen_view->y_res(); in vsoc_hwc_attribute()
/device/google/cuttlefish_common/host/frontend/vnc_server/
Dvnc_utils.h83 return vsoc::CuttlefishConfig::Get()->y_res(); in ActualScreenHeight()
Dscreen_connector.cpp118 screen_params[1] = config_->y_res(); in SendScreenParameters()
/device/google/cuttlefish_common/guest/commands/vsoc_input_service/
Dvsoc_input_service.cpp74 new VirtualTouchScreen(screen_view->x_res(), screen_view->y_res())); in SetUpDevices()
/device/google/cuttlefish_common/host/libs/config/
Dcuttlefish_config.h78 int y_res() const;
79 void set_y_res(int y_res);
Dcuttlefish_config.cpp210 int CuttlefishConfig::y_res() const { return (*dictionary_)[kYRes].asInt(); } in y_res() function in vsoc::CuttlefishConfig
211 void CuttlefishConfig::set_y_res(int y_res) { (*dictionary_)[kYRes] = y_res; } in set_y_res() argument
/device/google/cuttlefish_common/host/libs/vm_manager/
Dcrosvm_manager.cpp102 config_->x_res(), ":", config_->y_res()); in StartCommand()