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:
parent
2491796107
commit
d28caec8cc
2 changed files with 84 additions and 27 deletions
2
Makefile
2
Makefile
|
@ -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 \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue