blob: fea911c14f1e55b62dac693511df30c438ae34c6 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <impeller/color.glsl>
// A color filter that applies the sRGB gamma curve to the color.
//
// This filter is used so that the colors are suitable for display in monitors.
uniform sampler2D input_texture;
in vec2 v_position;
out vec4 frag_color;
void main() {
vec4 input_color = texture(input_texture, v_position);
for (int i = 0; i < 4; i++) {
if (input_color[i] <= 0.0031308) {
input_color[i] = input_color[i] * 12.92;
} else {
input_color[i] = 1.055 * pow(input_color[i], (1.0 / 2.4)) - 0.055;
}
}
frag_color = input_color;
}