Skip to content

Commit 8013b17

Browse files
committed
Cleanup - remove some ;; instances
1 parent c616ca4 commit 8013b17

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Source/astcenc_find_best_partitioning.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static void kmeans_update(
229229
for (unsigned int i = 0; i < texel_count; i++)
230230
{
231231
uint8_t partition = partition_of_texel[i];
232-
color_sum[partition] += blk.texel(i);;
232+
color_sum[partition] += blk.texel(i);
233233
partition_texel_count[partition]++;
234234
}
235235

Source/astcenc_image.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ void fetch_image_block(
255255
data_enc_lns = float16_to_float(lns_to_sf16(float_to_int(data_enc)));
256256
}
257257

258-
blk.origin_texel = select(data_enc_unorm, data_enc_lns, lns_mask);;
258+
blk.origin_texel = select(data_enc_unorm, data_enc_lns, lns_mask);
259259

260260
// Store block metadata
261261
blk.data_min = data_min;

Source/astcenccli_image_load_store.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1706,7 +1706,7 @@ static astcenc_image* load_dds_uncompressed_image(
17061706
// The bytes per component in the DDS file itself
17071707
int bytes_per_component = 0;
17081708
int components = 0;
1709-
scanline_transfer copy_method = R8_TO_RGBA8;;
1709+
scanline_transfer copy_method = R8_TO_RGBA8;
17101710

17111711
// figure out the format actually used in the DDS file.
17121712
if (use_dx10_header)

0 commit comments

Comments
 (0)