From eea40fd0e47699261332904b5d930f0be68756e9 Mon Sep 17 00:00:00 2001 From: ImJezze Date: Thu, 31 Dec 2015 16:32:35 +0100 Subject: Cleanup (nw) - removed unused pincushion.fx --- hlsl/prescale.fx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'hlsl/prescale.fx') diff --git a/hlsl/prescale.fx b/hlsl/prescale.fx index 16df349c583..33b2a4efb06 100644 --- a/hlsl/prescale.fx +++ b/hlsl/prescale.fx @@ -1,7 +1,11 @@ // license:BSD-3-Clause // copyright-holders:Ryan Holtz //----------------------------------------------------------------------------- -// Passthrough Effect +// Prescale Effect +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// Sampler Definitions //----------------------------------------------------------------------------- texture Diffuse; @@ -41,7 +45,7 @@ struct PS_INPUT }; //----------------------------------------------------------------------------- -// Passthrough Vertex Shader +// Prescale Vertex Shader //----------------------------------------------------------------------------- uniform float2 ScreenDims; @@ -62,7 +66,7 @@ VS_OUTPUT vs_main(VS_INPUT Input) } //----------------------------------------------------------------------------- -// Passthrough Pixel Shader +// Prescale Pixel Shader //----------------------------------------------------------------------------- float4 ps_main(PS_INPUT Input) : COLOR @@ -71,10 +75,10 @@ float4 ps_main(PS_INPUT Input) : COLOR } //----------------------------------------------------------------------------- -// Passthrough Effect +// Prescale Technique //----------------------------------------------------------------------------- -technique DeconvergeTechnique +technique DefaultTechnique { pass Pass0 { -- cgit v1.2.3