Home | History | Annotate | Download | only in hwc2

Lines Matching refs:x_pixels

543       width != variable_config.x_pixels || height != variable_config.y_pixels) {
585 *out_value = INT32(variable_config.x_pixels);
1282 int HWCDisplay::SetFrameBufferResolution(uint32_t x_pixels, uint32_t y_pixels) {
1283 if (x_pixels <= 0 || y_pixels <= 0) {
1284 DLOGW("Unsupported config: x_pixels=%d, y_pixels=%d", x_pixels, y_pixels);
1295 fb_config.x_pixels = x_pixels;
1305 LayerRect crop = LayerRect(0, 0, FLOAT(x_pixels), FLOAT(y_pixels));
1306 LayerRect dst = LayerRect(0, 0, FLOAT(fb_config.x_pixels), FLOAT(fb_config.y_pixels));
1322 AdrenoMemInfo::getInstance().getAlignedWidthAndHeight(INT(x_pixels), INT(y_pixels), format, usage,
1332 DLOGI("New framebuffer resolution (%dx%d)", fb_config.x_pixels, fb_config.y_pixels);
1337 void HWCDisplay::GetFrameBufferResolution(uint32_t *x_pixels, uint32_t *y_pixels) {
1341 *x_pixels = fb_config.x_pixels;
1345 DisplayError HWCDisplay::GetMixerResolution(uint32_t *x_pixels, uint32_t *y_pixels) {
1346 return display_intf_->GetMixerResolution(x_pixels, y_pixels);
1349 void HWCDisplay::GetPanelResolution(uint32_t *x_pixels, uint32_t *y_pixels) {
1356 *x_pixels = display_config.x_pixels;