@@ -867,16 +867,16 @@ namespace coder::HWY_NAMESPACE {
867867
868868 if (halfFloats) {
869869 auto ptr16 = reinterpret_cast <uint16_t *>(data + y * stride);
870- HWY_DYNAMIC_DISPATCH ( ProcessF16Row) (reinterpret_cast <uint16_t *>(ptr16), width,
871- gammaCorrection, function, curveToneMapper,
872- conversion, gamma, useChromaticAdaptation);
870+ ProcessF16Row (reinterpret_cast <uint16_t *>(ptr16), width,
871+ gammaCorrection, function, curveToneMapper,
872+ conversion, gamma, useChromaticAdaptation);
873873 } else {
874874 auto ptr16 = reinterpret_cast <uint8_t *>(data + y * stride);
875- HWY_DYNAMIC_DISPATCH ( ProcessUSRow) (reinterpret_cast <uint8_t *>(ptr16),
876- width,
877- (float ) maxColors, gammaCorrection, function,
878- curveToneMapper, conversion, gamma,
879- useChromaticAdaptation);
875+ ProcessUSRow (reinterpret_cast <uint8_t *>(ptr16),
876+ width,
877+ (float ) maxColors, gammaCorrection, function,
878+ curveToneMapper, conversion, gamma,
879+ useChromaticAdaptation);
880880 }
881881 }
882882
0 commit comments