Implement SIMD in two passes.

In a first pass, we put the pixels values and the coefficients
in two separate buffers.

In a second pass, we computer the interpolation.
This commit is contained in:
Fabien Freling 2014-09-08 22:32:35 +02:00
parent 2491796107
commit d28caec8cc
2 changed files with 84 additions and 27 deletions

View file

@ -1,7 +1,7 @@
include Makefile.rules
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g $(CXXFLAGS_PLATFORM)
DEFINES = #-DSIMD
DEFINES = -DSIMD
BUILD_DIR = .
SRC = rotation.cpp \
image.cpp \