#pragma once #include "../render/Image_Interpolation_Mode.h" #include namespace renderive { enum class Line_Interpolation_Mode : std::uint8_t { Nearest_Sample, Linear_Value, Linear_Power_Domain, Step_Left, Step_Right, Cubic_Value }; }