Lines Matching defs:height_
57 sfDev_->GetScreenSize(width_, height_, surface);
64 LOG(INFO) << "GraphicEngine Init width: " << width_ << ", height: " << height_ << ", bkgColor: " << bkgColor_;
115 (void)memset_s(buffInfo_->virAddr, width_ * height_ * pixelBytes, 0, width_ * height_ * pixelBytes);
142 if ((width_ == 0) || (height_ == 0)) {
143 LOG(ERROR) << "input error, width: " << width_ << ", height: " << height_;
146 UiRotation::GetInstance().InitRotation(width_, height_, pixelBytes);
148 height_ = UiRotation::GetInstance().GetHeight();
149 virAddr_ = std::make_unique<uint8_t[]>(width_ * height_ * pixelBytes);
151 buffInfo_->rect = { 0, 0, static_cast<int16_t>(width_ - 1), static_cast<int16_t>(height_ - 1) };
158 buffInfo_->height = height_;
181 return height_;