Files
Renderive/Core/plottable/Interpolation.h
T
2026-08-02 03:43:39 +08:00

14 lines
269 B
C++

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