New upstream version 18.0.1+dfsg1

This commit is contained in:
Sebastian Ramacher 2017-04-19 21:54:15 +02:00
parent 6efda2859e
commit f2cf6cce50
1337 changed files with 41178 additions and 84670 deletions

View file

@ -20,6 +20,8 @@ struct VertData {
float2 uv : TEXCOORD0;
};
#include "premultiplied.inc"
VertData VSDefault(VertData v_in)
{
VertData vert_out;
@ -31,8 +33,8 @@ VertData VSDefault(VertData v_in)
float4 PSLumaWipe(VertData v_in) : TARGET
{
float2 uv = v_in.uv;
float4 a_color = a_tex.Sample(textureSampler, uv);
float4 b_color = b_tex.Sample(textureSampler, uv);
float4 a_color = convert_pmalpha(a_tex.Sample(textureSampler, uv));
float4 b_color = convert_pmalpha(b_tex.Sample(textureSampler, uv));
float luma = l_tex.Sample(textureSampler, uv).x;
if (invert)