Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks
Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
This commit is contained in:
@ -35,7 +35,6 @@ Error ImageLoaderBMP::convert_to_image(Ref<Image> p_image,
|
||||
const uint8_t *p_color_buffer,
|
||||
const uint32_t color_table_size,
|
||||
const bmp_header_s &p_header) {
|
||||
|
||||
Error err = OK;
|
||||
|
||||
if (p_buffer == nullptr)
|
||||
@ -60,7 +59,6 @@ Error ImageLoaderBMP::convert_to_image(Ref<Image> p_image,
|
||||
ERR_FAIL_COND_V(height % 2 != 0, ERR_UNAVAILABLE);
|
||||
|
||||
} else if (bits_per_pixel == 16) {
|
||||
|
||||
ERR_FAIL_V(ERR_UNAVAILABLE);
|
||||
}
|
||||
|
||||
@ -201,7 +199,6 @@ Error ImageLoaderBMP::convert_to_image(Ref<Image> p_image,
|
||||
|
||||
Error ImageLoaderBMP::load_image(Ref<Image> p_image, FileAccess *f,
|
||||
bool p_force_linear, float p_scale) {
|
||||
|
||||
bmp_header_s bmp_header;
|
||||
Error err = ERR_INVALID_DATA;
|
||||
|
||||
@ -290,7 +287,6 @@ Error ImageLoaderBMP::load_image(Ref<Image> p_image, FileAccess *f,
|
||||
|
||||
void ImageLoaderBMP::get_recognized_extensions(
|
||||
List<String> *p_extensions) const {
|
||||
|
||||
p_extensions->push_back("bmp");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user