Lines Matching refs:width_
56 sfDev_->GetScreenSize(width_, height_, surface); in Init()
63 …LOG(INFO) << "GraphicEngine Init width: " << width_ << ", height: " << height_ << ", bkgColor: " <… in Init()
122 if ((width_ == 0) || (height_ == 0)) { in GetFBBufferInfo()
123 LOG(ERROR) << "input error, width: " << width_ << ", height: " << height_; in GetFBBufferInfo()
126 UiRotation::GetInstance().InitRotation(width_, height_, pixelBytes); in GetFBBufferInfo()
127 width_ = UiRotation::GetInstance().GetWidth(); in GetFBBufferInfo()
129 virAddr_ = std::make_unique<uint8_t[]>(width_ * height_ * pixelBytes); in GetFBBufferInfo()
131 buffInfo_->rect = { 0, 0, static_cast<int16_t>(width_ - 1), static_cast<int16_t>(height_ - 1) }; in GetFBBufferInfo()
136 buffInfo_->stride = static_cast<uint32_t>(width_ * pixelBytes); in GetFBBufferInfo()
137 buffInfo_->width = width_; in GetFBBufferInfo()
156 return width_; in GetScreenWidth()