Clean Makefile indentation.
This commit is contained in:
parent
c918ca5504
commit
20055e22c5
10
Makefile
10
Makefile
|
@ -1,8 +1,8 @@
|
||||||
CXX = clang++
|
CXX = clang++
|
||||||
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g -Werror
|
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g -Werror
|
||||||
DEFINES = -DSIMD
|
DEFINES = -DSIMD
|
||||||
BUILD_DIR=/tmp
|
BUILD_DIR = /tmp
|
||||||
IMG=img/lena.ppm
|
IMG = img/lena.ppm
|
||||||
|
|
||||||
all: rotation.cpp
|
all: rotation.cpp
|
||||||
$(CXX) $(CXXFLAGS) $(DEFINES) $< -o $(BUILD_DIR)/rotation
|
$(CXX) $(CXXFLAGS) $(DEFINES) $< -o $(BUILD_DIR)/rotation
|
||||||
|
|
|
@ -766,7 +766,6 @@ void rotate_pixel(TiledImage<W, H> const& src,
|
||||||
rot_tile[1] = _mm_extract_epi16(top, 1) + _mm_extract_epi16(top, 5);
|
rot_tile[1] = _mm_extract_epi16(top, 1) + _mm_extract_epi16(top, 5);
|
||||||
rot_tile[2] = _mm_extract_epi16(top, 2) + _mm_extract_epi16(top, 6);
|
rot_tile[2] = _mm_extract_epi16(top, 2) + _mm_extract_epi16(top, 6);
|
||||||
|
|
||||||
|
|
||||||
#endif // ! SIMD
|
#endif // ! SIMD
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue