1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 11:17:15 +03:00

Fix compiler warning by moving x86-64 specific variable into the guard

This commit is contained in:
Jeremy Fitzhardinge 2020-11-09 00:26:41 -08:00 committed by Wez Furlong
parent bf962c8b1a
commit e95c7ad855

View File

@ -247,10 +247,9 @@ pub trait BitmapImage {
/// Clear the entire image to the specific color
fn clear(&mut self, color: Color) {
let (width, height) = self.image_dimensions();
#[cfg(target_arch = "x86_64")]
{
let (width, height) = self.image_dimensions();
if is_x86_feature_detected!("avx") && width >= 8 {
unsafe {
avx::fill_pixel(self.pixel_data_mut(), width * 4, width, height, color);