/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2020, Laurent Pinchart * * RGB.frag - Fragment shader code for RGB formats */ #ifdef GL_ES precision mediump float; #endif varying vec2 textureOut; uniform sampler2D tex_y; void main(void) { vec3 rgb; rgb = texture2D(tex_y, textureOut).RGB_PATTERN; gl_FragColor = vec4(rgb, 1.0); } org/libcamera/vivid.git' title='libcamera/vivid.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/Documentation/theme/theme.conf
blob: ba25a19211c7954eccff5c3179eda5471c7fbfe2 (plain)
1
2
3
4
5