skia2/experimental/lowp-basic/CMakeLists.txt
Herb Derby 2b868d6b9a math and error rates for lerp
Study that compares scaled integer lerp to float lerp. This
shows an error rate of 0.38% with a max difference of 1.

Study to compare scaled values the would result as the
intermediate values of a bilerp. This shows an error rate
of 24% with a max difference of 1.

Change-Id: Id27b6baa9ce56efedb30f490a3f84ccf808315fa
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/447183
Reviewed-by: Brian Osman <brianosman@google.com>
2021-09-10 18:51:51 +00:00

9 lines
165 B
CMake

cmake_minimum_required(VERSION 3.20)
project(lowp_basic)
set(CMAKE_CXX_STANDARD 17)
add_executable(lowp lowp_experiments.cpp)
add_executable(lerp lerp-study.cpp)