mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
Everywhere: Correct "FIMXE" typo
This commit is contained in:
parent
edfaa76c90
commit
d301510ab2
Notes:
github-actions[bot]
2025-04-30 16:39:48 +00:00
Author: https://github.com/AtkinsSJ
Commit: d301510ab2
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4531
3 changed files with 3 additions and 3 deletions
|
@ -2197,7 +2197,7 @@ RefPtr<CSSStyleValue const> Parser::parse_paint_value(TokenStream<ComponentValue
|
|||
return OptionalNone {};
|
||||
};
|
||||
|
||||
// FIMXE: Allow context-fill/context-stroke here
|
||||
// FIXME: Allow context-fill/context-stroke here
|
||||
if (auto color_or_none = parse_color_or_none(); color_or_none.has_value())
|
||||
return *color_or_none;
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ void CanvasPatternPaintStyle::paint(Gfx::IntRect physical_bounding_box, PaintFun
|
|||
// is "repeat-x", or vertically up and down, if the repetition behavior is "repeat-y", or in all four directions
|
||||
// all over the bitmap, if the repetition behavior is "repeat".
|
||||
|
||||
// FIMXE: If the original image data is a bitmap image, then the value painted at a point in the area of
|
||||
// FIXME: If the original image data is a bitmap image, then the value painted at a point in the area of
|
||||
// the repetitions is computed by filtering the original image data. When scaling up, if the imageSmoothingEnabled
|
||||
// attribute is set to false, then the image must be rendered using nearest-neighbor interpolation.
|
||||
// Otherwise, the user agent may use any filtering algorithm (for example bilinear interpolation or nearest-neighbor).
|
||||
|
|
|
@ -94,7 +94,7 @@ Vector<f32> AnalyserNode::smoothing_over_time(Vector<f32> const& current_block)
|
|||
Vector<f32> result;
|
||||
result.ensure_capacity(m_fft_size);
|
||||
for (unsigned long i = 0; i < m_fft_size; i++) {
|
||||
// FIMXE: Complex modulus on X[i]
|
||||
// FIXME: Complex modulus on X[i]
|
||||
result.unchecked_append(m_smoothing_time_constant * m_previous_block[i] + (1.f - m_smoothing_time_constant) * abs(X[i]));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue