mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
shaders/view-convert: remove some debugging colours
Fixes left and right output modes.
This commit is contained in:
parent
eaf918df03
commit
e5d574534c
1 changed files with 0 additions and 2 deletions
|
@ -38,10 +38,8 @@ void main()
|
|||
}
|
||||
} else if (output_type == VIEW_MONO_LEFT) {
|
||||
outColor0 = swizzle(l, out_reorder_idx);
|
||||
outColor0 = vec4(1.0, 0.0, 1.0, 1.0);
|
||||
} else if (output_type == VIEW_MONO_RIGHT) {
|
||||
outColor0 = swizzle(r, out_reorder_idx);
|
||||
outColor0 = vec4(0.0, 0.0, 1.0, 1.0);
|
||||
} else if (output_type == VIEW_SIDE_BY_SIDE) {
|
||||
if (inTexCoord.x < 0.5) {
|
||||
outColor0 = swizzle(l, out_reorder_idx);
|
||||
|
|
Loading…
Reference in a new issue