This repository has been archived on 2023-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
PainterlyUNO/Matrix App/PregeneratedMods/Grayscale.cs

34 lines
937 B
C#
Raw Normal View History

2021-06-09 16:43:27 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using static Matrix_App.GifGeneratorUtils;
namespace Matrix_App.PregeneratedMods
{
public sealed class Grayscale : MatrixGifGenerator
{
public bool byLuminance = false;
protected override void ColorFragment(in int x, in int y, in float u, in float v, in int frame, out float r, out float g, out float b)
{
SampleFrame(actualStore, frame, x, y, width, out float lr, out float lg, out float lb);
if (byLuminance)
{
float luminance = 0.2126f * lr + 0.7152f * lg + 0.0722f * lb;
r = luminance;
g = luminance;
b = luminance;
} else
{
float average = (lr + lg + lb) * 0.3333f;
r = average;
g = average;
b = average;
}
}
}
}