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:
@ -95,7 +95,6 @@ static const DDSFormatInfo dds_format_info[DDS_MAX] = {
|
||||
};
|
||||
|
||||
RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress, bool p_no_cache) {
|
||||
|
||||
if (r_error)
|
||||
*r_error = ERR_CANT_OPEN;
|
||||
|
||||
@ -126,7 +125,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
//validate
|
||||
|
||||
if (magic != DDS_MAGIC || hsize != 124 || !(flags & DDSD_PIXELFORMAT) || !(flags & DDSD_CAPS)) {
|
||||
|
||||
ERR_FAIL_V_MSG(RES(), "Invalid or unsupported DDS texture file '" + p_path + "'.");
|
||||
}
|
||||
|
||||
@ -163,58 +161,41 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
DDSFormat dds_format;
|
||||
|
||||
if (format_flags & DDPF_FOURCC && format_fourcc == PF_FOURCC("DXT1")) {
|
||||
|
||||
dds_format = DDS_DXT1;
|
||||
} else if (format_flags & DDPF_FOURCC && format_fourcc == PF_FOURCC("DXT3")) {
|
||||
|
||||
dds_format = DDS_DXT3;
|
||||
|
||||
} else if (format_flags & DDPF_FOURCC && format_fourcc == PF_FOURCC("DXT5")) {
|
||||
|
||||
dds_format = DDS_DXT5;
|
||||
} else if (format_flags & DDPF_FOURCC && format_fourcc == PF_FOURCC("ATI1")) {
|
||||
|
||||
dds_format = DDS_ATI1;
|
||||
} else if (format_flags & DDPF_FOURCC && format_fourcc == PF_FOURCC("ATI2")) {
|
||||
|
||||
dds_format = DDS_ATI2;
|
||||
} else if (format_flags & DDPF_FOURCC && format_fourcc == PF_FOURCC("A2XY")) {
|
||||
|
||||
dds_format = DDS_A2XY;
|
||||
|
||||
} else if (format_flags & DDPF_RGB && format_flags & DDPF_ALPHAPIXELS && format_rgb_bits == 32 && format_red_mask == 0xff0000 && format_green_mask == 0xff00 && format_blue_mask == 0xff && format_alpha_mask == 0xff000000) {
|
||||
|
||||
dds_format = DDS_BGRA8;
|
||||
} else if (format_flags & DDPF_RGB && !(format_flags & DDPF_ALPHAPIXELS) && format_rgb_bits == 24 && format_red_mask == 0xff0000 && format_green_mask == 0xff00 && format_blue_mask == 0xff) {
|
||||
|
||||
dds_format = DDS_BGR8;
|
||||
} else if (format_flags & DDPF_RGB && format_flags & DDPF_ALPHAPIXELS && format_rgb_bits == 32 && format_red_mask == 0xff && format_green_mask == 0xff00 && format_blue_mask == 0xff0000 && format_alpha_mask == 0xff000000) {
|
||||
|
||||
dds_format = DDS_RGBA8;
|
||||
} else if (format_flags & DDPF_RGB && !(format_flags & DDPF_ALPHAPIXELS) && format_rgb_bits == 24 && format_red_mask == 0xff && format_green_mask == 0xff00 && format_blue_mask == 0xff0000) {
|
||||
|
||||
dds_format = DDS_RGB8;
|
||||
|
||||
} else if (format_flags & DDPF_RGB && format_flags & DDPF_ALPHAPIXELS && format_rgb_bits == 16 && format_red_mask == 0x00007c00 && format_green_mask == 0x000003e0 && format_blue_mask == 0x0000001f && format_alpha_mask == 0x00008000) {
|
||||
|
||||
dds_format = DDS_BGR5A1;
|
||||
} else if (format_flags & DDPF_RGB && format_flags & DDPF_ALPHAPIXELS && format_rgb_bits == 32 && format_red_mask == 0x3ff00000 && format_green_mask == 0xffc00 && format_blue_mask == 0x3ff && format_alpha_mask == 0xc0000000) {
|
||||
|
||||
dds_format = DDS_BGR10A2;
|
||||
} else if (format_flags & DDPF_RGB && !(format_flags & DDPF_ALPHAPIXELS) && format_rgb_bits == 16 && format_red_mask == 0x0000f800 && format_green_mask == 0x000007e0 && format_blue_mask == 0x0000001f) {
|
||||
|
||||
dds_format = DDS_BGR565;
|
||||
} else if (!(format_flags & DDPF_ALPHAPIXELS) && format_rgb_bits == 8 && format_red_mask == 0xff && format_green_mask == 0xff && format_blue_mask == 0xff) {
|
||||
|
||||
dds_format = DDS_LUMINANCE;
|
||||
} else if ((format_flags & DDPF_ALPHAPIXELS) && format_rgb_bits == 16 && format_red_mask == 0xff && format_green_mask == 0xff && format_blue_mask == 0xff && format_alpha_mask == 0xff00) {
|
||||
|
||||
dds_format = DDS_LUMINANCE_ALPHA;
|
||||
} else if (format_flags & DDPF_INDEXED && format_rgb_bits == 8) {
|
||||
|
||||
dds_format = DDS_BGR565;
|
||||
} else {
|
||||
|
||||
printf("unrecognized fourcc %x format_flags: %x - rgbbits %i - red_mask %x green mask %x blue mask %x alpha mask %x\n", format_fourcc, format_flags, format_rgb_bits, format_red_mask, format_green_mask, format_blue_mask, format_alpha_mask);
|
||||
ERR_FAIL_V_MSG(RES(), "Unrecognized or unsupported color layout in DDS '" + p_path + "'.");
|
||||
}
|
||||
@ -236,7 +217,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
ERR_FAIL_COND_V(!(flags & DDSD_LINEARSIZE), RES());
|
||||
|
||||
for (uint32_t i = 1; i < mipmaps; i++) {
|
||||
|
||||
w = MAX(1, w >> 1);
|
||||
h = MAX(1, h >> 1);
|
||||
uint32_t bsize = MAX(info.divisor, w) / info.divisor * MAX(info.divisor, h) / info.divisor * info.block_size;
|
||||
@ -249,7 +229,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
f->get_buffer(wb, size);
|
||||
|
||||
} else if (info.palette) {
|
||||
|
||||
//indexed
|
||||
ERR_FAIL_COND_V(!(flags & DDSD_PITCH), RES());
|
||||
ERR_FAIL_COND_V(format_rgb_bits != 8, RES());
|
||||
@ -262,7 +241,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
|
||||
int colsize = 3;
|
||||
for (int i = 0; i < 256; i++) {
|
||||
|
||||
if (palette[i * 4 + 3] < 255)
|
||||
colsize = 4;
|
||||
}
|
||||
@ -271,7 +249,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
int h2 = height;
|
||||
|
||||
for (uint32_t i = 1; i < mipmaps; i++) {
|
||||
|
||||
w2 = (w2 + 1) >> 1;
|
||||
h2 = (h2 + 1) >> 1;
|
||||
size += w2 * h2 * info.block_size;
|
||||
@ -282,7 +259,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
f->get_buffer(wb, size);
|
||||
|
||||
for (int i = 0; i < 256; i++) {
|
||||
|
||||
int dst_ofs = size + i * colsize;
|
||||
int src_ofs = i * 4;
|
||||
wb[dst_ofs + 0] = palette[src_ofs + 2];
|
||||
@ -297,7 +273,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
uint32_t size = width * height * info.block_size;
|
||||
|
||||
for (uint32_t i = 1; i < mipmaps; i++) {
|
||||
|
||||
w = (w + 1) >> 1;
|
||||
h = (h + 1) >> 1;
|
||||
size += w * h * info.block_size;
|
||||
@ -313,14 +288,11 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
f->get_buffer(wb, size);
|
||||
|
||||
switch (dds_format) {
|
||||
|
||||
case DDS_BGR5A1: {
|
||||
|
||||
// TO RGBA
|
||||
int colcount = size / 4;
|
||||
|
||||
for (int i = colcount - 1; i >= 0; i--) {
|
||||
|
||||
int src_ofs = i * 2;
|
||||
int dst_ofs = i * 4;
|
||||
|
||||
@ -335,11 +307,9 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
}
|
||||
} break;
|
||||
case DDS_BGR565: {
|
||||
|
||||
int colcount = size / 3;
|
||||
|
||||
for (int i = colcount - 1; i >= 0; i--) {
|
||||
|
||||
int src_ofs = i * 2;
|
||||
int dst_ofs = i * 3;
|
||||
|
||||
@ -353,12 +323,10 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
|
||||
} break;
|
||||
case DDS_BGR10A2: {
|
||||
|
||||
// TO RGBA
|
||||
int colcount = size / 4;
|
||||
|
||||
for (int i = colcount - 1; i >= 0; i--) {
|
||||
|
||||
int ofs = i * 4;
|
||||
|
||||
uint32_t w32 = uint32_t(wb[ofs + 0]) | (uint32_t(wb[ofs + 1]) << 8) | (uint32_t(wb[ofs + 2]) << 16) | (uint32_t(wb[ofs + 3]) << 24);
|
||||
@ -375,26 +343,21 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
}
|
||||
} break;
|
||||
case DDS_BGRA8: {
|
||||
|
||||
int colcount = size / 4;
|
||||
|
||||
for (int i = 0; i < colcount; i++) {
|
||||
|
||||
SWAP(wb[i * 4 + 0], wb[i * 4 + 2]);
|
||||
}
|
||||
|
||||
} break;
|
||||
case DDS_BGR8: {
|
||||
|
||||
int colcount = size / 3;
|
||||
|
||||
for (int i = 0; i < colcount; i++) {
|
||||
|
||||
SWAP(wb[i * 3 + 0], wb[i * 3 + 2]);
|
||||
}
|
||||
} break;
|
||||
case DDS_RGBA8: {
|
||||
|
||||
/* do nothing either
|
||||
int colcount = size/4;
|
||||
|
||||
@ -413,7 +376,6 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
*/
|
||||
} break;
|
||||
case DDS_RGB8: {
|
||||
|
||||
// do nothing
|
||||
/*
|
||||
int colcount = size/3;
|
||||
@ -424,12 +386,10 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
}*/
|
||||
} break;
|
||||
case DDS_LUMINANCE: {
|
||||
|
||||
// do nothing i guess?
|
||||
|
||||
} break;
|
||||
case DDS_LUMINANCE_ALPHA: {
|
||||
|
||||
// do nothing i guess?
|
||||
|
||||
} break;
|
||||
@ -451,17 +411,14 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path,
|
||||
}
|
||||
|
||||
void ResourceFormatDDS::get_recognized_extensions(List<String> *p_extensions) const {
|
||||
|
||||
p_extensions->push_back("dds");
|
||||
}
|
||||
|
||||
bool ResourceFormatDDS::handles_type(const String &p_type) const {
|
||||
|
||||
return ClassDB::is_parent_class(p_type, "Texture2D");
|
||||
}
|
||||
|
||||
String ResourceFormatDDS::get_resource_type(const String &p_path) const {
|
||||
|
||||
if (p_path.get_extension().to_lower() == "dds")
|
||||
return "ImageTexture";
|
||||
return "";
|
||||
|
||||
Reference in New Issue
Block a user