Skip to content
  • Roman Stratiienko's avatar
    drm_hwcomposer: Update code formatting rules · 45f07cd4
    Roman Stratiienko authored
    
    
    Run:
    $ clang-format-11 --style=Google --dump-config > .clang-format
    
    New format style has a lot of improvements, like better wrapping:
    '''
    -  auto mode = std::find_if(connector_->modes().begin(),
    -                           connector_->modes().end(),
    -                           [config](DrmMode const &m) {
    -                             return m.id() == config;
    -                           });
    +  auto mode =
    +      std::find_if(connector_->modes().begin(), connector_->modes().end(),
    +                   [config](DrmMode const &m) { return m.id() == config; });
    '''
    
    It also allow putting single-statement blocks into a single line:
    '''
    -  if (modes)
    -    *modes = HAL_COLOR_MODE_NATIVE;
    +  if (modes) *modes = HAL_COLOR_MODE_NATIVE;
    '''
    or even
    '''
    -uint32_t DrmConnector::mm_width() const {
    -  return mm_width_;
    -}
    +uint32_t DrmConnector::mm_width() const { return mm_width_; }
    '''
    
    Keep code unchanged, so the new formatting rules will be applied only
    to the new changes.
    
    Signed-off-by: default avatarRoman Stratiienko <r.stratiienko@gmail.com>
    45f07cd4