diff --git a/Plugins/ZShell/HyprPlugins/colortemp.hpp b/Plugins/ZShell/HyprPlugins/colortemp.hpp index 25f9c05..0da6f88 100644 --- a/Plugins/ZShell/HyprPlugins/colortemp.hpp +++ b/Plugins/ZShell/HyprPlugins/colortemp.hpp @@ -29,9 +29,4 @@ inline std::array kelvinToGain(int kelvin) { return {static_cast(r), static_cast(g), static_cast(b)}; } -inline float easeInOutCubic(float x) { - return x < 0.5f ? 4.f * x * x * x - : 1.f - std::pow(-2.f * x + 2.f, 3.f) / 2.f; -} - } // namespace ZShell::services diff --git a/Plugins/ZShell/HyprPlugins/main.cpp b/Plugins/ZShell/HyprPlugins/main.cpp index ad2080e..39953e9 100644 --- a/Plugins/ZShell/HyprPlugins/main.cpp +++ b/Plugins/ZShell/HyprPlugins/main.cpp @@ -25,7 +25,6 @@ extern "C" { #include "colortemp.hpp" -using ZShell::services::easeInOutCubic; using ZShell::services::kelvinToGain; using Render::IFramebuffer; @@ -241,17 +240,16 @@ static void hkBegin( .count(); const float t = std::clamp(elapsed / g_transition.durationSec, 0.f, 1.f); - const float e = easeInOutCubic(t); for (size_t i = 0; i < 3; ++i) g_currentGain[i] = g_transition.fromGain[i] + - (g_transition.toGain[i] - g_transition.fromGain[i]) * e; + (g_transition.toGain[i] - g_transition.fromGain[i]) * t; if (g_uniformMode) { setUniformGain(g_currentGain); } else { - const int step = static_cast(e * BAKED_STEPS); + const int step = static_cast(t * BAKED_STEPS); if (step != g_transition.lastBakedStep) { g_transition.lastBakedStep = step; ensureShaderFile(